/* 홈페이지제작 페이지 모바일 스타일 */

/* PC에서 모바일 요소 숨김 */
@media (min-width: 769px) {
    .page-homepage-creation .mobile-only,
    .page-homepage-creation .homepage-creation-mobile-wrapper,
    .page-homepage-creation .homepage-creation-mobile-section {
        display: none !important;
    }
}

/* 모바일에서 PC 요소 숨김 */
@media (max-width: 768px) {
    .page-homepage-creation .pc-only {
    display: none !important;
}

    .page-homepage-creation .mobile-only {
    display: block !important;
}
}

/* 모바일 전용 래퍼 */
.page-homepage-creation .homepage-creation-mobile-wrapper {
    padding: 0;
    background: #f8fafc;
    min-height: 100vh;
}

/* 모바일 사이드바 스타일 강제 적용 - 다른 페이지와 동일 */
.page-homepage-creation .mobile-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: -280px !important;
    width: 280px !important;
    max-width: 300px !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 10001 !important;
    transition: left 0.3s ease !important;
    overflow-y: auto !important;
    box-shadow: 4px 0 16px rgba(0,0,0,0.1) !important;
}

.page-homepage-creation .mobile-sidebar.active {
    left: 0 !important;
}

/* 모바일 페이지 섹션 스타일이 사이드바에 영향주지 않도록 차단 */
.page-homepage-creation .mobile-sidebar * {
    all: revert !important;
}

.page-homepage-creation .mobile-sidebar-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 10000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.page-homepage-creation .mobile-sidebar-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.page-homepage-creation .mobile-sidebar .sidebar-header {
    padding: 1.5rem !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.page-homepage-creation .mobile-sidebar .sidebar-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.page-homepage-creation .mobile-sidebar .sidebar-logo h2 {
    color: #333 !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    margin: 0 !important;
}

.page-homepage-creation .mobile-sidebar .sidebar-logo .logo-icon {
    color: #6b4a2e !important;
    font-size: 1.4rem !important;
}

.page-homepage-creation .mobile-sidebar .close-sidebar {
    border: none !important;
    background: #e9ecef !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #666 !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.page-homepage-creation .mobile-sidebar .close-sidebar:hover {
    background: #dee2e6 !important;
    color: #333 !important;
}

.page-homepage-creation .mobile-sidebar .current-page-section {
    padding: 1.5rem !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    position: relative !important;
}

.page-homepage-creation .mobile-sidebar .current-page-section::after {
    display: none !important;
}
    
.page-homepage-creation .mobile-sidebar .section-title {
    color: #6b4a2e !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.page-homepage-creation .mobile-sidebar .section-title .icon {
    font-size: 1.2rem !important;
}

.page-homepage-creation .mobile-sidebar .section-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.page-homepage-creation .mobile-sidebar .section-menu a {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 0.8rem 1rem !important;
    color: #666 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem !important;
}

.page-homepage-creation .mobile-sidebar .section-menu a:hover {
    background: #f8f9fa !important;
    color: #333 !important;
}

.page-homepage-creation .mobile-sidebar .section-menu a .menu-icon {
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
}

.page-homepage-creation .mobile-sidebar .other-pages-section {
    padding: 1.5rem !important;
    background: #ffffff !important;
    position: relative !important;
}

.page-homepage-creation .mobile-sidebar .category-title {
    color: #6b4a2e !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.page-homepage-creation .mobile-sidebar .category-title .icon {
    font-size: 1.2rem !important;
}

.page-homepage-creation .mobile-sidebar .category-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
}

.page-homepage-creation .mobile-sidebar .category-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 0.8rem !important;
    color: #666 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    border: 1px solid #e2e8f0 !important;
    text-align: center !important;
}

.page-homepage-creation .mobile-sidebar .category-item:hover {
    background: #6b4a2e !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(107, 74, 46, 0.2) !important;
}

.page-homepage-creation .mobile-sidebar .category-item .category-icon {
    font-size: 1.5rem !important;
    margin-bottom: 0.3rem !important;
}

.page-homepage-creation .mobile-sidebar .category-item .category-label {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.page-homepage-creation .mobile-sidebar .sidebar-footer {
    padding: 1.5rem !important;
    background: #f8f9fa !important;
    border-top: 1px solid #e2e8f0 !important;
    text-align: center !important;
}

.page-homepage-creation .mobile-sidebar .footer-logo {
    color: #6b4a2e !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
}

.page-homepage-creation .mobile-sidebar .footer-description {
    color: #666 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}


/* 0. 메인 인트로 텍스트 섹션 */
.page-homepage-creation .homepage-creation-mobile-main-intro {
    background: linear-gradient(135deg, #8B5CF6 0%, #a855f7 100%);
    color: white;
    text-align: center;
    padding: 40px 16px;
    position: relative;
    overflow: hidden;
}

.page-homepage-creation .homepage-creation-mobile-main-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255,255,255,0.1) 60deg, transparent 120deg);
    animation: rotate 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-homepage-creation .homepage-creation-mobile-lead {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-homepage-creation .homepage-creation-mobile-title-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-homepage-creation .homepage-creation-mobile-subtitle-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.9;
    line-height: 1.4;
}

.page-homepage-creation .homepage-creation-mobile-main-title-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-homepage-creation .homepage-creation-mobile-homepage-icon {
    font-size: 1.6rem;
    color: #ffffff;
}

/* 섹션 공통 스타일 */
.page-homepage-creation .homepage-creation-mobile-section {
    padding: 20px 16px;
    margin: 32px 0;
    position: relative;
}

.page-homepage-creation .homepage-creation-mobile-section::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1, #5a32a3);
    border-radius: 2px;
}

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

/* 카드 공통 스타일 */
.page-homepage-creation .homepage-creation-mobile-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-homepage-creation .homepage-creation-mobile-card-body {
    padding: 24px 20px;
}

/* 인트로 특징 헤더 스타일 */
.page-homepage-creation .homepage-creation-mobile-intro-feature-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.page-homepage-creation .homepage-creation-mobile-intro-feature-header i {
    color: #8B5CF6;
    font-size: 1.1rem;
}

.page-homepage-creation .homepage-creation-mobile-intro-feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

/* 섹션 제목 스타일 */
.page-homepage-creation .homepage-creation-mobile-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.page-homepage-creation .homepage-creation-mobile-section-title i {
    color: #8B5CF6;
    font-size: 1.2rem;
}

.page-homepage-creation .homepage-creation-mobile-section-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
}

/* 1. 인트로 섹션 스타일 */
.page-homepage-creation .homepage-creation-mobile-intro-features {
    margin: 24px 0;
}

.page-homepage-creation .homepage-creation-mobile-intro-feature {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #8B5CF6;
}

.page-homepage-creation .homepage-creation-mobile-intro-feature-desc {
    margin: 0;
}

.page-homepage-creation .homepage-creation-mobile-intro-feature-desc p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.page-homepage-creation .homepage-creation-mobile-intro-feature-desc p:last-child {
    margin-bottom: 0;
}

.page-homepage-creation .homepage-creation-mobile-intro-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.page-homepage-creation .homepage-creation-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-homepage-creation .homepage-creation-mobile-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #a855f7);
    color: #ffffff;
}

.page-homepage-creation .homepage-creation-mobile-btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.page-homepage-creation .homepage-creation-mobile-btn-outline {
    background: transparent;
    color: #8B5CF6;
    border-color: #8B5CF6;
}

.page-homepage-creation .homepage-creation-mobile-btn-outline:hover {
    background: #8B5CF6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.page-homepage-creation .homepage-creation-mobile-intro-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 16px;
}

.page-homepage-creation .homepage-creation-mobile-intro-note i {
    color: #10b981;
}

/* 2. 서비스 소개 섹션 스타일 */
.page-homepage-creation .homepage-creation-mobile-service-category {
    margin-bottom: 32px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
}

.page-homepage-creation .homepage-creation-mobile-service-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.page-homepage-creation .homepage-creation-mobile-service-category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-homepage-creation .homepage-creation-mobile-service-category-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.page-homepage-creation .homepage-creation-mobile-service-category-content h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.page-homepage-creation .homepage-creation-mobile-service-category-content p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.page-homepage-creation .homepage-creation-mobile-service-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-homepage-creation .homepage-creation-mobile-service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.page-homepage-creation .homepage-creation-mobile-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.page-homepage-creation .homepage-creation-mobile-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.page-homepage-creation .homepage-creation-mobile-service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: #475569;
}

.page-homepage-creation .homepage-creation-mobile-service-list li i {
    color: #10b981;
    font-size: 0.8rem;
}

.page-homepage-creation .homepage-creation-mobile-service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.page-homepage-creation .homepage-creation-mobile-service-badge {
    background: linear-gradient(135deg, #8B5CF6, #a855f7);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

/* 3. 제작 프로세스 섹션 스타일 */
.page-homepage-creation .homepage-creation-mobile-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.page-homepage-creation .homepage-creation-mobile-process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.page-homepage-creation .homepage-creation-mobile-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
}

.page-homepage-creation .homepage-creation-mobile-process-step-number {
    position: absolute;
    top: -12px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8B5CF6, #a855f7);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.page-homepage-creation .homepage-creation-mobile-process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
}

.page-homepage-creation .homepage-creation-mobile-process-step-title i {
    color: #8B5CF6;
    font-size: 1rem;
}

.page-homepage-creation .homepage-creation-mobile-process-step-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* 4. 포트폴리오 섹션 스타일 */
.page-homepage-creation .homepage-creation-mobile-portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-homepage-creation .homepage-creation-mobile-portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-item:hover .homepage-creation-mobile-portfolio-image img {
    transform: scale(1.05);
}

.page-homepage-creation .homepage-creation-mobile-portfolio-content {
    padding: 16px;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-category {
    color: #8B5CF6;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.page-homepage-creation .homepage-creation-mobile-feature-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
}

.page-homepage-creation .homepage-creation-mobile-portfolio-tech {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* 5. 기술 스택 섹션 스타일 */
.page-homepage-creation .homepage-creation-mobile-tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-homepage-creation .homepage-creation-mobile-tech-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.page-homepage-creation .homepage-creation-mobile-tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-homepage-creation .homepage-creation-mobile-tech-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.page-homepage-creation .homepage-creation-mobile-tech-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.page-homepage-creation .homepage-creation-mobile-tech-item h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.page-homepage-creation .homepage-creation-mobile-tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-homepage-creation .homepage-creation-mobile-tech-list li {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.page-homepage-creation .homepage-creation-mobile-tech-list li::before {
    content: '•';
    color: #8B5CF6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 업종별 전문페이지 특화 기능 스타일 */
.page-homepage-creation .homepage-creation-mobile-specialized-features {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.page-homepage-creation .homepage-creation-mobile-specialized-features-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
}

.page-homepage-creation .homepage-creation-mobile-specialized-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.page-homepage-creation .homepage-creation-mobile-specialized-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-homepage-creation .homepage-creation-mobile-specialized-feature-icon i {
    color: #ffffff;
    font-size: 1rem;
}

.page-homepage-creation .homepage-creation-mobile-specialized-feature-content h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.page-homepage-creation .homepage-creation-mobile-specialized-feature-content p {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* 6. 문의 및 상담 섹션 스타일 */
.page-homepage-creation .homepage-creation-mobile-contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.page-homepage-creation .homepage-creation-mobile-contact-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.page-homepage-creation .homepage-creation-mobile-contact-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.page-homepage-creation .homepage-creation-mobile-contact-form-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.page-homepage-creation .homepage-creation-mobile-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-homepage-creation .homepage-creation-mobile-form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-homepage-creation .homepage-creation-mobile-form-group {
    display: flex;
    flex-direction: column;
}

.page-homepage-creation .homepage-creation-mobile-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.page-homepage-creation .homepage-creation-mobile-form-control {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.page-homepage-creation .homepage-creation-mobile-form-control:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.page-homepage-creation .homepage-creation-mobile-form-control::placeholder {
    color: #9ca3af;
}

.page-homepage-creation .homepage-creation-mobile-form-control[type="date"] {
    color: #374151;
}

.page-homepage-creation .homepage-creation-mobile-form-control[type="date"]::-webkit-calendar-picker-indicator {
    color: #8B5CF6;
}

.page-homepage-creation .homepage-creation-mobile-form-control[type="date"]::-webkit-inner-spin-button,
.page-homepage-creation .homepage-creation-mobile-form-control[type="date"]::-webkit-clear-button {
    display: none;
}

.page-homepage-creation .homepage-creation-mobile-form-control textarea {
    resize: vertical;
    min-height: 120px;
}

.page-homepage-creation .homepage-creation-mobile-form-control select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.page-homepage-creation .homepage-creation-mobile-form-control optgroup {
    font-weight: 600;
    color: #374151;
}

.page-homepage-creation .homepage-creation-mobile-form-control option {
    font-weight: normal;
    color: #374151;
}

/* 반응형 디자인 */
@media (max-width: 480px) {
    .page-homepage-creation .homepage-creation-mobile-section {
        padding: 16px 12px;
        margin: 24px 0;
    }
    
    .page-homepage-creation .homepage-creation-mobile-section::after {
        bottom: -12px;
        width: 50px;
    }
    
    .page-homepage-creation .homepage-creation-mobile-card-body {
        padding: 20px 16px;
    }
    
    .page-homepage-creation .homepage-creation-mobile-section-title {
        font-size: 1.2rem;
    }
    
    .page-homepage-creation .homepage-creation-mobile-portfolio-grid,
    .page-homepage-creation .homepage-creation-mobile-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .page-homepage-creation .homepage-creation-mobile-service-category {
        padding: 16px;
    }
}

@media (max-width: 375px) {
    .page-homepage-creation .homepage-creation-mobile-section {
        padding: 12px 8px;
        margin: 20px 0;
    }
    
    .page-homepage-creation .homepage-creation-mobile-section::after {
        bottom: -10px;
        width: 40px;
    }
    
    .page-homepage-creation .homepage-creation-mobile-card-body {
        padding: 16px 12px;
    }
    
    .page-homepage-creation .homepage-creation-mobile-section-title {
        font-size: 1.1rem;
    }
    
    .page-homepage-creation .homepage-creation-mobile-intro-feature {
        padding: 12px;
    }
    
    .page-homepage-creation .homepage-creation-mobile-service-category {
        padding: 12px;
    }
}
