* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --primary-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --primary-sky: #0893ad;
    --secondary-sky: #06a0bb;
    --light-sky: #4db8d1;
    --cyan-sky: #06b6d4;
    --dark-sky: #06758a;
    --very-light-sky: #a5e0ef;
    --dark-navy: #0f172a;
    --medium-navy: #1e293b;
    --light-navy: #334155;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}


/* Page Header - 하늘/청록 테마 */
.page-header {
    padding: 1.3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    background: linear-gradient(135deg, #bef7ff 0%, #0893ad 80%);
    box-shadow: 0 4px 25px #bcbcbc;
    border-radius: 15px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header h1,
.page-header h4 {
    font-size: 3.0rem;
    margin-bottom: 0.97rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.5;
    color: #053252;
    font-weight: 700;
}

/* Main Content */
.yesmap-main {
    padding: 2.5rem 2rem;
    background: var(--medium-navy);
    margin-top: -8px;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.about-text {
    text-align: center;
    color: #e2e8f0;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
}


:root {
    --primary-blue: #1e40af;
    --primary-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --primary-sky: #0893ad;
    --secondary-sky: #06a0bb;
    --light-sky: #4db8d1;
    --cyan-sky: #06b6d4;
    --dark-sky: #06758a;
    --very-light-sky: #a5e0ef;
    --dark-navy: #0f172a;
    --medium-navy: #1e293b;
    --light-navy: #334155;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    color: #a5e0ef;
    background-clip: text;
    text-align: center;
}

.about-text p {
    color: #94a3b8;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-text strong {
    color: #4db8d1;
    font-weight: 500;
}


/* Recommend Grid */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.recommend-card {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 12px;
    padding: 2.2rem 0.6rem;
    border-color: rgba(8, 147, 173, 0.6);
    transition: all 0.3s ease;
}

.recommend-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 147, 173, 0.6);
    box-shadow: 0 15px 40px rgba(8, 147, 173, 0.3);
}

.recommend-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4db8d1;
    position: relative;
    z-index: 1;
}

.recommend-card p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Service Card - 민트 테마 */
.service-card {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 16px;
    padding: 2.5rem 0.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(8, 147, 173, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 147, 173, 0.6);
    box-shadow: 0 15px 40px rgba(8, 147, 173, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(8, 147, 173, 0.4));
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: white;
}

.service-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: #94a3b8;
    font-size: 1.05rem;
}

/* Feature Grid - 4개 카드 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.1) 0%, rgba(6, 160, 187, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem 0;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(8, 147, 173, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(8, 147, 173, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(8, 147, 173, 0.5);
    box-shadow: 0 20px 60px rgba(8, 147, 173, 0.3);
}

.feature-card .icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(8, 147, 173, 0.4));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4db8d1;
    position: relative;
    z-index: 1;
}

.feature-card .service-desc {
    color: #0893ad;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.feature-card li {
    color: #cbd5e1;
    padding: 0.5rem 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Grid - 활용 사례용 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}


/* Process Flow */
.process-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 0.2rem;
    /* 좌우 간격 */
    row-gap: 1.2rem;
    /* ✅ 위아래 여백 추가 */
    margin-top: 1rem;
    margin-bottom: 1rem;

}

.process-step {
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.1) 0%, rgba(6, 160, 187, 0.05) 100%);
    padding: 1.2rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    flex: 0 0 170px;
    /* 고정폭 (항상 같은 크기 유지) */
    transition: all 0.3s;
    box-sizing: border-box;
}

.process-step .number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-step .title {
    color: #4db8d1;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.process-step .desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 아이콘(화살표)도 간격 맞추기 */
.process-flow .arrow {
    font-size: 1.5rem;
    color: #c133c1;
    align-self: center;
    margin: 0 0.1rem;
}


.arrow {
    font-size: 2rem;
    color: #0893ad;
    font-weight: 700;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.15) 0%, rgba(6, 160, 187, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    border: 2px solid rgba(8, 147, 173, 0.3);
    box-shadow: 0 10px 40px rgba(8, 147, 173, 0.2);
}

.cta-box h2 {
    font-size: 2.5rem;
    color: #4db8d1;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(8, 147, 173, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(8, 147, 173, 0.6);
}

/* Blank Line */
.blank-line {
    width: 100%;
}


/* 가격 카드 그리드 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.1) 0%, rgba(6, 160, 187, 0.05) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(8, 147, 173, 0.2);
    position: relative;
    overflow: hidden;
    
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(8, 147, 173, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}



.pricing-card.featured {
    border-color: #0893ad;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.15) 0%, rgba(6, 160, 187, 0.1) 100%);
}

.pricing-card.featured::after {
    content: '추천';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(8, 147, 173, 0.5);
    line-height: 2.0;
    /* 라인 높이를 늘려서 텍스트만 아래로 */
}

.pricing-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
/* ___________________________ */

.pricing-card::before,
.pricing-card::after {
    pointer-events: none; /* 오버레이 클릭 방해 제거 */
}


.price {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.price-note {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    color: #cbd5e1;
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0893ad;
    font-weight: 700;
    font-size: 1.2rem;
}

.buy-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(8, 147, 173, 0.3);
    z-index: 999;
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(8, 147, 173, 0.5);
}


/* FAQ 섹션 */
.faq-section {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.1) 0%, rgba(6, 160, 187, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0893ad;
    transition: all 0.3s;
    text-align: left;
    /* 추가 */
}

.faq-question {
    color: #d1bb4d;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    /* 추가 */
}

.faq-question::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer {
    color: #cbd5e1;
    line-height: 1.8;
    padding-left: 2.8rem;
    text-align: left;
    /* 추가 */
}

.faq-answer p {
    font-size: 1.1rem;
    text-align: left;
    word-break: keep-all;
    /* 한글/영문 단어 단위 유지 */
    overflow-wrap: break-word;
    /* 넘치는 경우만 줄바꿈 */
    white-space: normal;
    /* 기본 줄바꿈 허용 */
    margin-bottom: 0.2rem;
}

.faq-answer strong {
    color: #4db8d1;
    font-weight: 600;
    font-size: 1.1rem;
}

/* 가격 테이블 */
.price-table-container {
    background: rgba(8, 147, 173, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(8, 147, 173, 0.2);
    overflow-x: visible;
    box-sizing: border-box;
    /* 추가 */
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    max-width: 100%;
    /* 추가 */
}

/* 열 너비 지정 */
.price-table th:nth-child(1),
.price-table td:nth-child(1) {
    width: 30%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
    width: 45%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
    width: 25%;
}

.price-table thead tr {
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.2), rgba(8, 147, 173, 0.1));
}

.price-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #4db8d1;
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(8, 147, 173, 0.4);
    position: relative;
}

.price-table th:first-child {
    border-top-left-radius: 10px;
}

.price-table th:last-child {
    border-top-right-radius: 10px;
    text-align: center;
}

.price-table tbody tr {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.price-table tbody tr:hover {
    background: rgba(8, 147, 173, 0.15);
    transform: scale(1.01);
}

.price-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.price-table tbody tr:nth-child(even):hover {
    background: rgba(8, 147, 173, 0.15);
}

.price-table td {
    padding: 1.2rem 1rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    word-wrap: break-word;
    /* 긴 텍스트 줄바꿈 */
}

.price-table td:first-child {
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(8, 147, 173, 0.1), transparent);
}

.price-table td:last-child {
    color: #6ed8ff;
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.price-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}


/* 임팩트 배너 */
.impact-banner {
    background: linear-gradient(135deg, rgb(0, 152, 249) 0%, rgba(0, 59, 119, 0.61) 100%);
    border: 3px solid var(--light-sky);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 50rem;
    position: relative;
    overflow: hidden;
}

.impact-banner::before {
    content: '⚡';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.4;
}

.impact-banner h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-gold {
    color: orange;
    font-weight: 600;
    text-shadow: 0 0 50px rgba(255, 184, 0, 0.83);
}

.impact-banner p {
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.impact-banner2 {
    background: linear-gradient(135deg, rgb(0, 152, 249) 0%, rgba(0, 59, 119, 0.61) 100%);
    border: 3px solid var(--light-sky);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 50rem;
    position: relative;
    overflow: hidden;
}

.impact-banner2::before {
    content: '🌽';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.34;
}

.impact-banner2 h1 {
    font-size: 1.4rem;
    color: #fffcab;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.impact-banner2 h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.impact-banner2 h3 {
    font-size: 1.05rem;
    color: #bed2ff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 400;
}

/* ========================== */

.impact-banner3 {
    background: linear-gradient(135deg, var(--medium-navy) 0%, rgba(128, 0, 0, 0.28) 100%);
    border: 3px solid var(--light-sky);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem;
}

.impact-banner3::before {
    content: '+Google';
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.14;
}


.impact-banner3:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 147, 173, 0.6);
    box-shadow: 0 15px 40px rgba(8, 147, 173, 0.3);
}

.impact-banner3 h1 {
    font-size: 2.0rem;
    color: #fffcab;
    font-weight: 500;
}

.impact-banner3 h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.impact-banner3 h3 {
    font-size: 1.05rem;
    color: #bed2ff;
    margin-bottom: 0.5rem;
    line-height: 2.3;
    font-weight: 400;
}



/* ------------------------------------------ */
/* ------------------------------------------ */
/* ------------------------------
   GLOBAL: 이미지/텍스트 선택 방지
--------------------------------*/

/* 설명 텍스트 */
.sub-desc {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.8;
}

/* 이미지 드래그 방지 */
.img-compare img {
    user-select: none !important;
    -webkit-user-drag: none !important;
    pointer-events: none !important;
}

/* 라벨 드래그 방지 */
.label {
    user-select: none !important;
    pointer-events: none !important;
}

/* Tabs */
.compare-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.tab-btn {
    padding: 8px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    color: #eee;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 120px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #79bfff;
    color: #000000;
    font-weight: 600;
}

.icon {
    margin-right: 5px;
}

/* Slider Container */
.img-compare {
    position: relative;
    width: 97%;
    height: 550px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 25px;
    margin-bottom: -10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    justify-self: center;
}

.img-compare img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-left {
    z-index: 1;
}

.img-right {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

/* Labels */
.label {
    position: absolute;
    top: 12px;
    padding: 8px 16px;
    background: rgba(6, 33, 124, 0.49);
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.left-label {
    left: 12px;
}

.right-label {
    right: 12px;
}

/* Slider handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #00b9ff;
    cursor: ew-resize;
    z-index: 20;
    transform: translateX(-50%);
}

.slider-handle::after {
    content: "⬌";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00b9ff;
    color: #3c00ff;
    padding: 0.1rem 0.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.content-section>p {
    text-align: center;
    color: #ccc;
    margin: 15px 0;
}

/*------------ */
.price-additional {
    margin-top: 2rem;
    margin-bottom: -5rem;
    padding: 1.5rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.price-additional p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
     text-align: left !important; /* ← 강제 왼쪽 정렬 */
    margin-bottom: 1rem;
}

.price-additional strong.title {
    color: #6ee7b7;
    font-size: 1.4rem;
}

.price-additional strong.cost {
    font-size: 0.98rem;
    color: cornsilk;
}

.price-additional strong.modular {
    color: #ffa584;
}




.price-notice {
    margin-top: 2rem;
    margin-bottom: -5rem;
    padding: 1.5rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.price-notice p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 1rem;
}

.price-notice strong.title {
    color: #6ee7b7;
    font-size: 1.4rem;
}

.price-notice strong.highlight {
    font-size: 0.98rem;
    color: cornsilk;
}
.price-notice ul,
.price-additional ul {
    padding-left: 0.8rem;
    margin: 0;
}

.price-notice ul li,
.price-additional ul li {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.45rem;
    list-style: "🔹 ";
    text-align: left !important; /* ← 강제 왼쪽 정렬 */
}


/* Service Card - 민트 테마 */
.service-card2 {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 16px;
    padding: 2.0rem 1.0rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-card2 p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: -0.2rem;
}
/* ================폰=========== */
.contact-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.phone-btn {
  display: inline-block;
    background: linear-gradient(135deg, #0893ad 0%, #06a0bb 100%);
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(8, 147, 173, 0.3);
    z-index: 999;
    align-items: center;
  justify-content: center;
  padding: 0.8rem 0.8rem;
  border-radius: 50%; /* 완전한 원형 */
}
.phone-btn svg {
  display: block;
  stroke: white; /* 흰색 아이콘 */
}
/* ================폰=========== */


/* Mobile responsive */
@media (max-width: 768px) {
    .img-compare {
        height: 300px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .sub-desc {
        font-size: 1rem;
    }

    /* Page Header */
    .page-header {
        padding: 3rem 1.5rem;
    }

    .page-header h1,
    .page-header h4 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Content */
    .about-text h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .contact-email h2 {
        font-size: 1.8rem;
    }

    .contact-email p {
        font-size: 1.1rem;
    }

    .price-table-container {
        padding: 1rem;
        overflow-x: auto;
        /* 모바일에서는 스크롤 허용 */
    }

    .price-table {
        min-width: 0;
        line-height: 1.3;
        /* 600px 제거 */
    }

    .price-table th,
    .price-table td {
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
    }

    .price-table th {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price {
        font-size: 2.3rem;
    }

    .pricing-card h3 {
        font-size: 1.7rem;
    }

    .faq-question {
        font-size: 1.3rem;
    }

    .faq-answer {
        font-size: 1rem;
        padding-left: 2.5rem;
    }

    /* Impact Banner */
    .impact-banner {
        padding: 2rem 1.5rem;
    }

    .impact-banner h1 {
        font-size: 2rem;
    }

    .impact-banner p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {

    .page-header h1,
    .page-header h4 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .about-text h1 {
        font-size: 1.4rem;
        color: blanchedalmond;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }

    
    
/* Recommend Grid */
.recommend-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.5rem;
    margin-top: 2rem;
}

.recommend-card {
    padding: 1.5rem 0.5rem;
}

.recommend-card h3 {
    font-size: 1.2rem;
}

.recommend-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}
    
    
/* Tabs */
.compare-tabs {
    gap: 0.5rem;
    margin: 0.5rem;
}

.tab-btn {
    padding: 8px 4px;
    color: #eee;
    font-size: 0.9rem;
    margin-bottom: -0.8rem;
}

.tab-btn.active {
    background: #79bfff;
    color: #000000;
    font-weight: 600;
}

.content-section {
    margin: 1rem -1.2rem;
}
.img-compare {
    height: 250px;
    margin-bottom: -1.7rem;
}
    
    
/* Feature Grid */
.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.5rem;
    margin-top: 4.5rem;
    margin-bottom: -5rem;
}

.feature-card {
    padding: 1rem 0.5rem;
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 0.1rem;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-card li {
    color: #ddbb9a;
    padding: 0.2rem 0;
    font-size: 0.85rem;
}

.impact-banner3 {
    padding: 1.5rem 0.5rem;
    margin-top: -1rem;
}
.impact-banner3 h3{
   line-height: 1.5;
}
    
    
    


/* 가격 카드 그리드 */

.pricing-card {
    padding: 2rem 3rem;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.price {
    margin-top: -1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.pricing-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
    
.features-list {
    margin-bottom: 1rem;
}

.features-list li {
    padding: 0.3rem 0;
    padding-left: 1.8rem;
}


.buy-btn {
    display: inline-block;
    padding: 0.2rem 2.5rem;
    width: 200px;
    left: 50%;
}
    
    
/*------------ */
.price-additional strong.cost {
    font-size: 0.9rem;
}

.price-additional strong.modular {
    font-size: 0.9rem;
    color: #ffa584;
}

.price-notice ul,
.price-additional ul {
    padding-left: 0.8rem;
    margin: 0;
}

.price-notice ul li,
.price-additional ul li {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.0rem;
    list-style: "🔹";
}




/* Service Card - 민트 테마 */
.service-card2 p {
    font-size: 1.0rem;
    margin-bottom: -0.2rem;
}

    .faq-question {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    
.faq-answer {
    
    padding-left: 0.5rem;
    text-align: left;
    /* 추가 */
}

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

.faq-answer strong {
    color: #4db8d1;
    font-weight: 600;
    font-size: 0.9rem;
}
 
    
    
/* Impact Banner - 회색 테마 */
.impact-banner {
    margin: 2rem 0.5rem;
    padding: 2rem 1rem;
}

.impact-banner::before {
    top: -25px;
    right: -10px;
    font-size: 4rem;
}

.impact-banner h1 {
    font-size: 1.8rem;
    line-height: 1.5;
}

.impact-banner p {
    font-size: 1.1rem;
    line-height: 1.7;
}
    
      
/* Impact Banner - 회색 테마 */
.impact-banner2 {
    margin: 2rem 0.5rem;
    padding: 2rem 1rem;
}

.impact-banner2::before {
    top: -25px;
    right: -10px;
    font-size: 4rem;
}

.impact-banner2 h1 {
    font-size: 1.5rem;
    line-height: 1.7;
}
.impact-banner2 h2 {
    margin-top: 1.0rem;
    font-size: 2.0rem;
   line-height: 1.2;
}

.impact-banner2 p {
    font-size: 1.1rem;
     line-height: 1.7;
}
    

.impact-banner3::before {
    top: -25px;
    right: -5px;
    font-size: 2.5rem;
    opacity: 0.07;
}

.impact-banner3 h1 {
    font-size: 1.8rem;
    line-height: 1.5;
}

.impact-banner3 p {
    font-size: 1.1rem;
   
}
.impact-banner3 {
    margin-bottom: 4rem;
}
    
   
    
    
    .service-card h3 {
        font-size: 1.4rem;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .impact-banner h1 {
        font-size: 1.6rem;
    }

    .impact-banner p {
        font-size: 1rem;
    }

    .price-table-container {
        padding: 0.5rem;
        /* padding 더 줄임 */
    }

    .price-table th,
    .price-table td {
        padding: 0.8rem 0.3rem;
        /* padding 더 줄임 */
        font-size: 0.85rem;
    }

    .price-table th {
        font-size: 0.9rem;
    }

    .price-table td:last-child {
        font-size: 0.95rem;
    }
}
