@charset "utf-8";
/* ============================================
   CONTENT STYLES
   Consolidated from: et-mypage.css, service-process.css
   Version: 1.0
   Created: 2025-01-05
============================================ */

/* ============================================
   [From et-mypage.css] MyPage Dedicated Styles
============================================ */

/* Container Definition */
.container-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* MyPage Layout Fixes */
.mypage-dashboard {
    padding-top: 150px;
    background: #f8f9fc;
    min-height: 100vh;
    padding-bottom: 50px;
}

/* Dashboard Header */
.mypage-dashboard .dashboard-header {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: none;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Card Polish */
.mypage-dashboard .dashboard-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mypage-dashboard .dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Header Text */
.dashboard-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

/* Table Style Polish */
.shop-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-table th {
    padding: 12px;
    background: #f8f9fc;
    color: #555;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #eee;
    font-size: 14px;
}

.shop-table td {
    padding: 15px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

/* Empty State */
.empty-state {
    padding: 50px 0;
    text-align: center;
    color: #999;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
}


/* ============================================
   [From service-process.css] Service Process Page Styles
============================================ */

/* Timeline Container */
.timeline-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 140px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #333;
}

.timeline-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 20px;
    padding-top: 15px;
}

/* Workflow Section */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.workflow-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.workflow-card.customer .workflow-header {
    background: linear-gradient(135deg, #00a896, #028090);
}

.workflow-card.admin .workflow-header {
    background: linear-gradient(135deg, #ff5722, #e64a19);
}

.workflow-header {
    padding: 20px 25px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.workflow-header i {
    font-size: 28px;
}

.workflow-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.workflow-steps {
    padding: 25px;
}

.wf-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.wf-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.wf-step:last-child {
    border-bottom: none;
}

.wf-step .step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.workflow-card.customer .wf-step .step-num {
    background: #e8f5f3;
    color: #00a896;
}

.workflow-card.admin .wf-step .step-num {
    background: #fbe9e7;
    color: #ff5722;
}

.wf-step.done .step-num {
    background: #4caf50;
    color: #fff;
}

.wf-step .step-text {
    font-size: 14px;
    color: #333;
}

.wf-step.done .step-text {
    font-weight: 700;
    color: #4caf50;
}

/* Process Tabs */
.process-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.process-tab-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Business Steps */
.business-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.biz-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: calc(33.33% - 15px);
    min-width: 280px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.biz-step.animate-in {
    opacity: 1;
    transform: scale(1);
}

.biz-step:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.biz-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color, #00a896);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.biz-step .step-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.biz-step .step-info p {
    margin: 0 0 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.biz-step .customer-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #00a896;
    background: #e8f5f3;
    padding: 4px 10px;
    border-radius: 15px;
}

/* Checkpoint Section */
.checkpoint-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.checkpoint-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.checkpoint-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.checkpoint-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a896, #028090);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-icon i {
    font-size: 24px;
    color: #fff;
}

.checkpoint-item h5 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.checkpoint-item p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* CTA Section - Clean Style */
.cta-section {
    background: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.cta-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 15px;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #00a896 0%, #028090 100%);
    color: #fff;
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.35);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.cta-buttons .btn-outline:hover {
    border-color: #00a896;
    color: #00a896;
}


/* ============================================
   Responsive - Service Process
============================================ */
@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .checkpoint-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .biz-step {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        padding: 5px 0;
    }

    .timeline-item {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .timeline-icon {
        margin-bottom: 0;
    }

    .checkpoint-grid {
        grid-template-columns: 1fr;
    }

    .biz-step {
        width: 100%;
    }

    .process-tabs {
        gap: 8px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h3 {
        font-size: 22px;
    }
}


/* ============================================
   [NEW] Business Process Detail Page Styles
============================================ */

/* Overview Stats */
.process-overview {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 40px;
}

.overview-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 40px;
    opacity: 0.9;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.stat-info span {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

/* Business Steps Grid - Enhanced */
.biz-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.biz-steps-grid .biz-step {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    width: auto;
    opacity: 1;
    transform: none;
}

.biz-steps-grid .biz-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.biz-steps-grid .biz-step:hover .step-number {
    transform: scale(1.15);
}

/* Step Header */
.biz-step .step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
    border-bottom: 3px solid;
}

.biz-step .step-number {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.biz-step .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.biz-step .step-icon i {
    font-size: 22px;
    color: #555;
}

/* Step Body */
.biz-step .step-body {
    padding: 20px;
    flex: 1;
}

.biz-step .step-title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

.biz-step .step-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

.biz-step .step-duration i {
    font-size: 11px;
}

.biz-step .step-desc {
    margin: 0 0 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.biz-step .step-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.biz-step .step-details li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #666;
    padding: 5px 0;
}

.biz-step .step-details li i {
    color: #4CAF50;
    font-size: 11px;
    margin-top: 4px;
}

/* Step Footer */
.biz-step .step-footer {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fc;
    border-top: 1px solid #eee;
}

.biz-step .step-footer .customer-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.biz-step .step-footer .customer-action i {
    color: #00a896;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.pricing-header {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    color: #fff;
    padding: 25px;
    text-align: center;
}

.pricing-header h4 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.pricing-price {
    font-size: 26px;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 25px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #4CAF50;
    font-size: 14px;
}

/* Process CTA Box */
.process-cta .cta-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
}

.process-cta .cta-box h4 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.process-cta .cta-box p {
    margin: 0 0 25px;
    font-size: 15px;
    color: #666;
}

.process-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.process-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.process-cta .btn-primary {
    background: linear-gradient(135deg, #00a896 0%, #028090 100%);
    color: #fff;
    border: none;
}

.process-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.35);
}

.process-cta .btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.process-cta .btn-outline:hover {
    border-color: #00a896;
    color: #00a896;
}

/* Responsive */
@media (max-width: 768px) {

    .process-overview,
    .inner_content section.process-overview {
        padding: 1.5rem;
    }

    .overview-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-item i {
        font-size: 30px;
    }

    .stat-info span {
        font-size: 18px;
    }

    .biz-steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-cta .cta-box {
        padding: 25px 20px;
    }

    .process-cta .cta-box h4 {
        font-size: 20px;
    }
}


/* ============================================
   [NEW] Process Link Cards (Main Page)
============================================ */

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.process-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid var(--card-color, #00a896);
}

.process-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.process-link-card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--card-color, #00a896);
}

.process-link-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-link-card .card-icon i {
    font-size: 24px;
    color: #fff;
}

.process-link-card .card-content {
    flex: 1;
}

.process-link-card .card-subtitle {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-link-card .card-title {
    margin: 3px 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.process-link-card .card-desc {
    margin: 0 0 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.process-link-card .card-meta {
    display: flex;
    gap: 15px;
}

.process-link-card .card-meta span {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.process-link-card .card-meta i {
    font-size: 11px;
}

.process-link-card .card-arrow {
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
    }

    .process-link-card {
        padding: 20px;
    }

    .process-link-card .card-icon {
        width: 50px;
        height: 50px;
    }

    .process-link-card .card-icon i {
        font-size: 20px;
    }

    .process-link-card .card-title {
        font-size: 16px;
    }
}


/* ============================================
   [NEW] Utility Classes (Bootstrap-style)
============================================ */

/* Spacing */
.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-20 {
    margin-left: 20px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.p-50 {
    padding: 50px;
}

.pl-20 {
    padding-left: 20px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-50 {
    gap: 50px;
}

/* Typography */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.font-14 {
    font-size: 14px;
}

.font-18 {
    font-size: 18px;
}

.font-24 {
    font-size: 24px;
}

.font-40 {
    font-size: 40px;
}

.text-lg {
    font-size: 18px;
}

/* Colors */
.text-primary {
    color: var(--primary-color, #00a896);
}

.text-gray {
    color: #666;
}

.text-white {
    color: #fff;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-dark {
    color: #333;
}

.bg-white {
    background: #fff;
}

.bg-light-gray {
    background: #f8f9fc;
}

.bg-dark {
    background: #1a1a2e;
}

.bg-primary {
    background: var(--primary-color, #00a896);
}

.bg-dark-layer {
    background: rgba(255, 255, 255, 0.05);
}

/* Layout */
.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.flex-1 {
    flex: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Border & Radius */
.radius-5 {
    border-radius: 5px;
}

.radius-8 {
    border-radius: 8px;
}

.radius-10 {
    border-radius: 10px;
}

.border-0 {
    border: none;
}

.border-left {
    border-left: 2px solid #ddd;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Positioning */
.position-relative {
    position: relative;
}


/* ============================================
   [NEW] Compact Timeline (기업개요)
============================================ */

.company-history-compact {
    padding: 40px 0;
}

.milestones-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 30px 20px;
}

.milestones-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0 0%, #00a896 100%);
    z-index: 0;
}

.milestone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.milestone-year {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.milestone-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #00a896;
    border-radius: 50%;
    margin-bottom: 10px;
}

.milestone-item.highlight .milestone-dot {
    background: #00a896;
    box-shadow: 0 0 0 5px rgba(0, 168, 150, 0.2);
}

.milestone-text {
    font-size: 14px;
    color: #666;
    max-width: 100px;
}

.btn-link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a896;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-link-more:hover {
    color: #028090;
    gap: 12px;
}


/* ============================================
   [NEW] Service CTA Box (사업영역 통일)
============================================ */

.svc_cta_box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.svc_cta_box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.svc_cta_box p {
    font-size: 15px;
    color: #666;
}

.svc_cta_box .btn_primary,
.svc_cta_box .btn_white_outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.svc_cta_box .btn_primary {
    background: linear-gradient(135deg, #00a896 0%, #028090 100%);
    color: #fff;
    border: none;
}

.svc_cta_box .btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.35);
}

.svc_cta_box .btn_white_outline {
    background: transparent;
    /*color: #333;*/
    border: 2px solid #ddd;
}

.svc_cta_box .btn_white_outline:hover {
    border-color: #00a896;
    color: #00a896;
}

/* Override dark background version */
.svc_cta_box.bg-dark {
    background: #fff;
    border: 1px solid #eee;
}

.svc_cta_box.bg-dark h3,
.svc_cta_box.bg-dark p {
    color: #333;
}

.svc_cta_box.bg-dark p {
    color: #666;
}

.svc_cta_box.bg-dark .btn_white_outline {
    background: linear-gradient(135deg, #00a896 0%, #028090 100%);
    color: #fff;
    border: none;
}

.svc_cta_box.bg-dark .btn_white_outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.35);
}


/* ============================================
   Responsive - New Styles
============================================ */

@media (max-width: 768px) {
    .milestones-row {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }

    .milestones-row::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .milestone-item {
        flex-direction: row;
        gap: 15px;
        text-align: left;
    }

    .milestone-text {
        max-width: none;
    }

    .d-flex.gap-50 {
        flex-direction: column;
        gap: 30px;
    }

    .col-3 {
        grid-template-columns: 1fr;
    }

    .svc_cta_box {
        padding: 30px 20px;
    }

    .svc_cta_box h3 {
        font-size: 20px;
    }
}


/* ============================================
   [NEW] Organization Chart (기업개요)
============================================ */

.org-ceo {
    min-width: 200px;
}

.org-connector {
    height: 30px;
    width: 2px;
    background: #ccc;
    margin: 0 auto;
}

.org-team {
    min-width: 150px;
}

.org-chart .team-box h4 {
    color: #333;
    margin-bottom: 10px;
}

.org-chart .team-box ul {
    font-size: 14px;
    color: #666;
}
.org-chart .team-box ul li{
	text-align:center;
}
/* Intro Grid (기업개요) */
.intro-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.stats_grid.d-grid.col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Teams responsive */
@media (max-width: 768px) {
    .intro-grid {
        flex-direction: column;
    }

    .teams {
        flex-direction: column;
    }

    .org-connector {
        height: 15px;
    }

    .stats_grid.d-grid.col-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Organization Chart Titles */
.org-ceo-title {
    margin: 0;
    color: #fff;
}

.org-team-title {
    color: #333;
    margin-bottom: 10px;
}

.org-team-desc {
    font-size: 14px;
    color: #666;
}

/* Text utilities */
.text-left {
    text-align: left;
}

.line-height-18 {
    line-height: 1.8;
}


/* ============================================
   [NEW] Pricing Page Styles
============================================ */

.mb-60 {
    margin-bottom: 60px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #00a896 0%, #028090 100%);
    border: none;
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 168, 150, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05);
}

.pricing-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-basic {
    background: #718096;
    color: #fff;
}

.badge-popular {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.badge-enterprise {
    background: #2d3748;
    color: #fff;
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.pricing-card.featured .pricing-title {
    color: #fff;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #00a896;
    margin: 20px 0;
}

.pricing-card.featured .pricing-price {
    color: #fff;
}

.price-suffix {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.pricing-card.featured .price-suffix {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 30px 0;
    color: #555;
    line-height: 2;
    flex-grow: 1;
}

.pricing-card.featured .pricing-features {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
    color: #00a896;
    margin-right: 10px;
}

.pricing-card.featured .pricing-features li i {
    color: #fff;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00a896 0%, #028090 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 150, 0.3);
}

.pricing-btn.btn-white {
    background: #fff;
    color: #00a896;
}

.pricing-btn.btn-white:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.pricing-info-box {
    background: #f8f9fc;
    padding: 40px;
    border-radius: 12px;
}

.pricing-info-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.pricing-info-box h4 i {
    color: #00a896;
    margin-right: 10px;
}

.pricing-info-box ul {
    list-style: none;
    padding: 0;
    color: #666;
    line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }

    .pricing-info-box {
        padding: 25px;
    }
}