:root {
    --cj-blue: #003366;
    --cj-orange: #ff6600;
    --soft-bg: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    background-color: var(--soft-bg);
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    user-select: none;
    -webkit-user-select: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 26, 51, 0.9));
    background-size: cover;
    background-position: center 40%;
    color: white;
    padding: 80px 0 120px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 120px 0 160px;
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 80px;
    }
}

/* Canvas Visualizer Card */
.canvas-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 51, 102, 0.08);
    margin-top: -60px;
    border: 1px solid rgba(255,255,255,0.8);
}

@media (min-width: 768px) {
    .canvas-card {
        margin-top: -100px;
    }
}

.canvas-container {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    height: 0;
    background: linear-gradient(to bottom, #ffffff, #fcfdfe);
}

@media (min-width: 768px) {
    .canvas-container {
        padding-bottom: 35%;
    }
}

#opFlowCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Service Cards */
.service-card {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: white;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-card {
        padding: 40px 30px;
    }
}

.service-card:hover {
    transform: translateY(0px);
    box-shadow: 0 30px 60px rgba(0, 51, 102, 0.1);
    border-color: var(--cj-blue);
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(0, 51, 102, 0.05);
    color: var(--cj-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.task-list {
    font-size: 0.95rem;
    padding-left: 0;
    list-style: none;
}
.task-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #475569;
}
.task-list li i {
    color: var(--cj-orange);
    margin-right: 10px;
    margin-top: 2px;
    font-size: 1rem;
}

.pricing-banner {
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 30px 20px;
    border: 1px dashed var(--cj-blue);
}

@media (min-width: 768px) {
    .pricing-banner {
        padding: 40px;
    }
}

.guarantee-box {
    background: rgba(0, 51, 102, 0.05);
    border-radius: 16px;
    padding: 15px;
    margin-top: 15px;
    display: inline-block;
    border: 1px solid rgba(0, 51, 102, 0.1);
}

/* Order Section - 모바일 대응 패딩 수정 */
.order-section {
    background: white;
    border-radius: 30px;
    padding: 20px; /* 모바일 기본 패딩 */
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .order-section {
        border-radius: 40px;
        padding: 60px; /* 데스크탑 패딩 */
    }
}

.btn-cj {
    background-color: var(--cj-orange);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .btn-cj {
        padding: 18px 40px;
        border-radius: 16px;
        font-size: 1.15rem;
    }
}

.btn-cj:hover {
    background-color: #e65c00;
    color: white;
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.25);
    transform: scale(1.02);
}

.badge-new {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .form-control, .form-select {
        padding: 15px;
        border-radius: 12px;
        font-size: 1rem;
    }
}

.form-control:focus {
    border-color: var(--cj-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.flex-notice {
    background-color: #f1f5f9;
    border-left: 4px solid var(--cj-blue);
    padding: 12px 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #334155;
    border-radius: 4px 12px 12px 4px;
}

/* 필수 항목 표시 스타일 */
.required-mark::after {
    content: " *";
    color: var(--cj-orange);
}

.remote-notice {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #475569;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.privacy-notice {
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 8px;
    display: flex;
    align-items: center;
    background-color: #fef2f2;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #fee2e2;
}

.required-mark::after {
    content: " *";
    color: var(--cj-orange);
}

a {
    font-size: 0.8rem;
    text-decoration: none;
}

/* 추가된 스타일 */
.tax-info-box {
    font-size: 0.85rem;
    line-height: 1.4;
}
.extra-small {
    font-size: 0.75rem;
    display: block;
}
@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #dee2e6 !important;
    }
}


/* 비추천 섹션 (재택근무 특성 강조) */
.not-recommended-section {
    background-color: #fff1f2;
    border-radius: 1.25rem;
    padding: 2.5rem;
    border: 1px solid #fecdd3;
}
.not-rec-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}
.not-rec-item i {
    color: #e11d48;
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
}
.not-rec-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

.extra-small { font-size: 0.75rem; }
.btn-primary { border-radius: 0.75rem; padding: 0.8rem; background-color: #0d6efd; border: none; }
.form-control, .form-select { border-radius: 0.75rem; padding: 0.75rem; border: 1px solid #e2e8f0; }

@media (min-width: 768px) {
    .border-start-md { border-left: 1px solid #e2e8f0 !important; }
}


        /* 추천/비추천 공통 섹션 스타일 */
        .info-section {
            border-radius: 1.25rem;
            padding: 2.5rem;
            height: 100%;
        }
        /* 추천 섹션 (푸른색 계열) */
        .recommended-section {
            background-color: #f0f9ff;
            border: 1px solid #bae6fd;
        }
        /* 비추천 섹션 (붉은색 계열) */
        .not-recommended-section {
            background-color: #fff1f2;
            border: 1px solid #fecdd3;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.2rem;
        }
        .info-item i {
            margin-right: 12px;
            font-size: 1.2rem;
            margin-top: 2px;
        }
        .info-text {
            font-size: 0.9rem;
            color: #4b5563;
            line-height: 1.6;
        }
        .rec-icon { color: #0284c7; }
        .not-rec-icon { color: #e11d48; }

        .extra-small { font-size: 0.75rem; }
        .btn-primary { border-radius: 0.75rem; padding: 0.8rem; background-color: #0d6efd; border: none; }
        .form-control, .form-select { border-radius: 0.75rem; padding: 0.75rem; border: 1px solid #e2e8f0; }

        @media (min-width: 768px) {
            .border-start-md { border-left: 1px solid #e2e8f0 !important; }
        }
