/* ============================================================
   50K Walk Class
   ============================================================ */

.walk-page-wrapper {
    --walk-orange: var(--primary-orange, #E67E22);
    --walk-navy: #1a2a3a;
    --walk-ivory: #faf8f5;
    --walk-muted: #64748b;
    --walk-line: #ece7df;
    --walk-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-x: hidden;
    background: #fff;
    color: var(--walk-navy);
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    line-height: 1.7;
}

.walk-container {
    width: 100%;
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}

.walk-pc-only {
    display: block;
}

.walk-section-header {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.walk-section-header h2 {
    margin: 0;
    color: var(--walk-navy);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.35;
    word-break: keep-all;
}

.walk-section-header h2 strong {
    color: var(--walk-orange);
    font-weight: 850;
}

.walk-section-header p {
    margin: 18px 0 0;
    color: var(--walk-muted);
    font-size: 1.05rem;
}

.walk-why .walk-section-header p {
    font-size: 1rem;
    line-height: 1.65;
}

.walk-tag,
.walk-eyebrow,
.walk-step-label {
    display: block;
    color: var(--walk-orange);
    font-size: 0.85rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.walk-tag {
    margin-bottom: 14px;
}

.walk-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--walk-ivory);
    color: var(--walk-navy);
    overflow: hidden;
}

.walk-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.08), rgba(250, 248, 245, 0.2)),
        url("/static/img/sections/marquee/marquee.004.jpeg") center/cover;
}

.walk-hero-image,
.walk-hero-image img,
.walk-cta-bg img {
    width: 100%;
    height: 100%;
}

.walk-hero-image {
    position: relative;
}

.walk-hero-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(250, 248, 245, 0.16), rgba(250, 248, 245, 0)),
        linear-gradient(180deg, rgba(26, 42, 58, 0.02), rgba(26, 42, 58, 0.1));
}

.walk-hero-image img,
.walk-cta-bg img {
    object-fit: cover;
    filter: brightness(0.96) contrast(1.04);
}

.walk-floating-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(26, 42, 58, 0.12);
    animation: walk-float 3.4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.walk-floating-badge-primary {
    top: 20%;
    left: 11%;
}

.walk-floating-badge-secondary {
    bottom: 24%;
    left: 6%;
    animation-delay: 1.5s;
}

.walk-floating-badge i {
    color: var(--walk-orange);
    font-size: 1rem;
}

.walk-floating-badge span {
    color: var(--walk-navy);
    font-size: 0.9rem;
    font-weight: 850;
    white-space: nowrap;
}

@keyframes walk-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.walk-hero-content {
    position: relative;
    z-index: 1;
    width: min(50%, 620px);
    padding: 138px 0 110px;
}

.walk-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.walk-hero-tag-line {
    width: 40px;
    height: 2px;
    border-radius: 999px;
    background: var(--walk-orange);
}

.walk-main-title {
    margin: 0 0 28px;
    font-size: clamp(3rem, 5.2vw, 4.7rem);
    font-weight: 850;
    line-height: 1.12;
    word-break: keep-all;
}

.walk-main-title span {
    position: relative;
    display: inline-block;
    color: var(--walk-orange);
}

.walk-main-title span::after {
    position: absolute;
    left: 0;
    bottom: 0.08em;
    z-index: -1;
    width: 100%;
    height: 0.2em;
    border-radius: 999px;
    background: rgba(230, 126, 34, 0.16);
    content: "";
}

.walk-sub-desc {
    margin: 0 0 42px;
    color: #555f6d;
    font-size: 1.2rem;
    font-weight: 550;
    line-height: 1.7;
}

.walk-action-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 22px;
}

.walk-action-row-centered {
    justify-content: center;
}

.walk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 40px;
    border-radius: var(--radius-button, 980px);
    font-weight: 800;
    text-decoration: none;
    transition: var(--walk-transition);
}

.walk-btn-primary {
    background: var(--walk-orange);
    color: #fff;
}

.walk-btn-dark {
    background: var(--walk-navy);
    color: #fff;
}

.walk-btn-dark i {
    margin-left: 2px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.walk-btn-outline {
    border: 2px solid var(--walk-navy);
    color: var(--walk-navy);
}

.walk-btn:hover {
    transform: translateY(-4px);
}

.walk-btn-primary:hover {
    box-shadow: 0 12px 24px rgba(230, 126, 34, 0.28);
}

.walk-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--walk-navy);
    font-weight: 800;
    text-decoration: none;
    transition: var(--walk-transition);
}

.walk-text-link i {
    color: var(--walk-orange);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.walk-text-link:hover {
    color: var(--walk-orange);
}

.walk-text-link:hover i {
    transform: translateX(4px);
}

.walk-btn-dark:hover {
    background: var(--walk-orange);
    box-shadow: 0 12px 24px rgba(230, 126, 34, 0.28);
}

.walk-btn-dark:hover i {
    transform: translateX(4px);
}

.walk-btn-outline:hover {
    background: var(--walk-navy);
    color: #fff;
}

.walk-scroll-indicator {
    position: absolute;
    left: clamp(24px, 4vw, 52px);
    bottom: 38px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: var(--walk-navy);
    opacity: 0.62;
}

.walk-mouse {
    position: relative;
    width: 22px;
    height: 36px;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.walk-mouse::after {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    transform: translateX(-50%);
    animation: walk-scroll-wheel 2s infinite;
}

.walk-scroll-indicator p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

@keyframes walk-scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 21px;
        opacity: 0;
    }
}

.walk-why,
.walk-checklist,
.walk-process {
    padding: 112px 0;
    background: #fff;
}

.walk-curriculum,
.walk-matrix {
    padding: 112px 0;
    background: var(--walk-ivory);
}

.walk-why-grid,
.walk-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.walk-why-card {
    min-height: 270px;
    padding: 40px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-card, 24px);
    background: var(--walk-ivory);
    text-align: center;
    transition: var(--walk-transition);
}

.walk-why-card:hover {
    border-color: var(--walk-line);
    background: #fff;
    box-shadow: 0 20px 42px rgba(31, 42, 58, 0.07);
    transform: translateY(-8px);
}

.walk-why-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.1);
    color: var(--walk-orange);
    font-size: 1.35rem;
}

.walk-why-card h3,
.walk-card-body h3,
.walk-process-item h4 {
    margin: 0 0 14px;
    color: var(--walk-navy);
    font-weight: 850;
    line-height: 1.35;
    word-break: keep-all;
}

.walk-why-card h3 {
    font-size: 1.18rem;
}

.walk-why-card p,
.walk-card-body p,
.walk-process-item p {
    margin: 0;
    color: var(--walk-muted);
}

.walk-why-card p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.walk-card-body p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.walk-process-item p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.walk-curriculum-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 2px max(20px, calc((100vw - var(--container-width, 1200px)) / 2)) 58px;
    box-sizing: border-box;
}

.walk-curriculum-slider .swiper-wrapper {
    align-items: stretch;
}

.walk-curriculum-slider .swiper-slide {
    height: auto;
}

.walk-curriculum-card {
    height: 100%;
    min-height: 468px;
    border-radius: var(--radius-card, 24px);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(31, 42, 58, 0.06);
    transition: var(--walk-transition);
}

.walk-curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(31, 42, 58, 0.1);
}

.walk-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.62)),
        url("/static/img/sections/marquee/marquee.001.jpeg") center/cover;
}

.swiper-slide:nth-child(2) .walk-card-img {
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.62)),
        url("/static/img/sections/marquee/marquee.002.jpeg") center/cover;
}

.swiper-slide:nth-child(3) .walk-card-img {
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.62)),
        url("/static/img/sections/marquee/marquee.003.jpeg") center/cover;
}

.swiper-slide:nth-child(4) .walk-card-img {
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.62)),
        url("/static/img/sections/marquee/marquee.004.jpeg") center/cover;
}

.swiper-slide:nth-child(5) .walk-card-img {
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.62)),
        url("/static/img/sections/marquee/marquee.005.jpeg") center/cover;
}

.walk-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.walk-curriculum-card:hover .walk-card-img img {
    transform: scale(1.06);
}

.walk-card-body {
    padding: 30px;
}

.walk-step-label {
    margin-bottom: 10px;
    font-size: 0.78rem;
}

.walk-card-body h3 {
    font-size: 1.35rem;
}

.walk-checklist-panel {
    max-width: 820px;
    margin: 0 auto;
    padding: 58px;
    border-radius: var(--radius-card, 24px);
    background: var(--walk-navy);
    color: #fff;
    text-align: center;
}

.walk-checklist-panel h3 {
    margin: 0 0 36px;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.35;
}

.walk-check-list {
    display: inline-grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.walk-check-list li {
    position: relative;
    padding-left: 34px;
    font-size: 1.06rem;
    font-weight: 650;
}

.walk-check-list li::before {
    position: absolute;
    left: 0;
    color: var(--walk-orange);
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.walk-check-footer {
    margin: 36px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.walk-check-footer strong {
    color: #fff;
}

.walk-process-steps {
    counter-reset: process;
}

.walk-process-item {
    position: relative;
    padding-top: 4px;
}

.walk-process-num {
    display: block;
    margin-bottom: 18px;
    color: #dbe2ea;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
}

.walk-process-item h4 {
    font-size: 1.24rem;
}

.walk-matrix-table-wrapper {
    margin-top: 10px;
    padding: 38px;
    border-radius: var(--radius-card, 24px);
    background: #fff;
    box-shadow: 0 12px 36px rgba(31, 42, 58, 0.06);
}

.walk-matrix-table {
    width: 100%;
    border-collapse: collapse;
}

.walk-matrix-table th,
.walk-matrix-table td {
    padding: 22px 18px;
    border-bottom: 1px solid var(--walk-line);
    text-align: center;
    word-break: keep-all;
}

.walk-matrix-table th {
    border-bottom: 2px solid var(--walk-navy);
    color: var(--walk-navy);
    font-weight: 850;
}

.walk-matrix-table td:first-child {
    color: var(--walk-muted);
    font-weight: 800;
    text-align: left;
}

.walk-matrix-table tr:last-child td {
    border-bottom: 0;
}

.walk-final-cta {
    position: relative;
    padding: 148px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.walk-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(26, 42, 58, 0.58), rgba(26, 42, 58, 0.58)),
        url("/static/img/sections/marquee/marquee.006.jpeg") center/cover;
}

.walk-cta-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(26, 42, 58, 0.62);
}

.walk-cta-inner {
    position: relative;
    z-index: 1;
}

.walk-cta-inner h2 {
    margin: 0 0 26px;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.32;
}

.walk-cta-inner p {
    margin: 0 0 42px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
}

@media (max-width: 1024px) {
    .walk-hero-visual {
        width: 48%;
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    }

    .walk-hero-content {
        width: 58%;
    }

    .walk-main-title {
        font-size: clamp(2.7rem, 5.2vw, 3.5rem);
    }

    .walk-why-grid,
    .walk-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .walk-matrix-table-wrapper {
        overflow-x: auto;
    }

    .walk-matrix-table {
        min-width: 720px;
    }
}

@media (max-width: 768px) {
    .walk-pc-only {
        display: none;
    }

    .walk-hero {
        min-height: auto;
        padding: 0 0 82px;
        align-items: stretch;
        flex-direction: column;
    }

    .walk-hero-visual {
        position: relative;
        order: -1;
        width: 100%;
        height: 350px;
        clip-path: none;
    }

    .walk-hero-content {
        width: 100%;
        max-width: none;
        padding: 48px 0 0;
        text-align: center;
    }

    .walk-hero-tag,
    .walk-action-row {
        justify-content: center;
    }

    .walk-main-title {
        font-size: 2.75rem;
    }

    .walk-sub-desc {
        font-size: 1rem;
    }

    .walk-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .walk-btn,
    .walk-text-link {
        width: 100%;
        min-height: 54px;
        justify-content: center;
    }

    .walk-floating-badge {
        min-height: 48px;
        padding: 0 18px;
    }

    .walk-floating-badge-primary {
        top: 24px;
        right: 18px;
        left: auto;
    }

    .walk-floating-badge-secondary {
        right: auto;
        bottom: 22px;
        left: 18px;
    }

    .walk-scroll-indicator {
        display: none;
    }

    .walk-why,
    .walk-checklist,
    .walk-process,
    .walk-curriculum,
    .walk-matrix {
        padding: 82px 0;
    }

    .walk-section-header {
        margin-bottom: 38px;
    }

    .walk-why-grid,
    .walk-process-steps {
        grid-template-columns: 1fr;
    }

    .walk-why-card {
        min-height: auto;
        padding: 34px 24px;
    }

    .walk-curriculum-card {
        min-height: 456px;
    }

    .walk-card-img {
        height: 270px;
    }

    .walk-checklist-panel {
        padding: 40px 22px;
    }

    .walk-check-list {
        display: grid;
    }

    .walk-matrix-table-wrapper {
        padding: 24px;
    }

    .walk-final-cta {
        padding: 110px 0;
    }
}
