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

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

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

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

/* 0. 메인 인트로 텍스트 섹션 (세련되고 미래지향적) */
.page-carrot .carrot-mobile-main-intro {
    text-align: center;
    padding: 20px 0 32px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.page-carrot .carrot-mobile-main-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    pointer-events: none;
}

.page-carrot .carrot-mobile-main-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(249, 115, 22, 0.1) 60deg, 
            transparent 120deg,
            rgba(234, 88, 12, 0.1) 180deg,
            transparent 240deg,
            rgba(99, 102, 241, 0.1) 300deg,
            transparent 360deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

.page-carrot .carrot-mobile-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

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

.page-carrot .carrot-mobile-subtitle-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-carrot .carrot-mobile-main-title-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-carrot .carrot-mobile-carrot-icon {
    font-size: 1.8rem;
    color: #f97316;
    animation: carrotFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.3));
}

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

/* 1. 인트로 섹션 스타일 */
.page-carrot .carrot-mobile-section {
    margin: 32px 0;
    position: relative;
}

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

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

.page-carrot .carrot-mobile-intro-features {
    margin-bottom: 24px;
}

.page-carrot .carrot-mobile-intro-feature {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-carrot .carrot-mobile-intro-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 12px;
    text-align: center;
}

.page-carrot .carrot-mobile-intro-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-carrot .carrot-mobile-intro-feature-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.page-carrot .carrot-mobile-intro-feature-list li::before {
    content: '•';
    color: #f97316;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-carrot .carrot-mobile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.page-carrot .carrot-mobile-stat-item {
    text-align: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: 12px;
    padding: 16px 8px;
    border: 1px solid #fbbf24;
}

.page-carrot .carrot-mobile-stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
}

.page-carrot .carrot-mobile-stat-label {
    font-size: 0.8rem;
    color: #a16207;
    font-weight: 500;
}

/* 2. 카드 스타일 (PC와 동일) */
.page-carrot .carrot-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-carrot .carrot-mobile-card-body {
    padding: 20px;
}

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

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

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

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

/* 섹션별 소제목 색상 (당근마켓 테마) */
.page-carrot .carrot-mobile-intro .carrot-mobile-section-title {
    color: #f97316;
}

.page-carrot .carrot-mobile-solution-types .carrot-mobile-section-title {
    color: #ea580c;
}

.page-carrot .carrot-mobile-service-intro .carrot-mobile-section-title {
    color: #c2410c;
}

.page-carrot .carrot-mobile-algorithm .carrot-mobile-section-title {
    color: #9a3412;
}

.page-carrot .carrot-mobile-process .carrot-mobile-section-title {
    color: #7c2d12;
}

.page-carrot .carrot-mobile-setup .carrot-mobile-section-title {
    color: #f97316;
}

.page-carrot .carrot-mobile-warnings .carrot-mobile-section-title {
    color: #ea580c;
}

.page-carrot .carrot-mobile-images .carrot-mobile-section-title {
    color: #c2410c;
}

.page-carrot .carrot-mobile-tips .carrot-mobile-section-title {
    color: #9a3412;
}

.page-carrot .carrot-mobile-pricing .carrot-mobile-section-title {
    color: #7c2d12;
}

.page-carrot .carrot-mobile-search-demo .carrot-mobile-section-title {
    color: #f97316;
}

.page-carrot .carrot-mobile-contact .carrot-mobile-section-title {
    color: #ea580c;
}

/* 4. 서비스 소개 섹션 스타일 */
.page-carrot .carrot-mobile-service-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.page-carrot .carrot-mobile-service-number {
    display: block;
    background: none;
    color: #f97316;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    margin: 0 auto 16px auto;
    text-align: center;
    width: fit-content;
    min-width: 60px;
}

.page-carrot .carrot-mobile-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
}

.page-carrot .carrot-mobile-service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    margin-bottom: 20px;
}

.page-carrot .carrot-mobile-service-desc br {
    display: block;
    margin: 6px 0;
}

.page-carrot .carrot-mobile-service-desc strong {
    color: #f97316;
    font-weight: 600;
}

.page-carrot .carrot-mobile-service-footer {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #92400e;
    border: 1px solid #fbbf24;
}

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

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

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

/* 5. 알고리즘 섹션 스타일 */
.page-carrot .carrot-mobile-algorithm-alert {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.page-carrot .carrot-mobile-algorithm-alert-icon {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 2px;
}

.page-carrot .carrot-mobile-algorithm-alert-content {
    flex: 1;
}

.page-carrot .carrot-mobile-algorithm-alert-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-algorithm-alert-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #1e3a8a;
}

.page-carrot .carrot-mobile-algorithm-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-carrot .carrot-mobile-algorithm-item {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-carrot .carrot-mobile-algorithm-icon {
    color: #3b82f6;
    font-size: 2rem;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-algorithm-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    text-align: center;
}

.page-carrot .carrot-mobile-algorithm-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 16px;
    text-align: center;
}

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

.page-carrot .carrot-mobile-algorithm-desc strong {
    color: #3b82f6;
    font-weight: 600;
}

.page-carrot .carrot-mobile-algorithm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.page-carrot .carrot-mobile-algorithm-list li {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    text-align: center;
}

.page-carrot .carrot-mobile-algorithm-list li i {
    color: #10b981;
    position: absolute;
    left: 0;
    top: 2px;
}

/* 6. 프로세스 섹션 스타일 */
.page-carrot .carrot-mobile-process-alert {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.page-carrot .carrot-mobile-process-alert-icon {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 2px;
}

.page-carrot .carrot-mobile-process-alert-content {
    flex: 1;
}

.page-carrot .carrot-mobile-process-alert-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-process-alert-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #1e3a8a;
}

.page-carrot .carrot-mobile-process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.page-carrot .carrot-mobile-process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #f97316, #ea580c, #dc2626);
    transform: translateX(-50%);
    z-index: 1;
}

.page-carrot .carrot-mobile-process-step {
    background: #ffffff;
    border: 2px solid #f97316;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.page-carrot .carrot-mobile-process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.page-carrot .carrot-mobile-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.page-carrot .carrot-mobile-process-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 16px;
    text-align: center;
}

.page-carrot .carrot-mobile-process-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    text-align: center;
}

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

.page-carrot .carrot-mobile-process-desc strong {
    color: #3b82f6;
    font-weight: 600;
}

.page-carrot .carrot-mobile-process-desc small {
    color: #6b7280;
    font-size: 0.8rem;
}

/* 7. 솔루션 그리드 */
.page-carrot .carrot-mobile-solution-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-carrot .carrot-mobile-solution-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;
    text-align: center;
}

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

.page-carrot .carrot-mobile-solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    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(249, 115, 22, 0.3);
}

.page-carrot .carrot-mobile-solution-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.page-carrot .carrot-mobile-solution-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* 8. CTA 섹션 */
.page-carrot .carrot-mobile-cta {
    background: #ffffff;
    color: #111827;
    text-align: center;
}

.page-carrot .carrot-mobile-cta .carrot-mobile-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    backdrop-filter: none;
}

.page-carrot .carrot-mobile-cta .carrot-mobile-section-title {
    color: #f97316;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-cta .carrot-mobile-section-desc {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 24px;
}

.page-carrot .carrot-mobile-cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.page-carrot .carrot-mobile-cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #374151;
}

.page-carrot .carrot-mobile-cta-feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.page-carrot .carrot-mobile-cta-buttons {
    text-align: center;
}

.page-carrot .carrot-mobile-cta .carrot-mobile-btn-primary {
    background: #f97316;
    color: white;
    border: 2px solid #f97316;
    font-weight: 700;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.page-carrot .carrot-mobile-cta .carrot-mobile-btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

/* 9. 설정 섹션 스타일 */
.page-carrot .carrot-mobile-setup-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-carrot .carrot-mobile-setup-step {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-carrot .carrot-mobile-setup-number {
    display: inline-block;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-setup-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.page-carrot .carrot-mobile-setup-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
}

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

.page-carrot .carrot-mobile-setup-desc strong {
    color: #f97316;
    font-weight: 600;
}

/* 6. 알고리즘 콘텐츠 */
.page-carrot .carrot-mobile-algorithm-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-carrot .carrot-mobile-algorithm-item {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-carrot .carrot-mobile-algorithm-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-algorithm-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* 7. 프로세스 정보 */
.page-carrot .carrot-mobile-process-info {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.page-carrot .carrot-mobile-process-info-icon {
    width: 40px;
    height: 40px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.page-carrot .carrot-mobile-process-info-content {
    flex: 1;
}

.page-carrot .carrot-mobile-process-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-process-info-desc {
    font-size: 0.9rem;
    color: #0c4a6e;
    line-height: 1.6;
}

/* 8. 프로세스 스텝 */
.page-carrot .carrot-mobile-process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.page-carrot .carrot-mobile-process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f97316, #ea580c, #dc2626);
    transform: translateX(-50%);
    z-index: 1;
}

.page-carrot .carrot-mobile-process-step {
    background: #ffffff;
    border: 2px solid #f97316;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
}

.page-carrot .carrot-mobile-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.page-carrot .carrot-mobile-process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 16px;
    text-align: center;
}

.page-carrot .carrot-mobile-process-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    text-align: center;
}

/* 9. 세팅 스텝 */
.page-carrot .carrot-mobile-setup-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-carrot .carrot-mobile-setup-step {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-carrot .carrot-mobile-setup-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.page-carrot .carrot-mobile-setup-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-setup-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* 10. 경고 알림 */
.page-carrot .carrot-mobile-warning-alert {
    background: #fef2f2;
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.page-carrot .carrot-mobile-warning-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ef4444;
    flex-shrink: 0;
}

.page-carrot .carrot-mobile-warning-alert-content {
    flex: 1;
}

.page-carrot .carrot-mobile-warning-alert-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #991b1b;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-warning-alert-desc {
    font-size: 0.9rem;
    color: #991b1b;
    line-height: 1.6;
}

/* 11. 경고 콘텐츠 */
.page-carrot .carrot-mobile-warnings-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-carrot .carrot-mobile-warning-item {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-carrot .carrot-mobile-warning-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 0 0 120px;
}

.page-carrot .carrot-mobile-warning-right {
    flex: 1;
}

.page-carrot .carrot-mobile-warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #f97316;
    flex-shrink: 0;
}

.page-carrot .carrot-mobile-warning-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0;
    line-height: 1.3;
}

.page-carrot .carrot-mobile-warning-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* 9. 주의사항 섹션 스타일 */
.page-carrot .carrot-mobile-warning-alert {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.page-carrot .carrot-mobile-warning-alert-icon {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 2px;
}

.page-carrot .carrot-mobile-warning-alert-content {
    flex: 1;
}

.page-carrot .carrot-mobile-warning-alert-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-warning-alert-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #991b1b;
}

.page-carrot .carrot-mobile-warnings-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-carrot .carrot-mobile-warning-item {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-carrot .carrot-mobile-warning-icon {
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-warning-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0;
    line-height: 1.3;
}

.page-carrot .carrot-mobile-warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-carrot .carrot-mobile-warning-list li {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.page-carrot .carrot-mobile-warning-list li i {
    color: #10b981;
    position: absolute;
    left: 0;
    top: 2px;
}

/* 10. 이미지 섹션 스타일 */
.page-carrot .carrot-mobile-images-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-carrot .carrot-mobile-image-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-carrot .carrot-mobile-image-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-image-icon {
    color: #8b5cf6;
    font-size: 2rem;
}

.page-carrot .carrot-mobile-image-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}

.page-carrot .carrot-mobile-image-body {
    flex: 1;
}

.page-carrot .carrot-mobile-image-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 12px;
    text-align: center;
}

.page-carrot .carrot-mobile-image-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-carrot .carrot-mobile-image-list li {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.page-carrot .carrot-mobile-image-badge {
    background: #3b82f6;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 8px;
}

/* 11. 운영 팁 섹션 스타일 */
.page-carrot .carrot-mobile-tips-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-carrot .carrot-mobile-tip-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-carrot .carrot-mobile-tip-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-tip-icon {
    color: #10b981;
    font-size: 2rem;
}

.page-carrot .carrot-mobile-tip-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-tip-body {
    flex: 1;
}

.page-carrot .carrot-mobile-tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-carrot .carrot-mobile-tip-list li {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.page-carrot .carrot-mobile-tip-list li i {
    color: #10b981;
    position: absolute;
    left: 0;
    top: 2px;
}

/* 12. 가격 섹션 스타일 */
.page-carrot .carrot-mobile-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.page-carrot .carrot-mobile-pricing-popular {
    border: 2px solid #f97316;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.page-carrot .carrot-mobile-pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.page-carrot .carrot-mobile-pricing-icon {
    color: #f97316;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.page-carrot .carrot-mobile-pricing-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
}

.page-carrot .carrot-mobile-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.page-carrot .carrot-mobile-pricing-features li {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.page-carrot .carrot-mobile-pricing-features li i {
    color: #10b981;
    position: absolute;
    left: 0;
    top: 2px;
}

.page-carrot .carrot-mobile-pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 16px;
}

/* 13. 검색 데모 섹션 스타일 */
.page-carrot .carrot-mobile-demo-content {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-carrot .carrot-mobile-demo-search {
    margin-bottom: 24px;
}

.page-carrot .carrot-mobile-search-row {
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-search-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-search-input,
.page-carrot .carrot-mobile-search-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.page-carrot .carrot-mobile-search-input:focus,
.page-carrot .carrot-mobile-search-select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.page-carrot .carrot-mobile-search-btn {
    width: 100%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.page-carrot .carrot-mobile-search-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.page-carrot .carrot-mobile-demo-results {
    margin-bottom: 20px;
}

.page-carrot .carrot-mobile-demo-result-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.page-carrot .carrot-mobile-result-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.page-carrot .carrot-mobile-result-location {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.page-carrot .carrot-mobile-result-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f97316;
}

.page-carrot .carrot-mobile-demo-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #1e40af;
}

.page-carrot .carrot-mobile-demo-note i {
    color: #3b82f6;
}

/* 14. 문의 섹션 스타일 */
.page-carrot .carrot-mobile-contact-special {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.page-carrot .carrot-mobile-contact-special-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.page-carrot .carrot-mobile-contact-special-text {
    font-size: 1rem;
    font-weight: 600;
    color: #92400e;
}

.page-carrot .carrot-mobile-contact-buttons {
    text-align: center;
}

.page-carrot .carrot-mobile-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.page-carrot .carrot-mobile-btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    transform: translateY(-1px);
}

/* 15. 반응형 브레이크포인트 */
@media (min-width: 480px) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 0;
    }
    
    .page-carrot .carrot-mobile-section {
        margin: 40px 0;
        padding: 0 20px;
    }
    
    .page-carrot .carrot-mobile-section::after {
        bottom: -20px;
        width: 80px;
    }
    
    .page-carrot .carrot-mobile-main-title-text {
        font-size: 2.2rem;
    }
    
    .page-carrot .carrot-mobile-lead {
        font-size: 1.2rem;
        letter-spacing: 0.6px;
    }
    
    .page-carrot .carrot-mobile-subtitle-text {
        font-size: 1rem;
    }
    
    .page-carrot .carrot-mobile-section-title {
        font-size: 1.6rem;
    }
    
    .page-carrot .carrot-mobile-stats-grid {
        gap: 20px;
    }
    
    .page-carrot .carrot-mobile-stat-item {
        padding: 20px 12px;
    }
    
    .page-carrot .carrot-mobile-stat-number {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 0;
    }
    
    .page-carrot .carrot-mobile-section {
        margin: 48px 0;
        padding: 0 24px;
    }
    
    .page-carrot .carrot-mobile-section::after {
        bottom: -24px;
        width: 100px;
    }
    
    .page-carrot .carrot-mobile-main-title-text {
        font-size: 2.4rem;
    }
    
    .page-carrot .carrot-mobile-lead {
        font-size: 1.3rem;
        letter-spacing: 0.7px;
    }
    
    .page-carrot .carrot-mobile-subtitle-text {
        font-size: 1.1rem;
    }
    
    .page-carrot .carrot-mobile-section-title {
        font-size: 1.8rem;
    }
    
    .page-carrot .carrot-mobile-stats-grid {
        gap: 24px;
    }
    
    .page-carrot .carrot-mobile-stat-item {
        padding: 24px 16px;
    }
    
    .page-carrot .carrot-mobile-stat-number {
        font-size: 1.6rem;
    }
    
    .page-carrot .carrot-mobile-stat-label {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 0;
    }
    
    .page-carrot .carrot-mobile-section {
        margin: 56px 0;
        padding: 0 32px;
    }
    
    .page-carrot .carrot-mobile-section::after {
        bottom: -28px;
        width: 120px;
    }
    
    .page-carrot .carrot-mobile-main-title-text {
        font-size: 2.6rem;
    }
    
    .page-carrot .carrot-mobile-lead {
        font-size: 1.4rem;
        letter-spacing: 0.8px;
    }
    
    .page-carrot .carrot-mobile-subtitle-text {
        font-size: 1.2rem;
    }
    
    .page-carrot .carrot-mobile-section-title {
        font-size: 2rem;
    }
    
    .page-carrot .carrot-mobile-stats-grid {
        gap: 32px;
    }
    
    .page-carrot .carrot-mobile-stat-item {
        padding: 32px 20px;
    }
    
    .page-carrot .carrot-mobile-stat-number {
        font-size: 1.8rem;
    }
    
    .page-carrot .carrot-mobile-stat-label {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 0;
    }
    
    .page-carrot .carrot-mobile-section {
        margin: 64px 0;
        padding: 0 40px;
    }
    
    .page-carrot .carrot-mobile-section::after {
        bottom: -32px;
        width: 140px;
    }
    
    .page-carrot .carrot-mobile-main-title-text {
        font-size: 2.8rem;
    }
    
    .page-carrot .carrot-mobile-lead {
        font-size: 1.5rem;
        letter-spacing: 0.9px;
    }
    
    .page-carrot .carrot-mobile-subtitle-text {
        font-size: 1.3rem;
    }
    
    .page-carrot .carrot-mobile-section-title {
        font-size: 2.2rem;
    }
    
    .page-carrot .carrot-mobile-stats-grid {
        gap: 40px;
    }
    
    .page-carrot .carrot-mobile-stat-item {
        padding: 40px 24px;
    }
    
    .page-carrot .carrot-mobile-stat-number {
        font-size: 2rem;
    }
    
    .page-carrot .carrot-mobile-stat-label {
        font-size: 1.1rem;
    }
}

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

.page-carrot .carrot-mobile-image-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* 13. 팁 콘텐츠 */
.page-carrot .carrot-mobile-tips-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-carrot .carrot-mobile-tip-item {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.page-carrot .carrot-mobile-tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #f97316;
    flex-shrink: 0;
}

.page-carrot .carrot-mobile-tip-title {
        font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-tip-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* 14. 가격 그리드 */
.page-carrot .carrot-mobile-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-carrot .carrot-mobile-pricing-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page-carrot .carrot-mobile-pricing-popular {
    border: 2px solid #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

.page-carrot .carrot-mobile-pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.page-carrot .carrot-mobile-pricing-header {
    margin-bottom: 20px;
}

.page-carrot .carrot-mobile-pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f97316;
}

.page-carrot .carrot-mobile-pricing-features {
    margin-bottom: 24px;
}

.page-carrot .carrot-mobile-pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #374151;
}

.page-carrot .carrot-mobile-pricing-feature i {
    color: #22c55e;
    font-size: 1rem;
}

/* 15. 버튼 스타일 */
.page-carrot .carrot-mobile-btn-primary {
    background: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

.page-carrot .carrot-mobile-btn-primary:hover {
    background: #ea580c;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
    color: white;
    text-decoration: none;
}

/* 16. 데모 콘텐츠 */
.page-carrot .carrot-mobile-demo-content {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-carrot .carrot-mobile-demo-search {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.page-carrot .carrot-mobile-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.page-carrot .carrot-mobile-search-btn {
    background: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-carrot .carrot-mobile-demo-results {
    margin-bottom: 16px;
}

.page-carrot .carrot-mobile-demo-result-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.page-carrot .carrot-mobile-result-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.page-carrot .carrot-mobile-result-location {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.page-carrot .carrot-mobile-result-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f97316;
}

.page-carrot .carrot-mobile-demo-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #6b7280;
    justify-content: center;
}

.page-carrot .carrot-mobile-demo-note i {
    color: #f97316;
}

/* 17. 문의 섹션 */
.page-carrot .carrot-mobile-contact-special {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.page-carrot .carrot-mobile-contact-special-badge {
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.page-carrot .carrot-mobile-contact-special-text {
    font-size: 1.1rem;
    color: #92400e;
}

.page-carrot .carrot-mobile-contact-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* 반응형 브레이크포인트 */

/* 모바일 중형 (480px-767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 20px 16px;
    }

    .page-carrot .carrot-mobile-section-title {
        font-size: 1.6rem;
    }
}

/* 모바일 대형 (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 24px 20px;
    }

    .page-carrot .carrot-mobile-section-title {
        font-size: 1.7rem;
    }

    .page-carrot .carrot-mobile-solution-grid,
    .page-carrot .carrot-mobile-service-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .page-carrot .carrot-mobile-algorithm-content {
        gap: 24px;
    }

    .page-carrot .carrot-mobile-algorithm-item {
        min-height: 220px;
        padding: 28px;
    }

    .page-carrot .carrot-mobile-pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* 태블릿 (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 28px 24px;
    }

    .page-carrot .carrot-mobile-section-title {
        font-size: 1.8rem;
    }

    .page-carrot .carrot-mobile-solution-grid,
    .page-carrot .carrot-mobile-service-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .page-carrot .carrot-mobile-algorithm-content {
        gap: 28px;
    }

    .page-carrot .carrot-mobile-algorithm-item {
        min-height: 240px;
        padding: 32px;
    }
}

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

/* iOS Safari 키보드 대응 */
@media (max-height: 500px) and (orientation: landscape) {
    .page-carrot .carrot-mobile-wrapper {
        padding: 12px 8px;
    }
}
