/* 브랜딩에 집중하고, 수익을 극대화하세요 섹션 CSS */

/* 섹션 전체 - 풀화면 구현 */
.kt-branding-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    left: 50%;
    margin-left: -50vw;
    background: linear-gradient(135deg, #8e44ad 0%, #e74c3c 100%); /* 보라-빨강 그라데이션 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

/* 배경 */
.kt-branding-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8e44ad 0%, #e74c3c 100%);
    z-index: 1;
}

.kt-branding-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

/* 타이틀 영역 */
.kt-branding-title-area {
    margin-bottom: 60px;
}

.kt-branding-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* 카드 그리드 */
.kt-branding-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

/* 카드 */
.kt-branding-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kt-branding-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* 카드 헤더 */
.kt-branding-card-header {
    padding: 40px 30px 20px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 카드 아이콘 - 사각형 형태 */
.kt-branding-card-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.kt-branding-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.kt-branding-card:hover .kt-branding-card-icon::before {
    transform: translateX(100%);
}

/* 아이콘 색상 */
.kt-icon-branding span {
    color: #f39c12;
}

.kt-icon-profit span {
    color: #000000;
}

.kt-branding-card.kt-automation-card .kt-branding-card-icon.kt-icon-automation span {
    color: #0066cc !important;
}

.kt-icon-automation span {
    color: #0066cc !important;
}

/* 카드 제목 */
.kt-branding-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* 카드 내용 */
.kt-branding-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kt-branding-card-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    text-align: left;
}

/* 특징 리스트 */
.kt-branding-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.kt-branding-features li {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 12px 0;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 25px;
}

.kt-branding-features li::before {
    content: "*";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 반응형 디자인 */
@media (max-width: 1440px) {
    .kt-branding-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .kt-branding-card {
        min-height: 380px;
    }
    
    .kt-branding-main-title {
        font-size: 3rem;
    }
    
    .kt-branding-card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .kt-branding-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .kt-branding-card {
        min-height: 350px;
    }
    
    .kt-branding-main-title {
        font-size: 2.5rem;
    }
    
    .kt-branding-card-title {
        font-size: 1.5rem;
    }
    
    .kt-branding-card-content p {
        font-size: 1.35rem;
    }
    
    .kt-branding-features li {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .kt-branding-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kt-branding-card {
        min-height: 320px;
    }
    
    .kt-branding-main-title {
        font-size: 2rem;
    }
    
    .kt-branding-card-title {
        font-size: 1.4rem;
    }
    
    .kt-branding-card-content p {
        font-size: 1.275rem;
    }
    
    .kt-branding-features li {
        font-size: 1.1rem;
    }
}
