.mobile-br { display: none; }
@media (max-width: 767px) {
    .mobile-br { display: inline; }
}

:root {
                /* 브랜드 컬러 - Primary: 따뜻한 골드 (CTA, 강조) */
                --primary: #e8a838;
                --primary-dark: #d4952e;
                --primary-light: #fff8e7;

                /* 브랜드 컬러 - Secondary: 자연 그린 (신뢰, 안전) */
                --secondary: #6baf7a;
                --secondary-dark: #5a9a68;
                --secondary-light: #e8f5e9;

                /* 브랜드 컬러 - Accent: 코랄 (주의 환기) */
                --accent: #e87a5a;
                --accent-dark: #d46a4c;

                /* 배경색 */
                --warm: #fffcf5;
                --warm-deep: #fff3e0;
                --bg: #ffffff;
                --bg-alt: #fbf7f2;
                --bg-cream: #fbf8f0;

                /* 텍스트/UI */
                --text: #3d3229;
                --text-light: #7a6e63;
                --border: #e8ddd2;
                --shadow: 0 4px 20px rgba(61, 50, 41, 0.08);

                /* 레이아웃 */
                --radius: 16px;
                --radius-sm: 10px;
                --radius-lg: 24px;
            }

            html {
                scroll-behavior: smooth;
                scroll-padding-top: 80px;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: "Noto Sans KR", sans-serif;
                background-color: var(--bg-cream);
                color: var(--text);
                line-height: 1.7;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                word-break: keep-all;
                overflow-wrap: break-word;
            }

            .container {
                max-width: 1080px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* GNB Styles */
            #gnb {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                background-color: rgba(255, 255, 255, 0.95);
                transition:
                    background-color 0.3s ease,
                    box-shadow 0.3s ease;
            }

            #gnb.scrolled {
                background-color: rgba(255, 255, 255, 0.98);
                box-shadow: 0 2px 12px rgba(61, 50, 41, 0.08);
            }

            .gnb-container {
                max-width: 1080px;
                margin: 0 auto;
                padding: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .gnb-logo {
                font-size: 24px;
                font-weight: 700;
                color: var(--primary);
                text-decoration: none;
            }

            .gnb-links {
                display: none;
                gap: 32px;
                align-items: center;
            }

            .gnb-links a {
                color: var(--text);
                text-decoration: none;
                font-weight: 500;
                transition: color 0.2s ease;
            }

            .gnb-links a:hover {
                color: var(--primary);
            }

            .gnb-cta {
                background: var(--primary);
                color: white;
                padding: 10px 20px;
                border-radius: var(--radius-sm);
                font-weight: 600;
                transition: background-color 0.2s ease;
            }

            .gnb-cta:hover {
                background: var(--primary-dark);
                color: white;
            }

            .mobile-cta-btn {
                display: flex;
                align-items: center;
                background: var(--primary);
                color: white;
                padding: 8px 16px;
                border-radius: var(--radius-sm);
                font-size: 14px;
                font-weight: 600;
                text-decoration: none;
                white-space: nowrap;
            }

            @media (min-width: 768px) {
                .gnb-links {
                    display: flex;
                }

                .mobile-cta-btn {
                    display: none;
                }
            }

            /* Section Base Styles */
            section {
                padding: 40px 0;
                position: relative;
            }

            .section-label {
                display: block;
                color: var(--primary);
                font-weight: 600;
                font-size: 14px;
                letter-spacing: 1px;
                text-transform: uppercase;
                margin-bottom: 8px;
                line-height: 1;
            }

            .section-title {
                font-size: 32px;
                font-weight: 700;
                line-height: 1.3;
                margin-top: 0;
                margin-bottom: 24px;
                text-wrap: balance;
            }

            .section-subtitle {
                font-size: 18px;
                color: var(--text-light);
                margin-bottom: 40px;
                line-height: 1.6;
            }

            /* Hero Section */
            #hero {
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 120px 20px 40px;
                position: relative;
                overflow: hidden;
                background: url("images/민들레.png") center/cover no-repeat;
            }

            #hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(255, 252, 245, 0.78);
                z-index: 1;
            }

            #hero::after {
                content: "";
                position: absolute;
                inset: 0;
                background:
                    radial-gradient(
                        circle at 20% 30%,
                        rgba(232, 168, 56, 0.08) 0%,
                        transparent 50%
                    ),
                    radial-gradient(
                        circle at 80% 70%,
                        rgba(107, 175, 122, 0.08) 0%,
                        transparent 50%
                    );
                z-index: 2;
            }

            .hero-content {
                position: relative;
                z-index: 10;
                max-width: 800px;
            }

            .hero-headline {
                font-size: 40px;
                font-weight: 800;
                line-height: 1.3;
                margin-bottom: 24px;
                white-space: pre-line;
            }

            .hero-sub {
                font-size: 20px;
                color: var(--text-light);
                margin-bottom: 32px;
                font-weight: 500;
            }

            .hero-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                justify-content: center;
                margin-bottom: 20px;
            }

            @media (max-width: 767px) {
                .hero-tags {
                    display: grid;
                    grid-template-columns: auto auto;
                    justify-content: center;
                }
                #hero {
                    padding-bottom: 80px;
                }
            }

            .hero-tag {
                background: white;
                color: var(--text);
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 500;
                box-shadow: 0 2px 8px rgba(61, 50, 41, 0.06);
            }

            .hero-trust {
                color: var(--secondary-dark);
                font-size: 14px;
                margin-bottom: 40px;
                font-weight: 600;
            }

            .hero-cta {
                display: inline-block;
                background: var(--primary);
                color: white;
                padding: 18px 48px;
                border-radius: var(--radius);
                font-size: 18px;
                font-weight: 700;
                text-decoration: none;
                box-shadow: 0 8px 24px rgba(232, 168, 56, 0.3);
                transition: all 0.3s ease;
                margin-bottom: 16px;
            }

            .hero-cta:hover {
                background: var(--primary-dark);
                transform: translateY(-2px);
                box-shadow: 0 12px 32px rgba(232, 168, 56, 0.4);
            }

            .hero-cta-sub {
                font-size: 14px;
                color: var(--text-light);
                margin-bottom: 8px;
            }

            .hero-earlybird {
                display: inline-block;
                background: var(--accent);
                color: white;
                padding: 6px 16px;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 600;
            }

            .scroll-indicator {
                position: absolute;
                bottom: 40px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 10;
                animation: bounce 2s infinite;
            }

            .scroll-indicator svg {
                width: 24px;
                height: 24px;
                color: var(--primary);
            }

            @media (max-width: 767px) {
                .scroll-indicator {
                    bottom: 12px;
                }
            }

            @keyframes bounce {
                0%,
                20%,
                50%,
                80%,
                100% {
                    transform: translateX(-50%) translateY(0);
                }
                40% {
                    transform: translateX(-50%) translateY(-10px);
                }
                60% {
                    transform: translateX(-50%) translateY(-5px);
                }
            }

            .seed {
                position: absolute;
                width: 6px;
                height: 6px;
                background: var(--primary);
                border-radius: 50%;
                opacity: 0.6;
                pointer-events: none;
                animation: float-seed 8s linear forwards;
                z-index: 5;
            }

            @keyframes float-seed {
                0% {
                    transform: translate(0, 0) rotate(0deg);
                    opacity: 0.6;
                }
                100% {
                    transform: translate(var(--dx), var(--dy)) rotate(360deg);
                    opacity: 0;
                }
            }

            /* Problem Section */
            #problem {
                background: var(--bg);
            }

            .problem-text {
                max-width: 700px;
                margin: 0 auto;
                font-size: 17px;
                line-height: 1.8;
            }

            .problem-text p {
                margin-bottom: 20px;
            }

            .emphasis-block {
                background: var(--primary-light);
                border-left: 4px solid var(--primary);
                padding: 24px;
                margin: 40px 0;
                border-radius: var(--radius-sm);
            }

            .emphasis-block p {
                font-size: 18px;
                font-weight: 600;
                color: var(--text);
                margin: 0;
            }

            /* Perspective Section */
            #perspective {
                background: var(--bg-alt);
            }

            .perspective-body {
                max-width: 700px;
                margin: 0 auto 48px;
                font-size: 17px;
                line-height: 1.8;
                text-align: center;
                text-wrap: balance;
            }

            .vs-container {
                display: grid;
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 800px;
                margin: 0 auto 48px;
            }

            .vs-card {
                background: white;
                border-radius: var(--radius);
                padding: 32px;
                box-shadow: var(--shadow);
            }

            .vs-card-label {
                font-size: 14px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 12px;
            }

            .vs-card-label.ai {
                color: var(--accent);
            }

            .vs-card-label.human {
                color: var(--secondary);
            }

            .vs-card-title {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 16px;
            }

            .vs-card-desc {
                color: var(--text-light);
                line-height: 1.7;
            }

            .quote-block {
                background: white;
                border-radius: var(--radius);
                padding: 32px;
                max-width: 700px;
                margin: 0 auto 40px;
                box-shadow: var(--shadow);
                border-left: 4px solid var(--secondary);
            }

            .quote-block p {
                font-size: 17px;
                font-style: italic;
                line-height: 1.8;
                margin: 0;
            }

            .video-link {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                color: var(--primary);
                text-decoration: none;
                font-weight: 600;
                margin-bottom: 32px;
                transition: color 0.2s ease;
            }

            .video-link:hover {
                color: var(--primary-dark);
            }

            .video-link svg {
                width: 20px;
                height: 20px;
            }

            .soft-cta {
                text-align: center;
                padding: 32px;
                background: var(--secondary-light);
                border-radius: var(--radius);
                max-width: 600px;
                margin: 0 auto;
            }

            .soft-cta a {
                display: inline-block;
                background: var(--secondary);
                color: white;
                padding: 14px 32px;
                border-radius: var(--radius-sm);
                text-decoration: none;
                font-weight: 600;
                transition: background-color 0.2s ease;
            }

            .soft-cta a:hover {
                background: var(--secondary-dark);
            }

            @media (min-width: 768px) {
                .vs-container {
                    grid-template-columns: 1fr 1fr;
                }
            }

            /* Solution Section */
            #solution {
                background: var(--bg);
            }

            .solution-intro {
                max-width: 700px;
                margin: 0 auto 64px;
                font-size: 17px;
                line-height: 1.8;
                text-align: center;
                text-wrap: balance;
            }

            .process-steps {
                max-width: 900px;
                margin: 0 auto 64px;
                position: relative;
            }

            .steps-container {
                display: flex;
                flex-direction: column;
                gap: 32px;
            }

            .step-item {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                position: relative;
            }

            .step-circle {
                flex-shrink: 0;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: var(--primary);
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 28px;
                font-weight: 700;
                box-shadow: 0 4px 16px rgba(232, 168, 56, 0.3);
            }

            .step-content {
                flex: 1;
                padding-top: 12px;
            }

            .step-title {
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 8px;
            }

            .step-desc {
                color: var(--text-light);
                line-height: 1.7;
            }

            .step-item:not(:last-child)::after {
                content: "";
                position: absolute;
                left: 40px;
                top: 80px;
                width: 2px;
                height: calc(100% + 32px);
                background: linear-gradient(
                    to bottom,
                    var(--primary) 0%,
                    var(--border) 100%
                );
            }

            .external-link {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                color: var(--primary);
                text-decoration: none;
                font-weight: 600;
                margin-bottom: 32px;
                transition: color 0.2s ease;
            }

            .external-link:hover {
                color: var(--primary-dark);
            }

            .external-link svg {
                width: 18px;
                height: 18px;
            }

            .section-cta {
                text-align: center;
                margin-top: 40px;
            }

            .section-cta a {
                display: inline-block;
                background: var(--primary);
                color: white;
                padding: 16px 40px;
                border-radius: var(--radius-sm);
                text-decoration: none;
                font-weight: 600;
                font-size: 17px;
                transition: all 0.2s ease;
            }

            .section-cta a:hover {
                background: var(--primary-dark);
                transform: translateY(-2px);
            }

            /* Pricing Section */
            .pricing-grid {
                display: flex;
                flex-direction: column;
                gap: 24px;
                max-width: 800px;
                margin: 0 auto 48px;
            }

            @media (min-width: 768px) {
                .steps-container {
                    flex-direction: row;
                    justify-content: space-between;
                    gap: 16px;
                }

                .step-item {
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    flex: 1;
                    gap: 16px;
                }

                .step-content {
                    padding-top: 0;
                }

                .step-item:not(:last-child)::after {
                    left: calc(50% + 40px);
                    top: 40px;
                    width: calc(100% - 80px);
                    height: 2px;
                    background: linear-gradient(
                        to right,
                        var(--primary) 0%,
                        var(--border) 100%
                    );
                }

                .pricing-grid {
                    flex-direction: row;
                }
            }

            /* Difference Section */
            #difference {
                background: var(--warm-deep);
            }

            .diff-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 900px;
                margin: 0 auto;
            }

            .diff-card {
                background: white;
                border-radius: var(--radius);
                padding: 32px;
                box-shadow: var(--shadow);
                transition: all 0.3s ease;
            }

            .diff-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 32px rgba(61, 50, 41, 0.12);
            }

            .diff-card h3 {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 16px;
                color: var(--primary);
            }

            .diff-card p {
                color: var(--text-light);
                line-height: 1.7;
                margin-bottom: 16px;
            }

            .diff-card img {
                width: 100%;
                border-radius: var(--radius-sm);
                margin-top: 16px;
            }

            .diff-card-featured {
                grid-column: 1 / -1;
                display: flex;
                align-items: center;
                gap: 32px;
            }

            .diff-card-featured .featured-text {
                flex: 1;
            }

            .diff-card-featured img {
                flex: 0 0 280px;
                max-height: 220px;
                object-fit: cover;
                margin-top: 0;
            }

            @media (max-width: 767px) {
                .diff-card-featured {
                    flex-direction: column;
                }

                .diff-card-featured img {
                    flex: none;
                    width: 100%;
                    max-height: 200px;
                }
            }

            @media (min-width: 768px) {
                .diff-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            /* ===== Preview: 교육자료 미리보기 ===== */

            .preview-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                margin-bottom: 40px;
            }

            .preview-card {
                background: white;
                border-radius: var(--radius);
                padding: 32px;
                box-shadow: var(--shadow);
                transition: all 0.3s ease;
                text-decoration: none;
                color: inherit;
                display: flex;
                flex-direction: column;
                border: 2px solid transparent;
            }

            .preview-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 32px rgba(61, 50, 41, 0.12);
                border-color: var(--primary);
            }

            .preview-card-icon {
                font-size: 40px;
                margin-bottom: 16px;
                line-height: 1;
            }

            .preview-card-title {
                font-size: 20px;
                font-weight: 700;
                color: var(--text);
                margin-bottom: 8px;
            }

            .preview-card-desc {
                font-size: 15px;
                color: var(--text-light);
                line-height: 1.6;
                flex: 1;
            }

            .preview-card-badge {
                display: inline-block;
                margin-top: 16px;
                padding: 4px 12px;
                background: var(--primary-light);
                color: var(--primary-dark);
                border-radius: 20px;
                font-size: 13px;
                font-weight: 600;
                width: fit-content;
            }

            .preview-cta-wrap {
                text-align: center;
                margin-bottom: 24px;
            }

            .preview-cta {
                display: inline-block;
                padding: 14px 36px;
                background: var(--secondary);
                color: white;
                border-radius: var(--radius-sm);
                font-size: 17px;
                font-weight: 700;
                text-decoration: none;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(107, 175, 122, 0.3);
            }

            .preview-cta:hover {
                background: var(--secondary-dark);
                transform: translateY(-2px);
                box-shadow: 0 4px 16px rgba(107, 175, 122, 0.4);
            }

            .preview-cta-sub {
                margin-top: 12px;
                font-size: 14px;
                color: var(--text-light);
            }

            .preview-note {
                text-align: center;
                font-size: 15px;
                color: var(--text-light);
                font-style: italic;
            }

            @media (max-width: 768px) {
                .preview-grid {
                    display: flex;
                    overflow-x: auto;
                    overflow-y: hidden;
                    scroll-snap-type: x mandatory;
                    -webkit-overflow-scrolling: touch;
                    gap: 16px;
                    scrollbar-width: none;
                    margin-bottom: 0;
                }
                .preview-grid::-webkit-scrollbar {
                    display: none;
                }
                .preview-card {
                    flex: 0 0 100%;
                    max-width: 100%;
                    scroll-snap-align: start;
                }
            }

            /* Method Section */
            #method {
                background: var(--bg-alt);
            }

            .method-info-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                justify-content: center;
                margin-bottom: 48px;
            }

            .info-tag {
                background: var(--primary-light);
                color: var(--primary-dark);
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 600;
            }

            .tabs {
                max-width: 600px;
                margin: 0 auto 48px;
                display: flex;
                gap: 16px;
                align-items: stretch;
            }

            .tab-buttons {
                display: flex;
                flex-direction: column;
                gap: 0;
                flex-shrink: 0;
            }

            .tab-button {
                position: relative;
                background: transparent;
                border: none;
                border-left: 3px solid transparent;
                color: var(--text-light);
                padding: 8px 16px;
                border-radius: 0;
                font-size: 15px;
                font-weight: 400;
                cursor: pointer;
                transition: all 0.2s ease;
                text-align: left;
                white-space: nowrap;
            }

            .tab-button[aria-selected="true"] {
                border-left-color: var(--primary);
                background: transparent;
                color: var(--text);
                font-weight: 700;
                z-index: 1;
            }

            .tab-button[aria-selected="true"]::after {
                content: "";
                position: absolute;
                top: 50%;
                right: -16px;
                width: 16px;
                height: 2px;
                background: var(--primary);
                transform: translateY(-50%);
            }

            .tab-button:hover:not([aria-selected="true"]) {
                background: rgba(0, 0, 0, 0.03);
                color: var(--text);
            }

            .tab-button--open {
                color: var(--secondary, #f57c00);
                font-style: italic;
                opacity: 0.75;
            }
            .tab-button--open[aria-selected="true"] {
                border-left-color: var(--secondary, #f57c00);
                color: var(--secondary, #f57c00);
            }
            .tab-button--open[aria-selected="true"]::after {
                background: var(--secondary, #f57c00);
            }

            .tab-panels {
                flex: 1;
                min-width: 0;
                background: white;
                border: 1px solid var(--border);
                border-radius: var(--radius);
                box-shadow: var(--shadow);
            }

            .tab-content {
                display: none;
                padding: 28px;
            }

            .tab-content.active {
                display: block;
                animation: tabFadeIn 0.3s ease;
            }

            @keyframes tabFadeIn {
                from { opacity: 0; transform: translateY(4px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .tab-title-mobile {
                display: none;
            }

            .tab-content p {
                color: var(--text-light);
                line-height: 1.8;
            }

            .module-week-note {
                text-align: center;
                color: var(--text-light);
                font-size: 15px;
                line-height: 1.8;
                margin-bottom: 8px;
            }

            @media (max-width: 767px) {
                .tabs {
                    gap: 12px;
                }

                .tab-button {
                    padding: 8px 12px;
                    font-size: 14px;
                }

                .tab-button[aria-selected="true"]::after {
                    right: -12px;
                    width: 12px;
                }

                .tab-content {
                    padding: 20px;
                }
            }

            .session-infographic {
                max-width: 700px;
                margin: 0 auto;
                text-align: center;
            }
            .session-infographic h3 {
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 24px;
            }
            .session-infographic img {
                width: 100%;
                height: auto;
                border-radius: var(--radius);
                box-shadow: var(--shadow);
            }

            .session-infographic img {
                cursor: zoom-in;
            }

            .infographic-hint {
                text-align: center;
                font-size: 0.8rem;
                color: var(--text-light);
                margin-top: 8px;
                opacity: 0.7;
            }

            /* 60분 세션 타임라인 */
            .session-timeline {
                max-width: 640px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: 0;
                text-align: left;
            }
            .timeline-item {
                display: grid;
                grid-template-columns: 64px 24px 1fr;
                gap: 0 12px;
                min-height: 100px;
            }
            .timeline-time {
                font-size: 14px;
                font-weight: 600;
                color: var(--text-light);
                text-align: right;
                padding-top: 18px;
                line-height: 1;
            }
            .timeline-marker {
                display: flex;
                flex-direction: column;
                align-items: center;
                position: relative;
            }
            .timeline-marker::before {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                background: #e0e0e0;
            }
            .timeline-item:first-child .timeline-marker::before {
                top: 20px;
            }
            .timeline-item:last-child .timeline-marker::before {
                bottom: calc(100% - 28px);
            }
            .timeline-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: #ccc;
                border: 2px solid #fff;
                position: relative;
                z-index: 1;
                margin-top: 16px;
                flex-shrink: 0;
            }
            .timeline-content {
                background: var(--card-bg, #fff);
                border: 1px solid #eee;
                border-radius: var(--radius);
                padding: 16px 20px;
                margin-bottom: 12px;
            }
            .timeline-content h4 {
                font-size: 16px;
                font-weight: 700;
                margin: 0 0 6px;
                color: var(--text);
            }
            .timeline-content p {
                font-size: 14px;
                line-height: 1.6;
                color: var(--text-light);
                margin: 0;
            }

            /* 실습(핵심) 강조 */
            .timeline-item--main .timeline-dot {
                width: 16px;
                height: 16px;
                background: var(--primary);
                border: 3px solid var(--primary-light, #e8f5e9);
                margin-top: 14px;
            }
            .timeline-item--main .timeline-time {
                color: var(--primary);
                font-size: 15px;
                font-weight: 700;
            }
            .timeline-item--main .timeline-content {
                border-color: var(--primary);
                border-width: 2px;
                box-shadow: var(--shadow);
            }
            .timeline-item--main .timeline-content h4 {
                color: var(--primary);
            }

            /* 사고 프로세스 순환 태그 */
            .thinking-cycle {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 4px;
                margin-top: 12px;
            }
            .thinking-tag {
                display: inline-block;
                background: var(--primary-light, #e8f5e9);
                color: var(--primary);
                font-size: 12px;
                font-weight: 600;
                padding: 4px 10px;
                border-radius: 20px;
            }
            .thinking-arrow {
                color: var(--text-light);
                font-size: 13px;
                opacity: 0.5;
            }
            .module-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 6px;
                margin-top: 10px;
            }
            .module-tag {
                font-size: 12px;
                font-weight: 600;
                padding: 4px 12px;
                border-radius: 20px;
                background: var(--secondary-light, #fff3e0);
                color: var(--secondary, #f57c00);
                border: 1px solid var(--secondary, #f57c00);
                opacity: 0.85;
            }
            .module-tag--open {
                background: transparent;
                border-style: dashed;
                opacity: 0.7;
            }
            .thinking-arrow--loop {
                font-size: 18px;
                color: var(--primary);
                opacity: 0.7;
                margin-left: 2px;
            }

            .lightbox-overlay {
                position: fixed;
                inset: 0;
                z-index: 9999;
                background: rgba(0, 0, 0, 0.85);
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                visibility: hidden;
                transition:
                    opacity 0.3s ease,
                    visibility 0.3s ease;
                cursor: zoom-out;
                padding: 20px;
            }
            .lightbox-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            .lightbox-overlay img {
                max-width: 95vw;
                max-height: 90vh;
                object-fit: contain;
                border-radius: var(--radius-sm);
                transform: scale(0.9);
                transition: transform 0.3s ease;
            }
            .lightbox-overlay.active img {
                transform: scale(1);
            }
            .lightbox-close {
                position: absolute;
                top: 16px;
                right: 20px;
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.15);
                border: none;
                border-radius: 50%;
                color: white;
                font-size: 24px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background 0.2s;
            }
            .lightbox-close:hover {
                background: rgba(255, 255, 255, 0.3);
            }

            /* Scroll Reveal */
            .reveal {
                opacity: 0;
                transform: translateY(30px);
                transition:
                    opacity 0.6s ease,
                    transform 0.6s ease;
            }

            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .reveal-delay-1 {
                transition-delay: 0.1s;
            }

            .reveal-delay-2 {
                transition-delay: 0.2s;
            }

            .reveal-delay-3 {
                transition-delay: 0.3s;
            }

            /* Highlight Underline Effect */
            .highlight {
                position: relative;
                display: inline-block;
            }

            .highlight::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 2px;
                width: 100%;
                height: 8px;
                background: rgba(232, 168, 56, 0.3);
                z-index: -1;
            }

            /* Focus Visible - 키보드 접근성 */
            a:focus-visible,
            button:focus-visible,
            [tabindex]:focus-visible {
                outline: 2px solid var(--primary);
                outline-offset: 2px;
                border-radius: var(--radius-sm);
            }

            /* Reduced Motion */
            @media (prefers-reduced-motion: reduce) {
                *,
                *::before,
                *::after {
                    animation-duration: 0.01ms !important;
                    animation-iteration-count: 1 !important;
                    transition-duration: 0.01ms !important;
                }
            }

            @media (min-width: 768px) {
                .section-title {
                    font-size: 42px;
                }

                .hero-headline {
                    font-size: 52px;
                }

                section {
                    padding: 50px 0;
                }
            }

            @media (min-width: 1024px) {
                .container {
                    padding: 0 40px;
                }
            }
            .video-embed {
                position: relative;
                width: 100%;
                max-width: 640px;
                margin: 0 auto 32px;
                aspect-ratio: 16 / 9;
                border-radius: var(--radius);
                overflow: hidden;
                box-shadow: var(--shadow);
            }

            .video-embed iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: 0;
            }

            /* 카운터 숫자 강조 (CTA 서브텍스트 내) */
            .count-highlight {
                font-weight: 800;
                font-size: 1.1em;
                color: var(--primary);
            }
            .count-highlight--light {
                color: white;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            }
            /* 등록 확정 카운터 강조 */
            .count-confirmed {
                font-weight: 800;
                font-size: 1.1em;
                color: var(--secondary);
            }
            .count-confirmed--light {
                color: #a8e6a0;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            }
            .cta-sub-process {
                display: inline-block;
                margin-top: 4px;
                font-size: 0.9em;
                opacity: 0.85;
            }

            /* 모집 상태별 CTA 스타일 */
            .cta-status-waiting {
                background: var(--secondary) !important;
                color: white !important;
            }
            .cta-status-closed {
                background: var(--text-light) !important;
                color: white !important;
                pointer-events: none;
                opacity: 0.7;
            }

            /* 상태 배지 */
            .status-badge {
                display: inline-block;
                padding: 6px 16px;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 700;
            }
            .status-badge--open {
                background: rgba(107, 175, 122, 0.15);
                color: var(--secondary-dark);
            }
            .status-badge--waiting {
                background: rgba(232, 168, 56, 0.15);
                color: var(--primary-dark);
            }
            .status-badge--closed {
                background: rgba(122, 110, 99, 0.15);
                color: var(--text-light);
            }

            /* 맨위로 버튼 - PC 전용 */
            .scroll-top {
                display: none;
                position: fixed;
                bottom: 32px;
                right: 32px;
                width: 44px;
                height: 44px;
                border-radius: 50%;
                border: 1px solid var(--border);
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(8px);
                color: var(--text);
                font-size: 20px;
                cursor: pointer;
                z-index: 997;
                opacity: 0;
                transform: translateY(8px);
                transition:
                    opacity 0.3s,
                    transform 0.3s,
                    background 0.2s;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 12px rgba(61, 50, 41, 0.1);
            }
            .scroll-top.visible {
                opacity: 1;
                transform: translateY(0);
            }
            .scroll-top:hover {
                background: var(--primary-light);
                border-color: var(--primary);
            }
            @media (min-width: 768px) {
                .scroll-top {
                    display: flex;
                }
            }

            /* 플로팅 네비게이션 - 모바일 전용 */
            .float-nav {
                display: none;
                position: fixed;
                bottom: 24px;
                right: 20px;
                z-index: 998;
                flex-direction: column;
                align-items: flex-end;
            }
            .float-nav-btn {
                width: 52px;
                height: 52px;
                padding: 0;
                border-radius: 50%;
                background: var(--primary);
                color: white;
                border: none;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                transition:
                    transform 0.2s ease,
                    background 0.2s ease;
                font-size: 13px;
                font-weight: 600;
                line-height: 1.2;
            }
            .float-nav-btn:active {
                transform: scale(0.95);
            }
            .float-nav-menu {
                display: flex;
                flex-direction: column;
                gap: 4px;
                background: white;
                border-radius: 12px;
                padding: 8px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
                opacity: 0;
                transform: translateY(8px) scale(0.95);
                pointer-events: none;
                transition:
                    opacity 0.2s ease,
                    transform 0.2s ease;
                position: absolute;
                right: 0;
                bottom: calc(100% + 8px);
            }
            .float-nav.active .float-nav-menu {
                opacity: 1;
                transform: translateY(0) scale(1);
                pointer-events: auto;
            }
            .float-nav-item {
                display: block;
                padding: 10px 16px;
                color: var(--text);
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                border-radius: 8px;
                white-space: nowrap;
                transition: background 0.15s ease;
            }
            .float-nav-item:hover,
            .float-nav-item:active {
                background: var(--primary-light);
            }
            @media (max-width: 767px) {
                .float-nav {
                    display: flex;
                }
            }

            /* Video Summary Accordion */
            .video-summary {
                max-width: 640px;
                margin: 0 auto;
                background: white;
                border-radius: var(--radius);
                box-shadow: var(--shadow);
                overflow: hidden;
            }
            .video-summary-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                padding: 18px 24px;
                font-size: 15px;
                font-weight: 600;
                color: var(--secondary-dark);
                cursor: pointer;
                list-style: none;
                transition: background 0.2s ease;
            }
            .video-summary-toggle::-webkit-details-marker {
                display: none;
            }
            .video-summary-toggle::before {
                content: "";
                display: inline-block;
                width: 8px;
                height: 8px;
                border-right: 2px solid var(--secondary-dark);
                border-bottom: 2px solid var(--secondary-dark);
                transform: rotate(-45deg);
                transition: transform 0.25s ease;
                flex-shrink: 0;
            }
            .video-summary[open] > .video-summary-toggle::before {
                transform: rotate(45deg);
            }
            .video-summary-toggle:hover {
                background: var(--secondary-light);
            }
            .video-summary-content {
                padding: 0 24px 24px;
                text-align: left;
            }
            .video-summary-speaker {
                font-size: 13px;
                color: var(--text-light);
                margin-bottom: 16px;
                padding-bottom: 12px;
                border-bottom: 1px solid #eee;
            }
            .video-summary-points {
                display: flex;
                flex-direction: column;
                gap: 8px;
                margin-bottom: 20px;
            }
            .video-summary-point {
                border-radius: var(--radius-sm);
                background: var(--bg-alt);
                overflow: hidden;
            }
            .video-summary-point > summary {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 14px 16px;
                font-size: 15px;
                font-weight: 600;
                color: var(--text);
                cursor: pointer;
                list-style: none;
                transition: background 0.2s ease;
            }
            .video-summary-point > summary::-webkit-details-marker {
                display: none;
            }
            .video-summary-point > summary::before {
                content: "";
                display: inline-block;
                width: 6px;
                height: 6px;
                border-right: 2px solid var(--secondary);
                border-bottom: 2px solid var(--secondary);
                transform: rotate(-45deg);
                transition: transform 0.25s ease;
                flex-shrink: 0;
            }
            .video-summary-point[open] > summary::before {
                transform: rotate(45deg);
            }
            .video-summary-point > summary:hover {
                background: var(--secondary-light);
            }
            .video-summary-detail {
                padding: 0 16px 16px 32px;
                font-size: 14px;
                line-height: 1.85;
                color: var(--text-light);
            }
            .video-summary-detail p {
                margin: 0 0 12px;
            }
            .video-summary-detail p:last-child {
                margin-bottom: 0;
            }
            .video-summary-detail strong {
                color: var(--text);
            }
            .video-summary-quote {
                margin: 0;
                padding: 16px 20px;
                background: var(--bg-alt);
                border-left: 3px solid var(--secondary);
                border-radius: var(--radius-sm);
                font-size: 14px;
                font-style: italic;
                line-height: 1.8;
                color: var(--text-light);
            }
            .video-summary-quote cite {
                display: block;
                margin-top: 8px;
                font-style: normal;
                font-weight: 600;
                font-size: 13px;
                color: var(--text);
            }
            @media (max-width: 767px) {
                .video-summary-toggle {
                    padding: 14px 16px;
                    font-size: 14px;
                }
                .video-summary-content {
                    padding: 0 16px 16px;
                }
                .video-summary-point > summary {
                    padding: 12px 14px;
                    font-size: 14px;
                }
                .video-summary-detail {
                    padding: 0 14px 14px 26px;
                    font-size: 13px;
                }
                .video-summary-quote {
                    padding: 14px 16px;
                    font-size: 13px;
                }
            }

            /* Testimonial Section */
            .testimonial-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 16px;
                margin-top: 48px;
                padding-bottom: 8px;
                scrollbar-width: none;
            }
            .testimonial-grid::-webkit-scrollbar {
                display: none;
            }
            .testimonial-card {
                background: var(--bg);
                border-radius: var(--radius);
                box-shadow: var(--shadow);
                padding: 32px;
                display: flex;
                flex-direction: column;
                flex: 0 0 100%;
                max-width: 100%;
                scroll-snap-align: start;
            }
            @media (min-width: 768px) {
                .testimonial-grid {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    overflow-x: visible;
                    scroll-snap-type: none;
                    gap: 28px;
                }
                .testimonial-card {
                    flex: unset;
                    max-width: none;
                    min-width: auto;
                    scroll-snap-align: unset;
                }
            }
            .testimonial-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
            }
            .testimonial-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: var(--border);
                border: none;
                padding: 0;
                cursor: pointer;
                transition: background 0.3s ease;
            }
            .testimonial-dot.active {
                background: var(--primary);
            }
            @media (min-width: 768px) {
                .testimonial-dots {
                    display: none;
                }
            }
            .testimonial-quote {
                font-size: 36px;
                line-height: 1;
                color: var(--primary);
                font-family: Georgia, serif;
                margin-bottom: 12px;
            }
            .testimonial-text {
                font-size: 15px;
                line-height: 1.8;
                color: var(--text);
                flex: 1;
            }
            .testimonial-author {
                margin-top: 24px;
                padding-top: 16px;
                border-top: 1px solid var(--border);
                display: flex;
                flex-direction: column;
                gap: 4px;
            }
            .testimonial-author strong {
                font-size: 15px;
                font-weight: 600;
                color: var(--text);
            }
            .testimonial-author span {
                font-size: 13px;
                color: var(--text-light);
            }

            /* Independence Before/After cards - mobile */
            @media (max-width: 767px) {
                .independence-change-card {
                    flex-direction: column !important;
                    gap: 12px !important;
                }
                .independence-arrow {
                    transform: rotate(90deg);
                    justify-content: center !important;
                }
            }

/* Accessibility */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
}
.skip-to-content:focus {
    left: 16px;
}

/* Solution + Independence merge */
.solution-graduation {
    max-width: 700px;
    margin: 48px auto 32px;
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
}
.solution-graduation p + p {
    margin-top: 12px;
}
.solution-change-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.solution-change-title {
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    color: var(--text);
}
.solution-change-card {
    padding: 28px 32px;
}
.independence-change-card {
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.change-state {
    flex: 1;
    border-radius: 8px;
    padding: 20px;
}
.change-state--from {
    background: #f8f8f8;
}
.change-state--to {
    background: var(--primary-light);
}
.change-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.change-state--from .change-label {
    color: var(--text-light);
}
.change-state--to .change-label {
    color: var(--primary);
}
.change-state p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}
.change-state--from p {
    color: #888;
}
.change-state--to p {
    color: var(--text);
    font-weight: 500;
}
.change-desc {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 4px;
}
.change-arrow {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.solution-change-wrap .solution-change-card + .solution-change-card {
    margin-top: 20px;
}
.solution-observe-block {
    max-width: 700px;
    margin: 48px auto 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}
.solution-observe-block strong {
    color: var(--text);
}
.solution-observe-block hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px auto;
    max-width: 120px;
}
.solution-observe-duration {
    font-size: 15px;
}

/* -- 자립 변화 캐러셀 (모바일) -- */
@media (max-width: 768px) {
    .change-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        scrollbar-width: none;
    }
    .change-carousel::-webkit-scrollbar {
        display: none;
    }
    .change-carousel .solution-change-card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: start;
    }
    .change-carousel .solution-change-card + .solution-change-card {
        margin-top: 0;
    }
}

/* -- 캐러셀 dot 인디케이터 -- */
.change-dots,
.preview-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 28px;
}
.change-dot,
.preview-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 28px;
    text-align: center;
}
.change-dot.active,
.preview-dot.active {
    background: var(--primary);
    color: white;
}
@media (min-width: 769px) {
    .change-dots,
    .preview-dots {
        display: none;
    }
}

/* Utility classes */
.card,
.card-32 {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.card-alt {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-center {
    text-align: center;
}
.gap-sm {
    gap: 8px;
}
.gap-md {
    gap: 16px;
}
.gap-lg {
    gap: 24px;
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}
.step-number--primary {
    background: var(--primary);
}
.step-number--secondary {
    background: var(--secondary);
}
.text-sm {
    font-size: 14px;
}
.text-muted {
    opacity: 0.7;
}
.font-bold {
    font-weight: 700;
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    .tab-buttons {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 12px;
        border-right: none;
        border-bottom: 2px solid var(--border);
    }
    .tab-button {
        white-space: nowrap;
        padding: 8px 16px;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
    }
    .tab-button[aria-selected="true"] {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
    }
    .tab-button[aria-selected="true"]::after {
        display: none;
    }
    .tab-content {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .float-nav {
        bottom: 24px;
        right: 16px;
    }
    #pricing .pricing-step {
        padding-right: 60px;
    }
    .independence-change-card {
        flex-direction: column;
        gap: 12px;
    }
    .change-arrow {
        transform: rotate(90deg);
        justify-content: center;
    }
}

/* Inline Style Utilities */
.faq-answer-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-text {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    line-height: 1.7;
}
.text-lg-semibold {
    font-size: 18px;
    font-weight: 600;
}
.row-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon-style {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.icon-secondary,
.icon-secondary-top {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}
.faq-item-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    cursor: pointer;
}
.mb-12 {
    margin-bottom: 12px;
}
.text-primary-note {
    font-size: 14px;
    color: var(--primary);
    margin-top: 12px;
    font-weight: 600;
}
.list-row-divider,
.list-row {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.list-row-divider {
    border-bottom: 1px solid var(--border);
}
.nowrap {
    white-space: nowrap;
}
.text-muted-17 {
    color: var(--text-light);
    line-height: 1.7;
}
.link-primary-underline {
    color: var(--primary);
    text-decoration: underline;
}
.list-row-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.icon-secondary-top {
    margin-top: 2px;
}
.text-sm-muted-mb8 {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.text-sm-medium-muted {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}
.text-xl-bold-mb4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.flex-1 {
    flex: 1;
}
.list-reset-mb20 {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.subheading-green {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 4px;
    margin-top: 0;
}
.list-muted {
    list-style: none;
    padding: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== Journey: 여정 가이드 ==================== */
.journey-disclaimer {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}
.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 32px;
}
.journey-step {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
}
.journey-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.journey-step-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
}
.journey-step-session {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.journey-step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}
.journey-cta-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--text);
    margin-bottom: 16px;
}
.journey-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(232, 168, 56, 0.25);
    transition: all 0.3s ease;
}
.journey-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 168, 56, 0.35);
}

@media (max-width: 767px) {
    .journey-timeline {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .journey-step {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        column-gap: 14px;
        text-align: left;
        padding: 16px;
    }
    .journey-step-number {
        grid-row: 1 / 3;
        align-self: center;
        margin: 0;
    }
    .journey-step-name {
        font-size: 16px;
        margin: 0;
    }
    .journey-step-session {
        justify-self: start;
        margin-bottom: 0;
    }
    .journey-step-desc {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}

/* ==================== Age Examples: 연령별 예시 ==================== */
.age-examples {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.age-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 4px;
    vertical-align: middle;
}
.age-label--elem {
    background: var(--secondary-light);
    color: var(--secondary-dark);
}
.age-label--mid {
    background: #e3f0fc;
    color: #3a7bbf;
}

/* ==================== Why: 왜 시작했는가 ==================== */
#why {
    background: var(--warm);
}
.why-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}
.why-content p {
    margin-bottom: 16px;
}
.why-highlight {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin: 32px 0;
}

/* Tutor 스토리 인트로 */
.tutor-story-intro {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

/* Tutor 경력 더보기 */
.tutor-details {
    max-width: 700px;
    margin: 0 auto 40px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.tutor-details summary {
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    text-align: center;
    transition: background 0.2s ease;
}
.tutor-details summary::-webkit-details-marker { display: none; }
.tutor-details summary:hover { background: var(--primary-light); }
.tutor-details > div { padding: 0 24px 24px; }

/* ==================== Tutor: 인간적 소개 ==================== */
.tutor-story {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}
.tutor-story p {
    margin-bottom: 16px;
}
.tutor-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 24px;
    font-style: italic;
}

/* ==================== Solution: Perspective 인트로 ==================== */
.solution-intro-perspective {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* ==================== Method: 기초교육 링크 ==================== */
.method-basics-link {
    text-align: center;
    margin-top: 40px;
}

/* ==================== Journey: 결과 통합 ==================== */
.journey-result {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
}
.journey-result h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.journey-result p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}
.journey-result .text-sm-muted {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.8;
}


/* ==================== Journey: 자립의 증거 일러스트 ==================== */
.journey-result-img {
    display: block;
    max-width: 480px;
    width: 100%;
    height: auto;
    margin: 0 auto 24px;
    border-radius: var(--radius-sm);
}

/* ==================== Observe Radar: 관찰 지표 오각형 다이어그램 ==================== */
.observe-radar {
    max-width: 260px;
    margin: 24px auto;
}
.observe-radar svg {
    width: 100%;
    height: auto;
}

/* ==================== Testimonial: 장식 일러스트 ==================== */
.testimonial-illust {
    display: block;
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

/* ==================== Holssi: 홀씨 마스코트 캐릭터 ==================== */

/* 역할 A: Problem→Solution 감정 전환 브릿지 */
.section-bridge {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
    background: linear-gradient(to bottom, #f5f2ed, var(--warm));
}
.bridge-holssi {
    width: 64px;
    height: 64px;
    animation: holssi-float-drift 4s ease-in-out infinite;
}
@keyframes holssi-float-drift {
    0% { transform: translateY(0) translateX(-6px); }
    25% { transform: translateY(-8px) translateX(0); }
    50% { transform: translateY(0) translateX(6px); }
    75% { transform: translateY(-8px) translateX(0); }
    100% { transform: translateY(0) translateX(-6px); }
}

/* 역할 C: Journey 성장 아이콘 */
.journey-step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
}
.journey-step-icon img {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .section-bridge {
        padding: 24px 0;
    }
    .bridge-holssi {
        width: 48px;
        height: 48px;
    }
    .journey-step-icon {
        width: 40px;
        height: 40px;
        grid-row: 1 / 3;
        align-self: center;
        margin: 0;
    }
}
