/* ==========================================================================
   Suprt Theme - Sub Pages CSS
   회사소개, 회사연혁, 전문가팀, 비전과 미션
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. About - Who We Are
   -------------------------------------------------------------------------- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-intro-image img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-intro-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   2. Mission & Vision Cards
   -------------------------------------------------------------------------- */
.mv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s, transform 0.3s;
}

.mv-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.mv-card .mv-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mv-card .mv-icon.mission {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.mv-card .mv-icon.vision {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
}

.mv-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.mv-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3. Key Stats
   -------------------------------------------------------------------------- */
.key-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.key-stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s;
}

.key-stat-item:hover {
    transform: translateY(-4px);
}

.key-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.key-stat-label {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   4. Timeline (About page)
   -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -0.5rem;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -0.5rem;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. Core Values Grid
   -------------------------------------------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s, transform 0.3s;
}

.value-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.value-card .value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Numbered value card variant */
.value-card .value-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.15);
    margin-bottom: 0.75rem;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   6. History Timeline (Detailed with year groups)
   -------------------------------------------------------------------------- */
.history-timeline {
    position: relative;
    padding: 2rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.history-year-group {
    position: relative;
    margin-bottom: 3rem;
}

.history-year-label {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 2;
}

.history-year-label span {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
}

.history-event {
    position: relative;
    width: 50%;
    padding-bottom: 2rem;
}

.history-event:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.history-event:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 3rem;
}

.history-event-dot {
    position: absolute;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--accent);
    z-index: 1;
}

.history-event:nth-child(odd) .history-event-dot {
    right: -0.375rem;
}

.history-event:nth-child(even) .history-event-dot {
    left: -0.375rem;
}

.history-event-month {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.history-event-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. Stats Header Row
   -------------------------------------------------------------------------- */
.stats-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stats-header-item {
    text-align: center;
}

.stats-header-item .sh-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.stats-header-item .sh-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   8. Future Goals
   -------------------------------------------------------------------------- */
.future-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.future-goal-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.future-goal-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.future-goal-card .goal-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.future-goal-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.future-goal-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   9. Team Grid
   -------------------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.team-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.team-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s, transform 0.3s;
}

.team-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.team-card-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--gray-100);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 1.5rem;
}

.team-card-body .team-role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.team-card-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.team-card-body p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

.team-card-body .team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.team-card-body .team-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. Team Culture Cards
   -------------------------------------------------------------------------- */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.culture-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s, transform 0.3s;
}

.culture-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.culture-card .culture-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.culture-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.culture-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. Vision Block (Image + Content)
   -------------------------------------------------------------------------- */
.vision-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-block.reverse {
    direction: rtl;
}

.vision-block.reverse > * {
    direction: ltr;
}

.vision-block-image img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.vision-block-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.vision-block-content h2 span {
    color: var(--primary);
}

.vision-block-content p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vision-goals {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.vision-goal-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0.75rem;
}

.vision-goal-item .goal-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.vision-goal-item .goal-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.vision-pillar {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border-left: 3px solid var(--primary);
}

.vision-pillar h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.vision-pillar p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Promise cards */
.promise-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.promise-card {
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}

.promise-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.promise-card .promise-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.promise-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.promise-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Roadmap */
.roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.roadmap-item {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}

.roadmap-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.roadmap-item .roadmap-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}

.roadmap-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.roadmap-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-item ul li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.roadmap-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ==========================================================================
   RESPONSIVE - Tablet Portrait (768px~1023px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

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

    .vision-block,
    .vision-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .vision-goals {
        gap: 1rem;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
    }

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

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

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

    .future-goals {
        grid-template-columns: 1fr;
    }

    /* Timeline - single column */
    .timeline::before,
    .history-timeline::before {
        left: 1.5rem;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 3.5rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 1rem;
        right: auto;
    }

    .history-event,
    .history-event:nth-child(odd),
    .history-event:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 3.5rem;
        padding-right: 0;
    }

    .history-event:nth-child(odd) .history-event-dot,
    .history-event:nth-child(even) .history-event-dot {
        left: 1.125rem;
        right: auto;
    }

    .history-year-label {
        justify-content: flex-start;
        padding-left: 3.5rem;
    }
}

/* ==========================================================================
   RESPONSIVE - Mobile (360px~767px)
   ========================================================================== */
@media (min-width: 360px) and (max-width: 767px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .key-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .key-stat-value {
        font-size: 1.75rem;
    }

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

    .team-grid,
    .team-grid.cols-3,
    .team-grid.cols-4 {
        grid-template-columns: 1fr;
    }

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

    .vision-block,
    .vision-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .vision-goals {
        flex-direction: column;
        gap: 1rem;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
    }

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

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

    .stats-header {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stats-header-item .sh-value {
        font-size: 1.75rem;
    }

    .future-goals {
        grid-template-columns: 1fr;
    }

    /* Timeline - mobile single column */
    .timeline::before,
    .history-timeline::before {
        left: 1rem;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 2.5rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 0.5rem;
        right: auto;
    }

    .history-event,
    .history-event:nth-child(odd),
    .history-event:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 2.5rem;
        padding-right: 0;
    }

    .history-event:nth-child(odd) .history-event-dot,
    .history-event:nth-child(even) .history-event-dot {
        left: 0.625rem;
        right: auto;
    }

    .history-year-label {
        justify-content: flex-start;
        padding-left: 2.5rem;
    }

    .vision-block-content h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   RESPONSIVE - Fold/Flip (~359px)
   ========================================================================== */
@media (max-width: 359px) {
    .key-stats {
        grid-template-columns: 1fr;
    }

    .key-stat-value {
        font-size: 1.5rem;
    }

    .stats-header {
        grid-template-columns: 1fr;
    }

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


/* ==========================================================================
   12. FAQ PAGE - Category Tabs & CTA
   ========================================================================== */

/* FAQ Category Tabs */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.faq-tab-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    background-color: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 50rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
}

.faq-tab-btn.active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

/* FAQ Page Section override - wider list */
.faq-page-section .faq-list {
    max-width: 860px;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 4rem;
}

.faq-cta-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
}

.faq-cta-inner > i {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-cta-text {
    flex: 1;
}

.faq-cta-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.faq-cta-text p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.faq-cta-inner .btn {
    flex-shrink: 0;
}


/* ==========================================================================
   13. QNA (1:1 INQUIRY) PAGE
   ========================================================================== */

/* Contact Info Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 1.25rem;
    border-radius: 50%;
}

.contact-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.contact-card-value {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-card-value a {
    color: var(--primary);
}

.contact-card-value a:hover {
    color: var(--primary-dark);
}

.contact-card-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* QnA Form Section */
.qna-form-section {
    padding: 5rem 0;
}

.qna-form-wrapper {
    max-width: 760px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* QnA Notice */
.qna-notice {
    max-width: 760px;
    margin: 2rem auto 0;
}

.qna-notice-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 0.75rem;
}

.qna-notice-inner > i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.qna-notice-inner p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}


/* ==========================================================================
   14. SERVICES (이용 가이드) PAGE
   ========================================================================== */

/* Guide Process - 4-column horizontal steps */
.guide-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.guide-process::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 2px;
    background-color: var(--gray-200);
    z-index: 0;
}

.guide-process .process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.process-step-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Service Category Grid */
.service-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-category-card {
    background-color: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.svc-cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
}

.service-category-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.service-category-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.svc-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.25s ease;
}

.svc-cat-link:hover {
    gap: 0.625rem;
    color: var(--primary-dark);
}

.svc-cat-link i {
    font-size: 0.75rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    background-color: var(--primary);
    color: #fff;
    font-size: 1.25rem;
    border-radius: 50%;
}

.benefit-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Shortcuts */
.faq-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.faq-shortcut-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background-color: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.25s ease;
}

.faq-shortcut-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-shortcut-item i:first-child {
    font-size: 1.125rem;
    color: var(--primary);
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.faq-shortcut-item span {
    flex: 1;
}

.faq-shortcut-item i:last-child {
    font-size: 0.75rem;
    color: var(--gray-400);
    transition: color 0.25s ease, transform 0.25s ease;
}

.faq-shortcut-item:hover i:last-child {
    color: var(--primary);
    transform: translateX(2px);
}


/* ==========================================================================
   15. PRICE PAGE
   ========================================================================== */

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    background-color: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pricing-tab-btn i {
    font-size: 0.875rem;
}

.pricing-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
}

.pricing-tab-btn.active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Pricing Tab Content */
.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
}

/* Pricing Page Section */
.pricing-page-section {
    padding: 5rem 0;
}

/* Discount Grid */
.discount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.discount-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.discount-card.highlight {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.discount-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.discount-rate {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

.discount-rate span {
    font-size: 1.5rem;
    font-weight: 700;
}

.discount-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
    margin-top: 0.25rem;
}

/* Payment Info */
.payment-info {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.payment-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-info h3 i {
    color: var(--primary);
}

.payment-method-list {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-method-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.payment-method-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Price CTA */
.price-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--gray-50);
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.price-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.price-cta p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.price-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ==========================================================================
   RESPONSIVE (Sub Pages: FAQ, QnA, Services, Price) - 992px
   ========================================================================== */

@media (max-width: 992px) {
    /* FAQ CTA */
    .faq-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-inner .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Contact cards */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Form row */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Guide process */
    .guide-process {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-process::before {
        display: none;
    }

    /* Service category */
    .service-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ shortcuts */
    .faq-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Discount */
    .discount-grid {
        max-width: 100%;
    }

    /* Pricing tabs */
    .pricing-tabs {
        gap: 0.375rem;
    }

    .pricing-tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}


/* ==========================================================================
   RESPONSIVE (Sub Pages: FAQ, QnA, Services, Price) - 768px
   ========================================================================== */

@media (max-width: 768px) {
    /* QnA form */
    .qna-form-wrapper {
        padding: 1.75rem;
    }

    /* Guide process */
    .guide-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-process .process-step {
        text-align: left;
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .guide-process .process-number {
        margin: 0;
        flex-shrink: 0;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.125rem;
    }

    /* Service category */
    .service-category-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ shortcuts */
    .faq-shortcuts {
        grid-template-columns: 1fr;
    }

    /* Pricing tabs scrollable */
    .pricing-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pricing-tabs::-webkit-scrollbar {
        display: none;
    }

    .pricing-tab-btn {
        flex-shrink: 0;
    }

    /* Discount */
    .discount-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .discount-rate {
        font-size: 2.25rem;
    }

    /* Payment methods */
    .payment-method-list {
        flex-direction: column;
        align-items: center;
    }

    .payment-method-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Price CTA */
    .price-cta {
        padding: 2rem 1.5rem;
    }

    .price-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .price-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* ==========================================================================
   RESPONSIVE (Sub Pages: FAQ, QnA, Services, Price) - 480px
   ========================================================================== */

@media (max-width: 480px) {
    /* FAQ tabs scrollable on small */
    .faq-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .faq-tab-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    /* FAQ CTA */
    .faq-cta-inner {
        padding: 1.5rem;
    }

    .faq-cta-inner > i {
        font-size: 2rem;
    }

    /* QnA form */
    .qna-form-wrapper {
        padding: 1.25rem;
    }

    /* Contact cards */
    .contact-card {
        padding: 1.5rem 1rem;
    }

    /* Discount */
    .discount-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .discount-rate {
        font-size: 2.5rem;
    }

    /* Pricing tab buttons */
    .pricing-tab-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .pricing-tab-btn i {
        display: none;
    }
}


/* ==========================================================================
   RESPONSIVE (Sub Pages: FAQ, QnA, Services, Price) - 359px
   ========================================================================== */

@media (max-width: 359px) {
    .faq-cta-inner {
        padding: 1.25rem;
    }

    .qna-form-wrapper {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .price-cta {
        padding: 1.5rem 1rem;
    }
}
