/* 커넥트카 메인 레이아웃 CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-wrap {
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 공통 타이틀 스타일 */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-desc {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* 섹션 1: 서비스 소개 */
.service-intro {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    padding: 80px 0;
    color: white;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
    background: white;
    color: #222;
    padding: 40px 30px;
    border-radius: 20px;
}

.main-title .highlight-pink {
    color: #E91E63;
    font-weight: 800;
}

.main-title .sub-text {
    font-size: 22px;
    font-weight: 400;
}

.mobile-br {
    display: none;
}

.service-slider-wrapper {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}

.service-slider-container {
    overflow: visible;
    width: 100%;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.5s ease;
}

.service-slider-btn {
    display: none;
}

.service-indicators {
    display: none;
}

.service-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 30px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* 섹션 2: 특별 혜택 */
.special-benefits {
    padding: 80px 0;
    background: white;
}

.special-benefits .section-title {
    color: #8B5CF6;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-box {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-box:hover {
    border-color: #8B5CF6;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.benefit-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 섹션 3: 지도 영역 */
.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-area {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.location-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.info-box {
    background: white;
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.info-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #8B5CF6;
}

/* 섹션 4: 프로세스 */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-box {
    background: #f8f9fa;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-box:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    transform: translateY(-10px);
}

.process-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.1);
}

.process-box:hover .process-num {
    color: rgba(255, 255, 255, 0.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.process-box:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* 섹션 5: 이용 후기 */
.review-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 30px;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.reviewer-info strong {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}

.rating {
    display: block;
    font-size: 14px;
    color: #FFB800;
}

.review-content > p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* 섹션 6: 뉴스/소식 */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-item:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: inline-block;
    font-size: 12px;
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 섹션 7: 가격 비교 테이블 */
.price-compare {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
}

.price-compare .section-title {
    color: white;
}

.price-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
}

.price-table th {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.price-table th.highlight {
    background: #FFB800;
}

.price-table td {
    padding: 20px;
    text-align: center;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.price-table td.highlight {
    background: #FFF8E6;
    color: #8B5CF6;
    font-weight: 700;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* 섹션 8: 앱 다운로드 */
.app-download {
    padding: 80px 0;
    background: white;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
}

.app-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #222;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: #8B5CF6;
    transform: translateY(-3px);
}

.app-btn img {
    width: 24px;
    height: 24px;
}

.app-image img {
    width: 40%;
    height: auto;
}

/* 섹션 9: 상담 CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #8B5CF6;
}

.btn-primary:hover {
    background: #FFB800;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B5CF6;
    transform: translateY(-3px);
}

/* 섹션 10: FAQ */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.q-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    padding-top: 8px;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    padding-left: 60px;
}

.a-icon {
    width: 40px;
    height: 40px;
    background: #FFB800;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding-top: 8px;
}

/* 섹션 11: 비용 절감 효과 */
.cost-saving {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f0f5 0%, #e8e8f0 100%);
}

.section-title-main {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #555;
    margin-bottom: 10px;
}

.section-title-sub {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cost-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cost-content {
    flex: 1;
}

.cost-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.cost-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cost-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.cost-benefits li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.cost-illustration {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cost-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 섹션 12: 업종별 맞춤 서비스 */
.industry-service {
    padding: 100px 0;
    background: white;
}

.industry-service .section-desc {
    margin-bottom: 40px;
}

.highlight-icon {
    font-size: 24px;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tab-btn {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
}

.tab-btn.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-color: #8B5CF6;
    color: white;
}

.industry-tab-content {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
}

.content-text .main-desc {
    font-size: 20px;
    color: #E91E63;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 40px;
}

.apply-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
}

.apply-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.apply-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.apply-col {
    flex: 1;
    min-width: 150px;
}

.apply-col p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    margin: 0;
}

.content-image {
    flex-shrink: 0;
    width: 400px;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 섹션 13: 이용 방식 */
.usage-method {
    padding: 100px 0;
    background: #F9FAFB;
}

.usage-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.usage-tab-btn {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.usage-tab-btn:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
}

.usage-tab-btn.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-color: #8B5CF6;
    color: white;
}

.usage-tab-content {
    position: relative;
}

.usage-content {
    display: none;
}

.usage-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.usage-box {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.usage-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.usage-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.usage-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.usage-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* 섹션 14: 이용 요금 */
.pricing-plan {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #8B5CF6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
    transform: translateY(-10px);
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 25px;
}

.plan-recommend {
    background: #F3F4F6;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.plan-recommend h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.plan-recommend p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.plan-features {
    background: #F9FAFB;
    border-radius: 10px;
    padding: 30px 10px;
    margin-bottom: 25px;
    min-height: 200px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 15px;
    color: #444;
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: 700;
}

.plan-features .badge {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 5px;
}

.plan-discount {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    min-height: 24px;
}

.plan-price {
    text-align: center;
    margin-bottom: 25px;
}

.original-price {
    display: block;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.sale-price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #E91E63;
}

.sale-price.single-price {
    margin-top: 10px;
}

/* PC에서 DTG 가격 위 여백 추가 (높이 맞추기) */
@media (min-width: 768px) {
    .sale-price.single-price {
        margin-top: 35px;
    }
}

/* PC 전용 여백 (모바일에서는 숨김) */
.pc-only-spacer {
    display: none;
}

@media (min-width: 768px) {
    .pc-only-spacer {
        display: block;
    }
}

.plan-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    color: white;
    text-align: center;
    padding: 18px 20px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* 섹션 15: 특별 혜택 */
.special-offer {
    padding: 100px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.special-offer .section-desc {
    text-align: center;
    margin-bottom: 60px;
}

.special-offer .section-desc p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.highlight-text {
    color: #E91E63;
    font-weight: 700;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.offer-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-badge {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.offer-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #E91E63;
    margin-bottom: 15px;
}

.offer-note {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    margin-top: 15px;
}

/* 섹션 16: 부가 서비스 */
.additional-service {
    padding: 100px 0;
    background: #F9FAFB;
}

.service-grid-addon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-addon-card {
    background: white;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-addon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.addon-badge-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.service-addon-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    margin-top: 0;
}

.service-addon-card:first-child h3 {
    margin-top: 30px;
}

.addon-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.addon-price {
    font-size: 28px;
    font-weight: 800;
    color: #E91E63;
}

/* 섹션 17: 기기 소개 */
.device-intro {
    padding: 100px 0;
    background: white;
}

.device-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.device-slider-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.device-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.device-card {
    flex: 0 0 25%; /* 4개가 보이도록 각각 25% */
    padding: 0 15px;
    box-sizing: border-box;
}

.device-card > :first-child {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.device-badge {
    display: inline-block;
    background: linear-gradient(135deg, #DDD 0%, #CCC 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.device-badge.pink {
    background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
}

.device-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: white;
}

.device-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.device-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.device-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.device-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.device-specs li {
    font-size: 14px;
    color: #555;
    line-height: 2;
    padding-left: 15px;
    position: relative;
}

.device-specs li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: 700;
}

.device-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #E5E7EB;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.device-slider-btn:hover {
    border-color: #8B5CF6;
    background: #8B5CF6;
    color: white;
}

.device-slider-btn.prev-btn {
    left: 0;
}

.device-slider-btn.next-btn {
    right: 0;
}

.device-slider-btn svg {
    width: 24px;
    height: 24px;
}

.device-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.device-indicators .indicator {
    width: 40px;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-indicators .indicator.active {
    background: #8B5CF6;
    width: 60px;
}

/* 섹션 18: 기기 가격표 */
.device-price-table {
    padding: 100px 0;
    background: #F9FAFB;
}

.price-table-wrapper {
    margin-bottom: 40px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.device-price-list {
    width: 100%;
    min-width: 900px;
    background: white;
    border-collapse: collapse;
}

.device-price-list thead {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
}

.device-price-list thead th {
    padding: 20px 15px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.device-price-list thead th:last-child {
    border-right: none;
}

.device-price-list tbody td {
    padding: 18px 15px;
    font-size: 15px;
    color: #444;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
    vertical-align: middle;
}

.device-price-list tbody tr:last-child td {
    border-bottom: none;
}

.device-price-list tbody td:first-child {
    font-weight: 700;
    background: #F9FAFB;
}

.device-price-list tbody td:last-child {
    text-align: left;
    color: #666;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.arrow {
    color: #E91E63;
    font-weight: 700;
    margin: 0 5px;
}

.new-price {
    color: #E91E63;
    font-weight: 700;
    font-size: 18px;
}

.note-red {
    color: #E91E63 !important;
    font-weight: 600;
}

.price-notes {
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-notes li {
    font-size: 15px;
    color: #555;
    line-height: 2;
    margin-bottom: 8px;
}

.price-notes li:last-child {
    margin-bottom: 0;
}

/* 섹션 19: 앱 소개 */
.app-intro {
    padding: 100px 0;
    background: white;
}

.app-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 60px;
}

.app-slider-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.app-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.app-screen-item {
    flex: 0 0 25%; /* 4개가 보이도록 각각 25% */
    padding: 0 15px;
    box-sizing: border-box;
}

.app-screen-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-screen-item:hover img {
    transform: translateY(-10px);
}

.app-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #E5E7EB;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.app-slider-btn:hover {
    border-color: #E91E63;
    background: #E91E63;
    color: white;
}

.app-slider-btn.prev-btn {
    left: 0;
}

.app-slider-btn.next-btn {
    right: 0;
}

.app-slider-btn svg {
    width: 24px;
    height: 24px;
}

.app-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.app-indicators .indicator {
    width: 40px;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-indicators .indicator.active {
    background: #E91E63;
    width: 60px;
}

.app-download-btn-wrapper {
    text-align: center;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.app-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.app-download-btn svg {
    width: 24px;
    height: 24px;
}

/* 섹션 20: 기기 설치 과정 */
.installation-process {
    padding: 100px 0;
    background: white;
}

.diagnosis-btn-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.diagnosis-btn {
    display: inline-block;
    background: #222;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.diagnosis-btn:hover {
    background: #444;
    transform: translateY(-3px);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    background: #F3F4F6;
    padding: 60px 40px;
    border-radius: 20px;
    flex-wrap: wrap;
}

.process-step-item {
    flex: 0 0 200px;
    text-align: center;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-badge {
    display: inline-block;
    background: #E5E7EB;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.process-step-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.arrow-right {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.installation-notes {
    text-align: center;
}

.installation-notes p {
    font-size: 15px;
    color: #666;
    line-height: 2;
    margin-bottom: 8px;
}

.installation-notes p:last-child {
    margin-bottom: 0;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid-addon {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
        padding: 30px 20px;
    }
    
    .main-title .sub-text {
        font-size: 16px;
    }
    
    .mobile-br {
        display: inline;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-title-main {
        font-size: 24px;
    }
    
    .section-title-sub {
        font-size: 32px;
    }
    
    .service-slider-wrapper {
        padding: 0 50px;
    }
    
    .service-slider-container {
        overflow: hidden;
    }
    
    .service-list {
        flex-direction: row;
        gap: 0;
    }
    
    .service-item {
        flex: 0 0 100%;
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        min-width: 100%;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border: 2px solid rgba(255, 255, 255, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        color: #8B5CF6;
    }
    
    .service-slider-btn:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .service-slider-btn.prev-btn {
        left: 0;
    }
    
    .service-slider-btn.next-btn {
        right: 0;
    }
    
    .service-slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .service-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 30px;
    }
    
    .service-indicators .indicator {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .service-indicators .indicator.active {
        background: white;
        width: 24px;
        border-radius: 4px;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .app-image {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .location-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .faq-answer {
        padding-left: 0;
    }
    
    .cost-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cost-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .cost-illustration {
        width: 140px;
        height: 140px;
        margin-top: 20px;
    }
    
    .industry-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .content-box {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .content-text h3 {
        font-size: 24px;
    }
    
    .content-text .main-desc {
        font-size: 18px;
    }
    
    .apply-info {
        padding: 20px;
    }
    
    .apply-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .content-image {
        width: 100%;
        max-width: 300px;
    }
    
    .usage-tabs {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .usage-tab-btn {
        width: 100%;
        max-width: 400px;
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .usage-box {
        padding: 40px 20px;
    }
    
    .usage-icon {
        width: 100px;
        height: 100px;
    }
    
    .usage-box h3 {
        font-size: 20px;
    }
    
    .usage-box p {
        font-size: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .plan-header h3 {
        font-size: 24px;
    }
    
    .plan-features {
        min-height: auto;
        padding: 25px 20px;
    }
    
    .plan-features li {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .sale-price {
        font-size: 28px;
    }
    
    .plan-btn {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .offer-card {
        padding: 40px 20px;
    }
    
    .offer-icon {
        width: 150px;
        height: 150px;
    }
    
    .offer-card h3 {
        font-size: 24px;
    }
    
    .special-offer .section-desc p {
        font-size: 16px;
    }
    
    .service-grid-addon {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-addon-card {
        padding: 40px 25px;
        min-height: auto;
    }
    
    .addon-badge-top {
        font-size: 13px;
        padding: 6px 15px;
    }
    
    .service-addon-card h3 {
        font-size: 20px;
    }
    
    .addon-desc {
        font-size: 15px;
    }
    
    .addon-price {
        font-size: 24px;
    }
    
    .device-slider-wrapper {
        padding: 0 50px;
    }
    
    .device-card {
        flex: 0 0 100%; /* 모바일에서는 1개씩 보이기 */
    }
    
    .device-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .device-slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .device-card h3 {
        font-size: 18px;
    }
    
    .device-subtitle {
        font-size: 14px;
    }
    
    .device-specs li {
        font-size: 13px;
    }
    
    .price-table-wrapper {
        border-radius: 8px;
    }
    
    .device-price-list {
        min-width: 750px;
    }
    
    .device-price-list thead th {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .device-price-list tbody td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .price-notes {
        padding: 25px 20px;
    }
    
    .price-notes li {
        font-size: 14px;
    }
    
    .app-slider-wrapper {
        padding: 0 50px;
    }
    
    .app-screen-item {
        flex: 0 0 50%; /* 모바일에서는 2개씩 보이기 */
    }
    
    .app-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .app-slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .app-download-btn {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .installation-process {
        padding: 60px 0;
    }
    
    .diagnosis-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .process-steps {
        padding: 40px 20px;
        gap: 20px;
    }
    
    .process-step-item {
        flex: 0 0 100%;
    }
    
    .arrow-right {
        transform: rotate(90deg);
        flex: 0 0 40px;
        margin: 10px 0;
    }
    
    .step-icon {
        width: 100px;
        height: 100px;
    }
    
    .step-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .process-step-item h3 {
        font-size: 18px;
    }
    
    .process-step-item p {
        font-size: 14px;
    }
    
    .installation-notes p {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* 전화 상담 레이어 팝업 */
.phone-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.phone-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.phone-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    min-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.phone-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.phone-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.phone-modal-body {
    text-align: center;
}

.phone-modal-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.phone-modal-body .phone-number {
    font-size: 42px;
    font-weight: 800;
    color: #8B5CF6;
    margin: 20px 0;
    letter-spacing: 2px;
}

.phone-modal-body .phone-desc {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

/* 모바일에서는 모달 크기 조정 */
@media (max-width: 767px) {
    .phone-modal-content {
        min-width: 90%;
        padding: 30px 20px;
    }
    
    .phone-modal-body h3 {
        font-size: 20px;
    }
    
    .phone-modal-body .phone-number {
        font-size: 36px;
    }
}

/* 가입상담 레이어 팝업 */
.consult-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.consult-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.consult-modal-content {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: consultModalFadeIn 0.3s ease;
}

@keyframes consultModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consult-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.consult-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.consult-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B5CF6;
}

.consult-form-group {
    margin-bottom: 25px;
}

.consult-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.consult-label .required {
    color: #E91E63;
    margin-left: 3px;
}

.consult-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.consult-radio {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consult-radio:hover {
    border-color: #8B5CF6;
    background: #f9f7ff;
}

.consult-radio input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.consult-radio input[type="radio"]:checked + span {
    color: #8B5CF6;
    font-weight: 600;
}

.consult-radio:has(input[type="radio"]:checked) {
    border-color: #8B5CF6;
    background: #f9f7ff;
}

.consult-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.consult-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.consult-input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.email-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-input {
    flex: 1;
}

.email-at {
    font-size: 18px;
    color: #666;
}

.consult-select {
    flex: 1;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.consult-select:focus {
    outline: none;
    border-color: #8B5CF6;
}

.consult-textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.consult-textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.textarea-count {
    text-align: right;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

/* 개인정보 동의 */
.consult-agreement {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.agreement-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.agreement-item:last-child {
    margin-bottom: 0;
}

.consult-agreement .agreement-checkbox {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    flex: 1;
    padding: 8px 0;
}

.consult-agreement .agreement-checkbox input[type="checkbox"] {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    accent-color: #8B5CF6;
}

.consult-agreement .checkbox-text {
    display: inline-block;
    font-size: 15px;
    color: #333;
}

.consult-agreement .checkbox-text em {
    color: #E91E63;
    font-style: normal;
    font-weight: 600;
}

.agreement-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    color: #666;
    font-size: 14px;
}

.agreement-toggle:hover {
    color: #333;
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.agreement-content {
    margin-top: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.agreement-box {
    max-height: 300px;
    overflow-y: auto;
}

.agreement-box p {
    margin-bottom: 10px;
}

.agreement-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.agreement-table th,
.agreement-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.agreement-table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* 버튼 */
.consult-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.consult-btn-cancel,
.consult-btn-submit {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consult-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.consult-btn-cancel:hover {
    background: #e0e0e0;
    color: #333;
}

.consult-btn-submit {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
}

.consult-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* 모바일 반응형 */
@media (max-width: 767px) {
    .consult-modal-content {
        margin: 20px;
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }
    
    .consult-modal-title {
        font-size: 22px;
    }
    
    .consult-radio-group {
        flex-direction: column;
    }
    
    .consult-radio {
        width: 100%;
    }
    
    .email-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-at {
        display: none;
    }
    
    .consult-btn-group {
        flex-direction: column;
    }
}
