/* =================================================================
   자동화 페이지 모바일 전용 스타일
   ================================================================= */

/* PC에서 모바일 요소 숨김 */
@media (min-width: 769px) {
    .page-automation .mobile-only,
    .page-automation .automation-mobile-wrapper,
    .page-automation .automation-mobile-section {
    display: none !important;
    }
}

/* 모바일에서 PC 요소 숨김 */
@media (max-width: 768px) {
    .page-automation .pc-only {
        display: none !important;
    }
    
    .page-automation .mobile-only {
    display: block !important;
}
}

/* 모바일 래퍼 */
.page-automation .automation-mobile-wrapper {
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
}

/* 섹션 공통 스타일 */
.page-automation .automation-mobile-section {
    padding: 20px 16px;
    margin: 32px 0;
    position: relative;
}

.page-automation .automation-mobile-section::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0b5ed7);
    border-radius: 2px;
}

.page-automation .automation-mobile-section:last-child::after {
    display: none;
}

/* 카드 공통 스타일 */
.page-automation .automation-mobile-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.page-automation .automation-mobile-card-body {
    padding: 24px 20px;
}

/* 섹션 제목 스타일 */
.page-automation .automation-mobile-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.4;
}

.page-automation .automation-mobile-section-title i {
    color: #0d6efd;
    font-size: 1.2rem;
}

.page-automation .automation-mobile-section-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 32px;
}

/* 0. 메인 인트로 텍스트 섹션 */
.page-automation .automation-mobile-main-intro {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 50%, #0a58ca 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-automation .automation-mobile-main-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.1) 0deg, transparent 60deg, rgba(255,255,255,0.1) 120deg, transparent 180deg, rgba(255,255,255,0.1) 240deg, transparent 300deg, rgba(255,255,255,0.1) 360deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-automation .automation-mobile-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-title-container {
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-subtitle-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 12px;
}

.page-automation .automation-mobile-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-automation .automation-mobile-main-title i {
    color: #ffffff;
    margin-right: 8px;
}

.page-automation .automation-mobile-main-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 1. 인트로 섹션 스타일 */
.page-automation .automation-mobile-intro {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 50%, #0a58ca 100%);
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 16px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* 자동화 솔루션 카드 스타일 */
.page-automation .automation-mobile-solution-swiper {
    margin: 24px 0;
}

.page-automation .automation-solution-swiper {
    padding: 0 0 40px 0;
}

.page-automation .automation-solution-swiper .swiper-slide {
    height: auto;
}

.page-automation .automation-solution-pagination {
    position: relative;
    margin-top: 20px;
}

.page-automation .automation-solution-pagination .swiper-pagination-bullet {
    background: #0d6efd;
    opacity: 0.3;
}

.page-automation .automation-solution-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0d6efd;
}

.page-automation .automation-mobile-solution-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.1);
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.1);
    backdrop-filter: blur(10px);
}

.page-automation .automation-mobile-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.02) 100%);
    border-radius: 20px;
}

.page-automation .automation-mobile-solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-solution-icon i {
    font-size: 2.5rem;
    color: #0d6efd;
}

.page-automation .automation-mobile-solution-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-solution-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-solution-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
}

.page-automation .automation-mobile-solution-features li i {
    color: #0d6efd;
    font-size: 1rem;
}


.page-automation .automation-mobile-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.1) 0deg, transparent 60deg, rgba(255,255,255,0.1) 120deg, transparent 180deg, rgba(255,255,255,0.1) 240deg, transparent 300deg, rgba(255,255,255,0.1) 360deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-automation .automation-mobile-intro-content {
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-intro-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.page-automation .automation-mobile-intro-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* 2. 왜 자동화가 필요한가 섹션 */
.page-automation .automation-mobile-why-swiper {
    margin: 24px 0;
}

.page-automation .automation-why-swiper {
    padding: 0 0 40px 0;
}

.page-automation .automation-why-swiper .swiper-slide {
    height: auto;
}

.page-automation .automation-why-pagination {
    position: relative;
    margin-top: 20px;
}

.page-automation .automation-why-pagination .swiper-pagination-bullet {
    background: #0d6efd;
    opacity: 0.3;
}

.page-automation .automation-why-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0d6efd;
}

.page-automation .automation-mobile-why-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-why-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #0d6efd;
}

.page-automation .automation-mobile-why-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.page-automation .automation-mobile-why-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.page-automation .automation-mobile-why-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-automation .automation-mobile-why-features li {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.page-automation .automation-mobile-why-features li i {
    color: #22c55e;
    font-size: 0.8rem;
}

.page-automation .automation-mobile-why-message {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 32px 24px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.page-automation .automation-mobile-why-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 20px;
}

.page-automation .automation-mobile-why-message-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-automation .automation-mobile-why-message-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.page-automation .automation-mobile-why-message-icon i {
    color: #0d6efd;
    font-size: 1.8rem;
}

.page-automation .automation-mobile-why-message h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* 핵심 메시지 텍스트 스타일 */
.page-automation .automation-mobile-why-message-text {
    margin-bottom: 24px;
}

.page-automation .automation-mobile-why-message-highlight {
    margin-bottom: 16px;
}

.page-automation .automation-mobile-why-message-highlight-text {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.page-automation .automation-mobile-why-message-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 20px 0;
}

.page-automation .automation-mobile-why-message-future {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.page-automation .automation-mobile-why-message-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-automation .automation-mobile-why-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-automation .automation-mobile-why-stat-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-automation .automation-mobile-why-stat-icon i {
    color: #0d6efd;
    font-size: 1.2rem;
}

.page-automation .automation-mobile-why-stat-content {
    flex: 1;
    text-align: left;
}

.page-automation .automation-mobile-why-stat-content h6 {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.page-automation .automation-mobile-why-stat-content small {
    color: #64748b;
    font-size: 0.8rem;
}

/* 3. 온라인 플랫폼 자동화 섹션 */
.page-automation .automation-mobile-platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}

.page-automation .automation-mobile-platform-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-platform-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-platform-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #0d6efd;
}

.page-automation .automation-mobile-platform-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.page-automation .automation-mobile-platform-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.page-automation .automation-mobile-platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-automation .automation-mobile-platform-features li {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-automation .automation-mobile-platform-features li i {
    color: #22c55e;
    font-size: 0.8rem;
}

/* 4. PC 작업 자동화 섹션 */
.page-automation .automation-mobile-pc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}

.page-automation .automation-mobile-pc-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-pc-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-pc-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #0d6efd;
}

.page-automation .automation-mobile-pc-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.page-automation .automation-mobile-pc-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.page-automation .automation-mobile-pc-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-automation .automation-mobile-pc-features li {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.page-automation .automation-mobile-pc-features li i {
    color: #22c55e;
    font-size: 0.8rem;
}

/* 5. 자동화 프로그램 섹션 */
.page-automation .automation-mobile-programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}

.page-automation .automation-mobile-program-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-program-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-program-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.page-automation .automation-mobile-program-icon {
    font-size: 2rem;
    color: #0d6efd;
}

.page-automation .automation-mobile-program-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.page-automation .automation-mobile-program-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-automation .automation-mobile-program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-automation .automation-mobile-program-features li {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-automation .automation-mobile-program-features li i {
    color: #22c55e;
    font-size: 0.8rem;
}

/* 6. 성과 측정 및 ROI 섹션 */
.page-automation .automation-mobile-comparison {
    margin: 24px 0;
}

.page-automation .automation-mobile-comparison-header {
    text-align: center;
    margin-bottom: 24px;
}

.page-automation .automation-mobile-comparison-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.page-automation .automation-mobile-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.page-automation .automation-mobile-comparison-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-comparison-human {
    border-color: #ef4444;
}

.page-automation .automation-mobile-comparison-program {
    border-color: #22c55e;
}

.page-automation .automation-mobile-comparison-icon {
    text-align: center;
    margin-bottom: 16px;
}

.page-automation .automation-mobile-comparison-icon i {
    font-size: 2.5rem;
    padding: 16px;
    border-radius: 50%;
    background: #f8f9fa;
}

.page-automation .automation-mobile-comparison-human .automation-mobile-comparison-icon i {
    color: #ef4444;
    background: #fef2f2;
}

.page-automation .automation-mobile-comparison-program .automation-mobile-comparison-icon i {
    color: #22c55e;
    background: #f0fdf4;
}

.page-automation .automation-mobile-comparison-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.page-automation .automation-mobile-comparison-costs {
    margin-bottom: 16px;
}

.page-automation .automation-mobile-comparison-cost {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.page-automation .automation-mobile-comparison-cost:last-child {
    border-bottom: none;
}

.page-automation .automation-mobile-comparison-cost .cost-label {
    font-size: 0.9rem;
    color: #64748b;
}

.page-automation .automation-mobile-comparison-cost .cost-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.page-automation .automation-mobile-comparison-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
}

.page-automation .automation-mobile-comparison-total .total-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.page-automation .automation-mobile-comparison-total .total-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.page-automation .automation-mobile-comparison-issues,
.page-automation .automation-mobile-comparison-benefits {
    margin-top: 16px;
}

.page-automation .automation-mobile-comparison-issues h5,
.page-automation .automation-mobile-comparison-benefits h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.page-automation .automation-mobile-comparison-issues ul,
.page-automation .automation-mobile-comparison-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-automation .automation-mobile-comparison-issues li,
.page-automation .automation-mobile-comparison-benefits li {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.page-automation .automation-mobile-comparison-issues li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.page-automation .automation-mobile-comparison-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* 절약 효과 섹션 */
.page-automation .automation-mobile-savings {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: #1e293b;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.page-automation .automation-mobile-savings-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.page-automation .automation-mobile-savings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.page-automation .automation-mobile-savings-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-savings-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-automation .automation-mobile-savings-icon i {
    color: #0d6efd;
    font-size: 1.2rem;
}

.page-automation .automation-mobile-savings-content {
    flex: 1;
    text-align: left;
}

.page-automation .automation-mobile-savings-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1e293b;
}

.page-automation .automation-mobile-savings-content p {
    font-size: 0.85rem;
    margin: 0;
    color: #64748b;
}

/* 7. 개발 프로세스 섹션 */
.page-automation .automation-mobile-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.page-automation .automation-mobile-process-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-process-step:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-process-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #0d6efd;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.page-automation .automation-mobile-process-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    margin-top: 8px;
}

.page-automation .automation-mobile-process-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* 8. 보안 및 안정성 섹션 */
.page-automation .automation-mobile-security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}

.page-automation .automation-mobile-security-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-automation .automation-mobile-security-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-security-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #0d6efd;
}

.page-automation .automation-mobile-security-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.page-automation .automation-mobile-security-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* 9. 고객 지원 체계 섹션 */
.page-automation .automation-mobile-support-unified {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 20px;
    padding: 32px 24px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.page-automation .automation-mobile-support-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 20px;
}

.page-automation .automation-mobile-support-unified-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.page-automation .automation-mobile-support-unified-icon {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.page-automation .automation-mobile-support-unified-icon i {
    color: #0d6efd;
    font-size: 2.5rem;
}

.page-automation .automation-mobile-support-unified-header h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-automation .automation-mobile-support-unified-header p {
    color: #64748b;
    font-size: 1rem;
}

.page-automation .automation-mobile-support-unified-content {
    position: relative;
    z-index: 1;
}

/* 지원 기능 자동 슬라이드 */
.page-automation .automation-mobile-support-swiper {
    margin-bottom: 32px;
}

.page-automation .automation-support-swiper {
    padding: 0 0 40px 0;
}

.page-automation .automation-support-swiper .swiper-slide {
    height: auto;
}

.page-automation .automation-support-pagination {
    position: relative;
    margin-top: 20px;
}

.page-automation .automation-support-pagination .swiper-pagination-bullet {
    background: #0d6efd;
    opacity: 0.3;
}

.page-automation .automation-support-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0d6efd;
}

.page-automation .automation-mobile-support-unified-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-support-unified-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-automation .automation-mobile-support-unified-feature-icon i {
    color: #0d6efd;
    font-size: 1.5rem;
}

.page-automation .automation-mobile-support-unified-feature-content {
    flex: 1;
}

.page-automation .automation-mobile-support-unified-feature-content h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.page-automation .automation-mobile-support-unified-feature-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.page-automation .automation-mobile-support-unified-feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-automation .automation-mobile-support-unified-feature-content li {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.page-automation .automation-mobile-support-unified-feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: bold;
}

.page-automation .automation-mobile-support-unified-guarantee {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-support-unified-guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 500;
}

.page-automation .automation-mobile-support-unified-guarantee-item i {
    color: #0d6efd;
    font-size: 1.2rem;
}

/* 10. 문의 및 상담 섹션 */
.page-automation .automation-mobile-contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.page-automation .automation-mobile-contact-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.page-automation .automation-mobile-contact-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.page-automation .automation-mobile-contact-form-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.page-automation .automation-mobile-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-automation .automation-mobile-form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-automation .automation-mobile-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-automation .automation-mobile-form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.page-automation .automation-mobile-form-control {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.page-automation .automation-mobile-form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.page-automation .automation-mobile-form-control::placeholder {
    color: #9ca3af;
}

.page-automation .automation-mobile-btn {
    background: #0d6efd;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.page-automation .automation-mobile-btn:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* 반응형 디자인 */
@media (max-width: 480px) {
    .page-automation .automation-mobile-section {
        padding: 16px 12px;
        margin: 24px 0;
    }
    
    .page-automation .automation-mobile-section::after {
        bottom: -12px;
        width: 50px;
    }
    
    .page-automation .automation-mobile-card-body {
        padding: 20px 16px;
    }
    
    .page-automation .automation-mobile-section-title {
        font-size: 1.2rem;
    }
    
    .page-automation .automation-mobile-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .page-automation .automation-mobile-savings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .page-automation .automation-mobile-section {
        padding: 12px 8px;
        margin: 20px 0;
    }
    
    .page-automation .automation-mobile-section::after {
        bottom: -10px;
        width: 40px;
    }
    
    .page-automation .automation-mobile-card-body {
        padding: 16px 12px;
    }
    
    .page-automation .automation-mobile-section-title {
        font-size: 1.1rem;
    }
    
    .page-automation .automation-mobile-intro {
        padding: 32px 16px;
    }
    
    .page-automation .automation-mobile-intro-title {
        font-size: 1.6rem;
    }
}
