/* Home Page Mobile Responsive Styles - PC 스타일 유지 */

/* 독립된 페이지 전용 클래스 구성 */
.page-home .home-mobile-wrapper {
    /* PC/다른페이지에 절대 영향 없음 */
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
}

.page-home .home-mobile-wrapper * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 기본 모바일 스타일 (≤479px) - PC 스타일 유지 */

/* 1. 메인 타이틀 섹션 - 모바일 최적화 */
.page-home .home-mobile-main-title {
    text-align: center;
    padding: 16px 0 24px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.page-home .home-mobile-main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-home .home-mobile-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.page-home .home-mobile-title-container {
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.page-home .home-mobile-subtitle-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 16px;
}

.page-home .home-mobile-main-title-text {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.page-home .home-mobile-rocket-icon {
    font-size: 1.8rem;
    color: #6366f1;
    animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-2px) rotate(3deg); 
    }
}

/* 2. 섹션 스타일 */
.page-home .home-mobile-section {
    margin: 60px 0;
    position: relative;
}

.page-home .home-mobile-section::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.page-home .home-mobile-section:last-child::after {
    display: none;
}

.page-home .home-mobile-main-title {
    margin: 0;
}

/* 3. 카드 스타일 (PC와 동일) */
.page-home .home-mobile-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.page-home .home-mobile-card-body {
    padding: 20px;
}

/* 4. 섹션 제목 */
.page-home .home-mobile-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
}

/* 섹션별 소제목 색상 */
.page-home .home-mobile-about .home-mobile-section-title {
    color: #6366f1;
}

.page-home .home-mobile-service-intro .home-mobile-section-title {
    color: #8b5cf6;
}

.page-home .home-mobile-journey .home-mobile-section-title {
    color: #06b6d4;
}

.page-home .home-mobile-platforms .home-mobile-section-title {
    color: #f59e0b;
}

.page-home .home-mobile-testimonials .home-mobile-section-title {
    color: #10b981;
}

.page-home .home-mobile-service-select .home-mobile-section-title {
    color: #ef4444;
}

.page-home .home-mobile-contact .home-mobile-section-title {
    color: #6366f1;
}

.page-home .home-mobile-section-title br {
    display: block;
    margin: 8px 0;
}

.page-home .home-mobile-section-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    text-align: center;
}

.page-home .home-mobile-section-desc br {
    display: block;
    margin: 4px 0;
}

/* 핵심 서비스 소개 섹션 전용 스타일 */
.page-home .home-mobile-core-services .home-mobile-section-title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.page-home .home-mobile-core-services .home-mobile-section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    z-index: -1;
}

.page-home .home-mobile-core-services .home-mobile-section-title br {
    margin: 6px 0;
}

.page-home .home-mobile-core-services .home-mobile-section-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    text-align: center;
    position: relative;
}

.page-home .home-mobile-core-services .home-mobile-section-desc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.page-home .home-mobile-core-services .home-mobile-section-desc br {
    margin: 6px 0;
    display: block;
}

.page-home .home-mobile-core-services .home-mobile-section-desc strong {
    color: #6366f1;
    font-weight: 600;
}

/* 4. 버튼 스타일 (PC와 동일) */
.page-home .home-mobile-btn-primary,
.page-home .home-mobile-btn-secondary,
.page-home .home-mobile-btn-outline {
    font-size: 1rem;
    height: 48px;
    padding: 0 24px;
    margin: 0 8px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.page-home .home-mobile-btn-primary {
    background: #6366f1;
    color: white;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.page-home .home-mobile-btn-primary:hover {
    background: #4f46e5;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.page-home .home-mobile-btn-secondary {
    background: #ffffff;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.page-home .home-mobile-btn-secondary:hover {
    background: #6366f1;
    color: white;
}

.page-home .home-mobile-btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.page-home .home-mobile-btn-outline:hover {
    background: #6366f1;
    color: white;
}

/* 5. 핵심 서비스 섹션 (PC와 동일) */
.page-home .home-mobile-content-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-home .home-mobile-content-main {
    flex: 1;
}

.page-home .home-mobile-content-sidebar {
    text-align: center;
    margin-top: 20px;
}

.page-home .home-mobile-cta-section {
    margin-bottom: 20px;
}

.page-home .home-mobile-cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
}

.page-home .home-mobile-cta-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.page-home .home-mobile-button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.page-home .home-mobile-note {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* 6. 서비스 그리드 - 카드 스타일 */
.page-home .home-mobile-services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-home .home-mobile-service-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.page-home .home-mobile-service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.page-home .home-mobile-service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.page-home .home-mobile-service-card-header i {
    font-size: 1.5rem;
    color: #6366f1;
}

.page-home .home-mobile-service-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.page-home .home-mobile-service-card-content {
    margin-left: 0;
}

.page-home .home-mobile-service-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 8px;
}



/* 3. 원앤원이란? 섹션 스타일 */
.page-home .home-mobile-about-card {
    background: #ffffff;
    border: 0.5px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.page-home .home-mobile-about-main-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-home .home-mobile-about-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.page-home .home-mobile-about-main-desc {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.page-home .home-mobile-about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-home .home-mobile-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.page-home .home-mobile-about-feature-number {
    width: 40px;
    height: 40px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
        font-size: 1.1rem;
    flex-shrink: 0;
}

.page-home .home-mobile-about-feature-content {
    flex: 1;
}

.page-home .home-mobile-about-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.page-home .home-mobile-about-feature-desc {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
}

/* 원앤원이란? 섹션 소제목 스타일 */
.page-home .home-mobile-about .home-mobile-section-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    text-align: center;
    position: relative;
}

.page-home .home-mobile-about .home-mobile-section-desc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.page-home .home-mobile-about .home-mobile-section-desc br {
    margin: 8px 0;
    display: block;
}

.page-home .home-mobile-about .home-mobile-section-desc strong {
    color: #6366f1;
    font-weight: 600;
}

/* 4. 우리가 제공하는 서비스 섹션 스타일 */
.page-home .home-mobile-service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.page-home .home-mobile-service-detail-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.page-home .home-mobile-service-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.page-home .home-mobile-service-detail-number {
    display: inline-block;
    background: #6366f1;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.page-home .home-mobile-service-detail-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.page-home .home-mobile-service-detail-content {
    text-align: center;
    margin-bottom: 20px;
}

.page-home .home-mobile-service-detail-content p {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
}

.page-home .home-mobile-service-detail-content p:last-child {
    margin-bottom: 0;
}

.page-home .home-mobile-service-detail-content strong {
    color: #111827;
    font-weight: 600;
}

.page-home .home-mobile-service-detail-footer {
    background: rgba(99, 102, 241, 0.05);
    color: #6366f1;
    padding: 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

/* 성공 여정 - PC 버전과 동일한 깔끔한 디자인 */
.page-home .home-mobile-journey-steps {
    margin-top: 20px;
}

.page-home .home-mobile-journey-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.page-home .home-mobile-journey-step:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-home .home-mobile-journey-number {
    width: 32px;
    height: 32px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
    transition: all 0.2s ease;
}

.page-home .home-mobile-journey-step:hover .home-mobile-journey-number {
    background: #4f46e5;
}

.page-home .home-mobile-journey-content {
    flex: 1;
}

.page-home .home-mobile-journey-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.page-home .home-mobile-journey-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0;
}

/* 10. 플랫폼별 프로그램 섹션 - 모바일 전용 1줄 1카드 */
.page-home .home-mobile-platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-home .home-mobile-platform-card {
    text-align: center;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 0.5px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 70px;
    min-height: 400px;
}

.page-home .home-mobile-platform-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.page-home .home-mobile-platform-icon {
    margin: 0 auto 20px;
    color: #6366f1;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-home .home-mobile-platform-card:hover .home-mobile-platform-icon {
    color: #4f46e5;
    transform: scale(1.1);
}

.page-home .home-mobile-platform-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.page-home .home-mobile-platform-content {
    text-align: center;
    margin-bottom: 20px;
}

.page-home .home-mobile-platform-item {
    margin-bottom: 16px;
    font-size: 0.9rem;
        line-height: 1.5;
}

.page-home .home-mobile-platform-item strong {
    color: #111827;
    font-weight: 600;
}

.page-home .home-mobile-platform-item small {
    color: #6b7280;
    font-size: 0.8rem;
}

.page-home .home-mobile-platform-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    padding: 16px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    font-weight: 500;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    border-radius: 0 0 12px 12px;
}

/* 추가 기능 안내 스타일 */
.page-home .home-mobile-additional-features {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-home .home-mobile-additional-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    border-radius: 16px 16px 0 0;
}

.page-home .home-mobile-additional-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.page-home .home-mobile-additional-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.page-home .home-mobile-additional-desc {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.page-home .home-mobile-additional-desc br {
    margin: 4px 0;
    display: block;
}

/* 11. 고객 후기 섹션 - 모바일 슬라이더 */
.page-home .home-mobile-testimonials-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.page-home .home-mobile-testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .home-mobile-testimonial-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.page-home .home-mobile-testimonial-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
    text-align: center;
}

.page-home .home-mobile-testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    text-align: center;
}

.page-home .home-mobile-testimonial-company {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 12px;
}

.page-home .home-mobile-testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 8px;
}

/* 후기 슬라이더 도트 네비게이션 */
.page-home .home-mobile-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.page-home .home-mobile-testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-home .home-mobile-testimonial-dots .dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

.page-home .home-mobile-testimonial-dots .dot:hover {
    background: #6366f1;
    transform: scale(1.1);
}

/* 12. 연락처 섹션 - 모바일 최적화 */
.page-home .home-mobile-contact-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.page-home .home-mobile-contact-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* 8. 통합 문의 섹션 스타일 */
.page-home .home-mobile-contact-unified .home-mobile-section-title {
    color: #6366f1;
}

.page-home .home-mobile-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.page-home .home-mobile-service-qna {
    grid-column: 1 / -1;
}

.page-home .home-mobile-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        text-align: center;
}

.page-home .home-mobile-service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.page-home .home-mobile-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.page-home .home-mobile-service-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.page-home .home-mobile-service-info p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* 서비스별 색상 */
.page-home .home-mobile-service-carrot .home-mobile-service-icon {
    background: rgba(255, 111, 15, 0.1);
    color: #FF6F0F;
}

.page-home .home-mobile-service-naver .home-mobile-service-icon {
    background: rgba(3, 199, 90, 0.1);
    color: #03C75A;
}

.page-home .home-mobile-service-homepage .home-mobile-service-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.page-home .home-mobile-service-automation .home-mobile-service-icon {
    background: rgba(0, 102, 204, 0.1);
    color: #0066CC;
}

.page-home .home-mobile-service-qna .home-mobile-service-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

/* 직접 문의 영역 */
.page-home .home-mobile-direct-contact {
    margin-top: 32px;
    text-align: center;
}

.page-home .home-mobile-contact-divider {
        position: relative;
    margin: 24px 0;
    }
    
.page-home .home-mobile-contact-divider::before {
        content: '';
        position: absolute;
        top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.page-home .home-mobile-contact-divider span {
    background: #ffffff;
    padding: 0 16px;
    color: #6b7280;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.page-home .home-mobile-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
        transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }
    
.page-home .home-mobile-contact-btn:hover {
    background: #4f46e5;
        transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    text-decoration: none;
    color: #ffffff;
}

.page-home .home-mobile-contact-btn i {
    font-size: 1.2rem;
}

.page-home .home-mobile-contact-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* 모바일 미디움 (480px-767px) - PC 버전과 동일한 깔끔한 디자인 */
@media (min-width: 480px) and (max-width: 767px) {
    .page-home .home-mobile-wrapper {
        padding: 20px 16px;
    }

    .page-home .home-mobile-section {
        margin: 70px 0;
        padding: 0 20px;
    }
    
    .page-home .home-mobile-section::after {
        bottom: -20px;
        width: 80px;
    }

    .page-home .home-mobile-section-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .page-home .home-mobile-title {
        font-size: 22px;
    }

    .page-home .home-mobile-subtitle {
        font-size: 16px;
    }

    .page-home .home-mobile-btn-primary,
    .page-home .home-mobile-btn-secondary {
        font-size: 16px;
        height: 48px;
        padding: 0 24px;
        margin: 0 8px;
    }

    .page-home .home-mobile-service-title {
        font-size: 18px;
    }

    .page-home .home-mobile-service-desc {
        font-size: 16px;
    }


    .page-home .home-mobile-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-home .home-mobile-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 모바일 큰화면 (768px-1023px) - PC 버전과 동일한 깔끔한 디자인 */
@media (min-width: 768px) and (max-width: 1023px) {
    .page-home .home-mobile-wrapper {
        padding: 24px 20px;
    }

    .page-home .home-mobile-section {
        margin: 80px 0;
        padding: 0 24px;
    }
    
    .page-home .home-mobile-section::after {
        bottom: -24px;
        width: 100px;
    }

    .page-home .home-mobile-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .page-home .home-mobile-title {
        font-size: 26px;
    }

    .page-home .home-mobile-subtitle {
        font-size: 18px;
    }

    .page-home .home-mobile-btn-primary,
    .page-home .home-mobile-btn-secondary {
        font-size: 18px;
        height: 52px;
        padding: 0 28px;
        margin: 0 10px;
    }

    .page-home .home-mobile-service-title {
        font-size: 20px;
    }

    .page-home .home-mobile-service-desc {
        font-size: 18px;
    }


    .page-home .home-mobile-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .page-home .home-mobile-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* 태블릿 (1024px-1199px) - PC 버전과 동일한 깔끔한 디자인 */
@media (min-width: 1024px) and (max-width: 1199px) {
    .page-home .home-mobile-wrapper {
        padding: 28px 24px;
    }

    .page-home .home-mobile-section {
        margin: 90px 0;
        padding: 0 32px;
    }
    
    .page-home .home-mobile-section::after {
        bottom: -28px;
        width: 120px;
    }

    .page-home .home-mobile-section-title {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .page-home .home-mobile-title {
        font-size: 30px;
    }

    .page-home .home-mobile-subtitle {
        font-size: 20px;
    }

    .page-home .home-mobile-btn-primary,
    .page-home .home-mobile-btn-secondary {
        font-size: 20px;
        height: 56px;
        padding: 0 32px;
        margin: 0 12px;
    }

    .page-home .home-mobile-service-title {
        font-size: 22px;
    }

    .page-home .home-mobile-service-desc {
        font-size: 20px;
    }


    .page-home .home-mobile-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .page-home .home-mobile-platforms-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

/* PC (≥1200px) - 모바일 요소 숨김 */
@media (min-width: 1200px) {
    .page-home .home-mobile-wrapper {
        display: none !important;
    }
}

/* 1200px 미만에서의 추가 반응형 */
@media (min-width: 1200px) and (max-width: 1399px) {
    .page-home .home-mobile-section {
        margin: 100px 0;
        padding: 0 40px;
    }
    
    .page-home .home-mobile-section::after {
        bottom: -32px;
        width: 140px;
    }
}

/* 세로/가로 모드 대응 */
@media (orientation: landscape) {
    .page-home .home-mobile-wrapper {
        padding: 8px 12px !important; /* 가로 모드 시 패딩 조정 */
    }
}

/* iOS Safari 키보드 대응 */
@media (max-height: 500px) {
    .page-home .home-mobile-wrapper {
        padding: 4px 8px !important; /* 키보드 올라왔을 때 패딩 조정 */
    }
}