/* ═══════════════════════════════════════════════════════════════
   WKC How It Works Page
   ═══════════════════════════════════════════════════════════════ */

.wkc-hiw {
    font-family: var(--wkc-font);
    background: var(--wkc-bg);
    color: var(--wkc-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.wkc-hiw *,
.wkc-hiw *::before,
.wkc-hiw *::after {
    box-sizing: border-box;
}

.hiw-main {
    padding-bottom: 64px;
}

/* Hero */
.hiw-hero {
    position: relative;
    background: linear-gradient(135deg, var(--wkc-navy) 0%, var(--wkc-blue) 55%, #2563A8 100%);
    color: #fff;
    padding: 56px 0 72px;
    overflow: hidden;
}

.hiw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(45, 184, 78, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hiw-hero__inner {
    position: relative;
    max-width: 760px;
}

.hiw-hero__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wkc-green-bright);
    margin-bottom: 12px;
}

.hiw-hero__title {
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.hiw-hero__sub {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    margin-bottom: 24px;
}

.hiw-hero__cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--wkc-green);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(45, 184, 78, 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}

.hiw-hero__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(45, 184, 78, 0.45);
}

/* Layout */
.hiw-wrap {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.hiw-nav {
    position: sticky;
    top: calc(var(--wkc-header-h, 72px) + 16px);
    background: var(--wkc-white);
    border: 1px solid rgba(12, 50, 96, 0.08);
    border-radius: 14px;
    padding: 16px 12px;
    box-shadow: 0 8px 24px rgba(12, 50, 96, 0.06);
    max-height: calc(100vh - var(--wkc-header-h, 72px) - 32px);
    overflow-y: auto;
}

.hiw-nav__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wkc-text-muted);
    padding: 0 10px 10px;
}

.hiw-nav a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--wkc-text-muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.hiw-nav a:hover,
.hiw-nav a.is-active {
    background: var(--wkc-bg);
    color: var(--wkc-blue);
}

.hiw-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards */
.hiw-card {
    background: var(--wkc-white);
    border: 1px solid rgba(12, 50, 96, 0.08);
    border-radius: 16px;
    padding: clamp(22px, 4vw, 32px);
    box-shadow: 0 6px 24px rgba(12, 50, 96, 0.05);
}

.hiw-card h2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--wkc-navy);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.hiw-card p {
    color: var(--wkc-text-muted);
    margin-bottom: 14px;
}

.hiw-card p:last-child {
    margin-bottom: 0;
}

.hiw-lead {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--wkc-text);
}

/* Process journey strip */
.hiw-process {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hiw-process__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    background: var(--wkc-bg-light);
    border: 1px solid rgba(12, 50, 96, 0.06);
    border-radius: 14px;
    min-height: 100%;
}

.hiw-process__num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wkc-blue), var(--wkc-navy));
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.hiw-process__label {
    font-size: 12px;
    font-weight: 800;
    color: var(--wkc-navy);
    line-height: 1.35;
}

/* Step cards */
.hiw-step__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.hiw-step__badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(45, 184, 78, 0.12);
    color: var(--wkc-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hiw-step__head h2 {
    margin: 0;
    flex: 1 1 200px;
}

.hiw-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hiw-list li {
    position: relative;
    padding-left: 22px;
    color: var(--wkc-text-muted);
    font-size: 15px;
}

.hiw-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wkc-green);
}

/* Stats (Step 3) */
.hiw-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 4px;
}

.hiw-stats__item {
    text-align: center;
    padding: 18px 12px;
    background: var(--wkc-bg-light);
    border-radius: 12px;
    border: 1px solid rgba(12, 50, 96, 0.06);
}

.hiw-stats__item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--wkc-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.hiw-stats__item span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wkc-text-muted);
}

/* Table */
.hiw-table-wrap {
    overflow-x: auto;
    margin: 14px 0;
    border-radius: 10px;
    border: 1px solid rgba(12, 50, 96, 0.08);
}

.hiw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.hiw-table th,
.hiw-table td {
    padding: 12px 16px;
    text-align: left;
}

.hiw-table thead {
    background: var(--wkc-bg);
}

.hiw-table th {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wkc-text-muted);
}

.hiw-table tbody tr:nth-child(even) {
    background: rgba(232, 244, 252, 0.35);
}

.hiw-table td {
    color: var(--wkc-text-muted);
}

.hiw-table td strong {
    color: var(--wkc-navy);
    font-weight: 800;
}

.hiw-table tbody tr:last-child td {
    background: rgba(45, 184, 78, 0.08);
}

/* Championship pathway */
.hiw-pathway {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 18px 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(232, 244, 252, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 14px;
    border: 1px solid rgba(12, 50, 96, 0.06);
}

.hiw-pathway__stage {
    width: 100%;
    max-width: 360px;
    padding: 14px 20px;
    text-align: center;
    background: var(--wkc-white);
    border: 2px solid var(--wkc-blue);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    color: var(--wkc-navy);
    box-shadow: 0 4px 12px rgba(12, 50, 96, 0.06);
}

.hiw-pathway__stage:last-child {
    border-color: var(--wkc-green);
    background: rgba(45, 184, 78, 0.08);
    color: var(--wkc-green);
}

.hiw-pathway__arrow {
    font-size: 20px;
    font-weight: 900;
    color: var(--wkc-blue);
    line-height: 1;
}

.hiw-step__action {
    margin-top: 16px;
}

.hiw-link-btn {
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    color: var(--wkc-blue);
    text-decoration: none;
}

.hiw-link-btn:hover {
    text-decoration: underline;
}

/* CTA card */
.hiw-card--cta {
    text-align: center;
    background: linear-gradient(135deg, var(--wkc-navy) 0%, var(--wkc-blue) 100%);
    color: #fff;
    border: none;
}

.hiw-card--cta h2 {
    color: #fff;
}

.hiw-card--cta p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-motto {
    margin: 20px auto 24px !important;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: var(--wkc-green-bright) !important;
    letter-spacing: 0.02em;
    max-width: 520px;
}

.hiw-cta-btn {
    display: inline-flex;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--wkc-green);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s;
}

.hiw-cta-btn:hover {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hiw-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hiw-wrap {
        grid-template-columns: 1fr;
        margin-top: -24px;
    }

    .hiw-nav {
        position: static;
        max-height: none;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 14px;
    }

    .hiw-nav__label {
        width: 100%;
        padding-bottom: 4px;
    }

    .hiw-nav a {
        padding: 6px 12px;
        background: var(--wkc-bg);
        font-size: 12px;
    }

    .hiw-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hiw-hero {
        padding: 44px 0 56px;
    }

    .hiw-process {
        grid-template-columns: 1fr;
    }
}
