/* Solutions Page Styles - Updated Hero Section */

/* Hero Section - 기존 배경과 텍스트 유지, 좌우 이미지만 추가 */
.solutions-hero {
    background: url('/theme/jstech_0/assets/images/company-bg.png') center center/cover no-repeat;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 10px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 왼쪽 이미지 */
.hero-image-left {
    text-align: center;
}

.hero-image-left img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

/* 중앙 컨텐츠 (기존 스타일 유지) */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	word-break: keep-all;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
	word-break: keep-all;
}

/* 오른쪽 이미지 */
.hero-image-right {
    text-align: center;
}

.hero-image-right img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Commons */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #0066cc;
}

/* Who We Are Section */
.who-we-are {
    background: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.who-we-are .section-content {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    position: relative !important;
    background: transparent !important;
    padding: 0 !important;
    display: block !important;
    height: auto !important;
    width: auto !important;
}

.section-content p {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 22px !important;
    font-weight: 500;
    color: #2a2a2a !important;
    margin-bottom: 30px !important;
}

.section-content strong {
    color: #0066cc;
    font-weight: 600;
}

/* What We Do Section */
.what-we-do {
    background: #fff;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.section-subtitle p {
    font-size: 18px;
    color: #666;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.solution-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-header {
    margin-bottom: 25px;
}

.card-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 18px;
}

.integration-note {
    background: #e8f0fe;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.integration-note p {
    font-size: 18px;
    color: #2a2a2a;
    margin: 0;
}

/* Why JS Tech Section */
.why-jstech {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
}

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

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
    word-break: keep-all;
    word-wrap: break-word;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    word-break: keep-all;
    word-wrap: break-word;
}

.feature-item strong {
    color: #0066cc;
}

/* How We Work Section */
.how-we-work {
    background: #fff;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    margin-left: 40px;
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Let's Talk Section */
.lets-talk {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    padding: 50px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.contact-info .contact-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-info .contact-item a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.contact-info .contact-item a:hover {
    opacity: 0.8;
}

/* GSAP Animation Initial States */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr 4fr 1fr;
        gap: 30px;
    }
    
    .hero-image-left img,
    .hero-image-right img {
        max-height: 200px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
    
    .hero-image-left,
    .hero-image-right {
        display: none;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .solutions-hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .who-we-are .section-content {
        font-size: 16px;
    }
    
    .lead-text {
        font-size: 18px !important;
    }
    
    .section-subtitle h3 {
        font-size: 24px;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content {
        margin-left: 30px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 16px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-image-left,
    .hero-image-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .solution-list li {
        font-size: 14px;
        padding-left: 25px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 20px;
    }
}