/* Landing Page Specific Styles */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
    --primary-color: #0046b8;
    /* Premium Blue */
    --secondary-color: #001f54;
    /* Dark Navy */
    --accent-color: #ff3b30;
    /* Alert/Action Red */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --good-green: #2ecc71;
    --warn-yellow: #f1c40f;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Global Reset & Safety */
html,
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.gc-landing-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

.highlight-text {
    color: var(--primary-color);
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #003380);
    color: white;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 70, 184, 0.3);
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 70, 184, 0.4);
}

/* Hero Section */
.hero-landing {
    background: linear-gradient(135deg, #051429 0%, #0a2a5c 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
}

/* Reality Check Table */
.reality-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.reality-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.reality-table th {
    background: var(--text-color);
    color: white;
    padding: 16px;
    text-align: left;
}

.reality-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.reality-table .highlight-cell {
    font-weight: 700;
    background: #f9f9f9;
    color: #333;
    width: 120px;
    text-align: center;
}

.reality-table .common-row td {
    background: #fff5f5;
    color: #c0392b;
}

.common-conclusion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
    /* Changed from 0 auto to 40px auto 0 */
}

.conclusion-box {
    width: 100%;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.alert-box {
    background: #fff0f0;
    border: 1px solid #ffcccc;
}

.alert-box h3 {
    color: #c0392b;
    margin-bottom: 10px;
}

.success-box {
    background: #e8f8f5;
    border: 1px solid #a2d9ce;
    box-shadow: var(--shadow-md);
}

.success-box h3 {
    color: #16a085;
    margin-bottom: 10px;
}

.conclusion-arrow {
    font-size: 24px;
    color: #ccc;
}


/* New Diagnosis Grid */
.diagnosis-new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.diagnosis-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.diagnosis-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diagnosis-card.highlight-card-blue {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border: 1px solid #cce0ff;
}

.d-num {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 16px;
}

.diagnosis-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    min-height: 50px;
}

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

.check-list-sm {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-sm li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.check-list-sm li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    height: 100px;
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    padding-bottom: 10px;
}

.mini-bar {
    width: 30px;
    border-radius: 4px 4px 0 0;
}

.bg-red {
    background: #ff6b6b;
}

.bg-blue {
    background: var(--primary-color);
}


/* Comparison Table */
.comparison-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.vs-badge {
    background: #333;
    color: white;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 20px;
}

.comp-title-left span {
    color: #666;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.comp-title-right span {
    color: var(--primary-color);
    font-size: 14px;
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f0f0f0;
    color: #333;
}

.comparison-table th.best-choice {
    background: var(--primary-color);
    color: white;
}

.comparison-table td.best-choice {
    background: #f0f7ff;
    color: var(--primary-color);
}

.system-feature-box {
    background: #2c3e50;
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-top: 50px;
    text-align: center;
}

.system-feature-box h3 {
    color: #fff;
    margin-bottom: 16px;
}

.sub-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
}

.feature-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 700;
}

.feature-benefits span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
}

/* Case Study Cards */
.case-study-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.case-study-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.case-header {
    min-width: 150px;
    text-align: center;
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 10px;
}

.tag-green {
    background: #27ae60;
}

.tag-yellow {
    background: #f39c12;
}

.tag-blue {
    background: #2980b9;
}

.case-body {
    flex: 1;
}

.case-result-box {
    background: #f0f9ff;
    padding: 12px;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 15px 0;
}

.case-quote {
    font-style: italic;
    color: #666;
    font-size: 14px;
}

/* Process */
.simple-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sp-step {
    background: white;
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 16px;
    width: 200px;
    text-align: center;
}

.sp-step.highlight-step {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 70, 184, 0.15);
}

.sp-num {
    background: #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: bold;
}

.highlight-step .sp-num {
    background: var(--primary-color);
    color: white;
}

.sp-arrow {
    font-size: 24px;
    color: #ccc;
}

.footer-quote {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    background: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

/* Form Styles */
.form-section {
    background: var(--bg-light);
}

.diagnosis-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}


/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .gc-landing-section {
        padding: 50px 0;
        /* Reduce padding */
    }

    .hero-landing {
        padding: 80px 0 60px;
    }

    .hero-landing h1 {
        font-size: 28px !important;
        /* Smaller hero title */
    }

    .hero-landing p {
        font-size: 16px !important;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Reality Table: Convert to Cards or Scroll */
    .reality-table-wrapper {
        box-shadow: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-right: -20px;
        /* Bleed to edge */
        padding-right: 20px;
    }

    .reality-table {
        min-width: 600px;
        /* Ensure scroll */
    }

    /* Common Conclusion */
    .common-conclusion {
        gap: 15px;
    }

    .conclusion-box {
        padding: 15px;
    }

    /* Comparison Table */
    .comparison-header {
        flex-direction: column;
        gap: 15px;
    }

    .vs-badge {
        /* Vertical VS - Rotation removed */
    }

    .comparison-table-wrapper {
        margin-right: -20px;
        padding-right: 20px;
    }

    .comparison-table {
        min-width: 500px;
    }

    /* Case Studies */
    .case-study-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .case-header {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .case-tag {
        margin-bottom: 0;
    }

    /* Process */
    .sp-arrow {
        display: none;
        /* Hide arrows on mobile */
    }

    .simple-process {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .sp-step {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 15px;
        text-align: left;
        gap: 15px;
    }

    .sp-num {
        margin: 0;
        flex-shrink: 0;
    }

    .sp-step h4 {
        margin: 0;
        font-size: 16px;
        flex: 1;
    }

    .sp-step p {
        margin: 0;
        font-size: 14px;
    }

    /* Form */
    .diagnosis-form {
        padding: 24px;
    }

    .btn-cta {
        width: 100%;
        font-size: 16px;
        padding: 14px 20px;
    }
}