/**
 * WFI 2026 — AI-Enhanced UI/UX Design bootcamp CMS page (/ui-ux-design)
 * All styles auto-activate on any page whose CMS content contains .wfi-ux-shell
 * (matched via :has()), so NO body class and NO per-page layout XML is required
 * to launch a new program page — just paste the HTML into the CMS page.
 */

body:has(.wfi-ux-shell) {
    --ux-navy: #020b2d;
    --ux-navy-mid: #0a1a4a;
    --ux-navy-card: #0a142c;
    --ux-orange: #d3612b;
    --ux-orange-hover: #c0551c;
    --ux-ink: #0f1e36;
    --ux-muted: #5e6b7d;
    --ux-line: #e2e8f0;
    --ux-soft: #f4f7fb;
    --ux-container: 1200px;
    --ux-shell-max: 1280px;
    --ux-rail-w: 360px;
    --ux-rail-gap: 44px;
    /* Sticky offsets: site header height + full-width sub-nav height */
    --ux-header-h: 80px;
    --ux-subnav-h: 57px;
    /* Horizontal padding the shell uses to centre content at --ux-shell-max.
       Expressed in vw so it can be reused to full-bleed inner elements. */
    --ux-shell-pad: max(5vw, calc(50vw - (var(--ux-shell-max) / 2)));
}

/* Flush hero under header */
.page-main:has(.wfi-ux-shell) {
    padding: 0;
}

.column.main:has(.wfi-ux-shell) {
    font-family: "Inter", Arial, sans-serif;
}

/* CMS content owns the single H1, so hide Magento's default page title */
.page-main:has(.wfi-ux-shell) .page-title-wrapper {
    display: none;
}

.wfi-ux-container {
    width: 100%;
    max-width: var(--ux-container);
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
}

/* ============================================================
   PAGE SHELL — content column + full-height sticky form rail
   ============================================================ */
.wfi-ux-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--ux-rail-w);
    grid-template-areas:
        "hero rail"
        "main rail";
    column-gap: var(--ux-rail-gap);
    padding-left: var(--ux-shell-pad);
    padding-right: var(--ux-shell-pad);
}

/* Neutralise the inner container inside the shell — the shell owns the width */
.wfi-ux-shell .wfi-ux-container {
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Full-bleed dark hero backdrop that sits behind the hero row (both columns) */
.wfi-ux-shell__herobg {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    z-index: 0;
    align-self: stretch;
    pointer-events: none;
}

.wfi-ux-shell__herobg::before,
.wfi-ux-shell__herobg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
}

.wfi-ux-shell__herobg::before {
    background:
        radial-gradient(ellipse 70% 55% at 78% 15%, rgba(40, 90, 200, 0.42), transparent 55%),
        radial-gradient(ellipse 55% 45% at 10% 85%, rgba(20, 50, 120, 0.45), transparent 55%),
        linear-gradient(125deg, #020b2d 0%, #071538 35%, #0d2870 58%, #061230 80%, #020b2d 100%);
}

.wfi-ux-shell__herobg::after {
    background:
        repeating-linear-gradient(-28deg, transparent 0, transparent 42px,
            rgba(255, 255, 255, 0.02) 42px, rgba(255, 255, 255, 0.02) 84px);
}

.wfi-ux-shell__main {
    grid-area: main;
    position: relative;
    z-index: 1;
    min-width: 0;
}

/* Sticky form rail spans the full page height (hero -> footer) */
.wfi-ux-shell__rail {
    grid-area: rail;
    position: relative;
    z-index: 2;
    align-self: stretch;
}

.wfi-ux-shell__rail-inner {
    position: sticky;
    top: calc(var(--ux-header-h) + var(--ux-subnav-h) + 16px);
    padding: 24px 0 40px;
}

/* ============================================================
   HERO
   ============================================================ */
.wfi-ux-hero {
    grid-area: hero;
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding-top: 72px;
    padding-bottom: 64px;
}

.wfi-ux-hero__content {
    max-width: 720px;
}

.wfi-ux-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 22px;
    padding: 7px 16px;
    background-color: var(--ux-orange);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.wfi-ux-hero__title {
    margin: 0 0 22px;
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}

.wfi-ux-hero__title .accent {
    color: var(--ux-orange);
}

.wfi-ux-hero__text {
    margin: 0 0 34px;
    max-width: 620px;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.7;
    color: rgba(220, 230, 255, 0.82);
}

/* Stats */
.wfi-ux-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 26px;
    padding: 22px 26px;
    background: rgba(8, 18, 42, 0.55);
    border: 1px solid rgba(120, 160, 255, 0.16);
    border-radius: 12px;
}

.wfi-ux-stat {
    padding: 0 20px;
    border-left: 1px solid rgba(120, 160, 255, 0.16);
}

.wfi-ux-stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.wfi-ux-stat__value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
}

.wfi-ux-stat__label {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(170, 190, 230, 0.7);
}

.wfi-ux-hero__note {
    margin: 0 0 34px;
    max-width: 620px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(190, 205, 240, 0.62);
}

/* University picker */
.wfi-ux-uni__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8eb6ff;
}

.wfi-ux-uni__label::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ux-orange);
    flex-shrink: 0;
}

.wfi-ux-uni__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 560px;
}

.wfi-ux-uni__card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding: 14px 16px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wfi-ux-uni__card:hover,
.wfi-ux-uni__card--active {
    border-color: var(--ux-orange);
    box-shadow: 0 10px 26px rgba(211, 97, 43, 0.25);
    transform: translateY(-2px);
}

.wfi-ux-uni__card img {
    max-width: 100%;
    max-height: 40px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.wfi-ux-uni__card-text {
    font-size: 15px;
    font-weight: 800;
    color: #0f1e36;
    text-align: center;
    line-height: 1.2;
}

/* Form card (HubSpot) — lives in the sticky rail */
.wfi-ux-form-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 26px 28px;
    box-shadow: 0 26px 60px rgba(2, 11, 45, 0.4);
    color: var(--ux-ink);
}

.wfi-ux-form-card__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--ux-ink);
}

.wfi-ux-form-card__subtitle {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ux-muted);
}

/* HubSpot form skinning */
.wfi-ux-form-card .hs-form-field {
    margin-bottom: 16px;
}

.wfi-ux-form-card .hs-form-field > label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ux-ink);
}

.wfi-ux-form-card .hs-form-field > label .hs-form-required {
    color: var(--ux-orange);
    margin-left: 2px;
}

.wfi-ux-form-card .hs-input:not([type="checkbox"]):not([type="radio"]) {
    width: 100% !important;
    box-sizing: border-box;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid var(--ux-line);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ux-ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wfi-ux-form-card .hs-input:focus {
    outline: none;
    border-color: var(--ux-orange);
    box-shadow: 0 0 0 3px rgba(211, 97, 43, 0.15);
}

.wfi-ux-form-card select.hs-input {
    height: 42px;
}

.wfi-ux-form-card .hs-input::placeholder {
    color: #9aa6b6;
}

.wfi-ux-form-card .hs-fieldtype-intl-phone.hs-input {
    display: flex;
    gap: 8px;
}

.wfi-ux-form-card .hs-fieldtype-intl-phone.hs-input .hs-input {
    margin: 0;
}

.wfi-ux-form-card .hs-button {
    width: 100%;
    margin-top: 4px;
    padding: 13px 20px;
    background: var(--ux-orange);
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.wfi-ux-form-card .hs-button:hover {
    background: var(--ux-orange-hover);
}

.wfi-ux-form-card .hs-error-msgs {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
}

.wfi-ux-form-card .hs-error-msgs label {
    font-size: 12px;
    color: #d6331f;
}

.wfi-ux-form-card__loading {
    padding: 24px 0;
    font-size: 14px;
    color: var(--ux-muted);
    text-align: center;
}

/* ============================================================
   STICKY SUB-NAV
   ============================================================ */
/* Full-bleed sticky sub-nav. It lives inside the left content column, so we
   pull it out to the viewport edges with a negative margin + 100vw width, then
   dock it just under the sticky site header. */
.wfi-ux-subnav {
    position: sticky;
    top: var(--ux-header-h);
    z-index: 40;
    width: 100vw;
    margin-left: calc(-1 * var(--ux-shell-pad));
    background: #ffffff;
    border-bottom: 1px solid var(--ux-line);
    box-shadow: 0 4px 16px rgba(15, 30, 54, 0.04);
}

/* Keep the links aligned with the content column even though the bar is full-bleed */
.wfi-ux-subnav .wfi-ux-subnav__inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-left: var(--ux-shell-pad);
    padding-right: var(--ux-shell-pad);
}

.wfi-ux-subnav__inner::-webkit-scrollbar {
    display: none;
}

.wfi-ux-subnav__link {
    position: relative;
    flex-shrink: 0;
    padding: 18px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ux-muted);
    text-decoration: none !important;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.wfi-ux-subnav__link:hover {
    color: var(--ux-ink);
}

.wfi-ux-subnav__link.is-active {
    color: var(--ux-orange);
    border-bottom-color: var(--ux-orange);
}

/* ============================================================
   SHARED SECTION HELPERS
   ============================================================ */
.wfi-ux-section {
    padding: 76px 0;
    scroll-margin-top: calc(var(--ux-header-h) + var(--ux-subnav-h) + 16px);
}

/* Full-bleed soft background: the section lives in the left content column, so
   paint the tint edge-to-edge behind it with a 100vw pseudo-element while the
   content stays aligned to the column. */
.wfi-ux-section--soft {
    position: relative;
    background: transparent;
}

.wfi-ux-section--soft::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-1 * var(--ux-shell-pad));
    width: 100vw;
    background: var(--ux-soft);
    z-index: -1;
}

.wfi-ux-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--ux-orange);
}

.wfi-ux-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--ux-orange);
}

.wfi-ux-section__title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ux-ink);
}

.wfi-ux-section__lead {
    margin: 0;
    max-width: 760px;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.65;
    color: var(--ux-muted);
}

/* ============================================================
   OVERVIEW: FEATURE GRID + PROGRAM OVERVIEW CARD
   ============================================================ */
.wfi-ux-overview__title {
    margin: 0 0 40px;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--ux-ink);
}

.wfi-ux-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 56px;
    margin-bottom: 56px;
}

.wfi-ux-feature {
    position: relative;
    padding-left: 22px;
}

.wfi-ux-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 9px;
    height: 9px;
    background: var(--ux-orange);
    border-radius: 2px;
}

.wfi-ux-feature__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ux-ink);
}

.wfi-ux-feature__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ux-muted);
}

.wfi-ux-program {
    padding: 42px 44px;
    background: var(--ux-soft);
    border: 1px solid var(--ux-line);
    border-radius: 16px;
}

.wfi-ux-program__title {
    margin: 0 0 18px;
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    color: #1d4ed8;
}

.wfi-ux-program__intro {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--ux-ink);
}

.wfi-ux-program__list {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wfi-ux-program__list li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ux-ink);
}

.wfi-ux-program__list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--ux-orange);
    border-radius: 50%;
}

.wfi-ux-program__outro {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ux-muted);
}

/* ============================================================
   LEARNING EXPERIENCE (DARK)
   ============================================================ */
.wfi-ux-experience {
    padding: 76px 0;
    scroll-margin-top: 72px;
}

.wfi-ux-experience__box {
    position: relative;
    padding: 56px clamp(24px, 4vw, 60px);
    background: var(--ux-navy);
    border-radius: 20px;
    color: #ffffff;
    overflow: hidden;
}

.wfi-ux-experience__box::before {
    content: "";
    position: absolute;
    right: -8%;
    top: -30%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(37, 99, 235, 0) 68%);
    pointer-events: none;
}

.wfi-ux-experience__tag {
    display: inline-block;
    margin: 0 0 20px;
    padding: 7px 14px;
    background: rgba(90, 140, 255, 0.16);
    border: 1px solid rgba(120, 160, 255, 0.28);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8eb6ff;
}

.wfi-ux-experience__title {
    position: relative;
    margin: 0 0 18px;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
}

.wfi-ux-experience__text {
    position: relative;
    margin: 0 0 40px;
    max-width: 720px;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.7;
    color: rgba(200, 214, 244, 0.82);
}

.wfi-ux-experience__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.wfi-ux-xcard {
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
}

.wfi-ux-xcard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    background: var(--ux-orange);
    border-radius: 10px;
    color: #ffffff;
}

.wfi-ux-xcard__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.wfi-ux-xcard__title {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.wfi-ux-xcard__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(200, 214, 244, 0.78);
}

/* ============================================================
   CURRICULUM
   ============================================================ */
.wfi-ux-curriculum__head {
    margin-bottom: 40px;
}

.wfi-ux-modules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.wfi-ux-module {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid var(--ux-line);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wfi-ux-module:hover {
    border-color: var(--ux-orange);
    box-shadow: 0 12px 28px rgba(15, 30, 54, 0.08);
    transform: translateY(-2px);
}

.wfi-ux-module__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #eef3fb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--ux-orange);
}

.wfi-ux-module__title {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ux-ink);
}

/* ============================================================
   OUTCOMES
   ============================================================ */
.wfi-ux-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 56px;
    margin-top: 44px;
    align-items: start;
}

.wfi-ux-outcomes__col-title {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 800;
    color: var(--ux-ink);
}

.wfi-ux-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wfi-ux-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ux-ink);
}

.wfi-ux-checklist li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: var(--ux-orange);
}

.wfi-ux-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wfi-ux-role {
    padding: 9px 16px;
    background: #ffffff;
    border: 1px solid var(--ux-line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ux-ink);
}

/* ============================================================
   INSTRUCTORS
   ============================================================ */
.wfi-ux-instructors__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.wfi-ux-instructor {
    padding: 30px 28px;
    background: var(--ux-soft);
    border: 1px solid var(--ux-line);
    border-radius: 16px;
    text-align: center;
}

.wfi-ux-instructor__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    background: var(--ux-navy);
    border-radius: 50%;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.wfi-ux-instructor__name {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
    color: var(--ux-ink);
}

.wfi-ux-instructor__role {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ux-orange);
}

.wfi-ux-instructor__bio {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ux-muted);
}

/* ============================================================
   TUITION & FINANCING
   ============================================================ */
.wfi-ux-tuition2 {
    margin-top: 40px;
}

.wfi-ux-tuition2__subhead {
    margin: 0 0 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ux-muted);
}

.wfi-ux-tuition2__features {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 40px;
}

.wfi-ux-tuition2__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ux-ink);
}

.wfi-ux-tuition2__features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #16a34a;
}

.wfi-ux-tuition2__guarantee {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 40px;
    padding: 20px 24px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
}

.wfi-ux-tuition2__g-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
}

.wfi-ux-tuition2__g-icon svg {
    width: 22px;
    height: 22px;
}

.wfi-ux-tuition2__g-title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 800;
    color: #166534;
}

.wfi-ux-tuition2__g-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #3f6b4e;
}

.wfi-ux-tuition2__paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.wfi-ux-paycard {
    position: relative;
    padding: 32px 30px;
    background: #ffffff;
    border: 1px solid var(--ux-line);
    border-radius: 16px;
}

.wfi-ux-paycard--best {
    border: 2px solid var(--ux-ink);
}

.wfi-ux-paycard__badge {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 13px;
    background: #ede9fe;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6d28d9;
}

.wfi-ux-paycard__title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--ux-ink);
}

.wfi-ux-paycard__desc {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ux-muted);
}

.wfi-ux-paycard__from {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ux-muted);
}

.wfi-ux-paycard__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 800;
    color: var(--ux-ink);
}

.wfi-ux-paycard__old {
    font-size: 18px;
    font-weight: 600;
    color: var(--ux-muted);
    text-decoration: line-through;
}

.wfi-ux-paycard__save {
    display: inline-block;
    margin: 0 0 24px;
    padding: 5px 12px;
    background: #dcfce7;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #166534;
}

.wfi-ux-paycard__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 22px;
    background: var(--ux-orange);
    border: 2px solid var(--ux-orange);
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wfi-ux-paycard__btn:hover {
    background: var(--ux-orange-hover);
    border-color: var(--ux-orange-hover);
}

/* Financing options card */
.wfi-ux-fin__option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.wfi-ux-fin__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--ux-soft);
    color: var(--ux-orange);
}

.wfi-ux-fin__icon svg {
    width: 20px;
    height: 20px;
}

.wfi-ux-fin__name {
    margin: 0 0 3px;
    font-size: 16px;
    font-weight: 800;
    color: var(--ux-ink);
}

.wfi-ux-fin__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ux-muted);
}

.wfi-ux-fin__or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
}

.wfi-ux-fin__or span {
    font-size: 12px;
    font-weight: 700;
    color: var(--ux-muted);
}

.wfi-ux-fin__or::before,
.wfi-ux-fin__or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--ux-line);
}

.wfi-ux-fin__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wfi-ux-fin__btn--primary {
    margin-top: 24px;
    background: var(--ux-soft);
    border: 1px solid var(--ux-line);
    color: var(--ux-ink) !important;
}

.wfi-ux-fin__btn--primary:hover {
    background: #e9eef6;
}

.wfi-ux-fin__btn--outline {
    margin-top: 12px;
    background: #ffffff;
    border: 2px solid var(--ux-ink);
    color: var(--ux-ink) !important;
}

.wfi-ux-fin__btn--outline:hover {
    background: var(--ux-ink);
    color: #ffffff !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.wfi-ux-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 40px;
}

.wfi-ux-faq__item {
    border: 1px solid var(--ux-line);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.wfi-ux-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 20px 24px;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    color: var(--ux-ink);
    cursor: pointer;
}

.wfi-ux-faq__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--ux-orange);
    transition: transform 0.2s ease;
}

.wfi-ux-faq__item.is-open .wfi-ux-faq__icon {
    transform: rotate(180deg);
}

.wfi-ux-faq__a {
    display: none;
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ux-muted);
}

.wfi-ux-faq__item.is-open .wfi-ux-faq__a {
    display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
    body:has(.wfi-ux-shell) {
        --ux-header-h: 68px;
    }

    /* Collapse the shell: hero, then form, then the rest of the page */
    .wfi-ux-shell {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    /* The shell no longer has side padding, so drop the full-bleed offset */
    .wfi-ux-subnav {
        width: auto;
        margin-left: 0;
    }

    .wfi-ux-subnav .wfi-ux-subnav__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Single column: the soft tint is already full width, drop the bleed offset */
    .wfi-ux-section--soft::before {
        left: 0;
        width: 100%;
    }

    .wfi-ux-shell__herobg {
        display: none;
    }

    .wfi-ux-hero {
        order: 1;
        overflow: hidden;
        background:
            radial-gradient(ellipse 80% 60% at 80% 12%, rgba(40, 90, 200, 0.4), transparent 55%),
            linear-gradient(150deg, #020b2d 0%, #0a1a4a 55%, #020b2d 100%);
    }

    .wfi-ux-shell__rail {
        order: 2;
    }

    .wfi-ux-shell__main {
        order: 3;
    }

    .wfi-ux-shell__rail-inner {
        position: static;
        max-width: 520px;
        margin: 0 auto;
        padding: 0 24px 8px;
    }

    /* Restore horizontal padding for the collapsed single column */
    .wfi-ux-shell .wfi-ux-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .wfi-ux-tuition2__features,
    .wfi-ux-tuition2__paths {
        grid-template-columns: 1fr;
    }

    .wfi-ux-instructors__grid,
    .wfi-ux-experience__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .wfi-ux-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .wfi-ux-hero {
        padding-top: 52px;
        padding-bottom: 48px;
    }

    .wfi-ux-stats {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }

    .wfi-ux-stat {
        padding: 0 0 18px;
        border-left: 0;
        border-bottom: 1px solid rgba(120, 160, 255, 0.16);
    }

    .wfi-ux-stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .wfi-ux-uni__grid {
        grid-template-columns: 1fr;
    }

    .wfi-ux-section {
        padding: 52px 0;
    }

    .wfi-ux-features {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 40px;
    }

    .wfi-ux-program {
        padding: 30px 24px;
    }

    .wfi-ux-experience {
        padding: 52px 0;
    }

    .wfi-ux-experience__box {
        padding: 40px 24px;
    }

    .wfi-ux-modules,
    .wfi-ux-outcomes__grid {
        grid-template-columns: 1fr;
    }

    .wfi-ux-paycard {
        padding: 28px 22px;
    }

    .wfi-ux-tuition2__features {
        gap: 12px 24px;
    }
}

/* ============================================================
   STICKY FIX
   html, body and .page-wrapper all use overflow-x: hidden, which
   turns them into scroll containers and disables position: sticky
   for the form rail. overflow-x: clip clips horizontal overflow the
   same way but does NOT create a scroll container, so sticky works.
   ============================================================ */
html:has(.wfi-ux-shell),
body:has(.wfi-ux-shell),
.page-wrapper:has(.wfi-ux-shell) {
    overflow-x: clip;
}

/* ============================================================
   WHAT YOU'LL LEARN
   ============================================================ */
.wfi-ux-learn__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.wfi-ux-learn__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--ux-line);
    border-radius: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wfi-ux-learn__card:hover {
    border-color: var(--ux-orange);
    box-shadow: 0 12px 28px rgba(15, 30, 54, 0.08);
    transform: translateY(-2px);
}

.wfi-ux-learn__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf1fe;
    color: #1d4ed8;
    border-radius: 10px;
}

.wfi-ux-learn__icon svg {
    width: 22px;
    height: 22px;
}

.wfi-ux-learn__title {
    margin: 2px 0 6px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ux-ink);
}

.wfi-ux-learn__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ux-muted);
}

/* ============================================================
   ACCORDION (shared: Explore experience + Curriculum overview)
   ============================================================ */
.wfi-ux-acc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.wfi-ux-acc__item {
    border: 1px solid var(--ux-line);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.wfi-ux-acc__item.is-open {
    border-color: var(--ux-orange);
    box-shadow: 0 10px 26px rgba(15, 30, 54, 0.07);
}

.wfi-ux-acc__head {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}

.wfi-ux-acc__ico {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff4ee;
    color: var(--ux-orange);
    border-radius: 8px;
}

.wfi-ux-acc__ico svg {
    width: 18px;
    height: 18px;
}

.wfi-ux-acc__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 28px;
    padding: 0 8px;
    background: #eef3fb;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--ux-orange);
}

.wfi-ux-acc__title {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ux-ink);
}

.wfi-ux-acc__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--ux-muted);
    transition: transform 0.2s ease;
}

.wfi-ux-acc__item.is-open .wfi-ux-acc__chevron {
    transform: rotate(180deg);
    color: var(--ux-orange);
}

.wfi-ux-acc__body {
    display: none;
    padding: 0 20px 20px 70px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ux-muted);
}

.wfi-ux-acc__item.is-open .wfi-ux-acc__body {
    display: block;
}

/* ============================================================
   CAREER OPPORTUNITIES & SALARIES (dark table)
   ============================================================ */
.wfi-ux-careers__box {
    padding: 46px clamp(22px, 3vw, 48px);
    background: var(--ux-navy);
    border-radius: 20px;
    color: #ffffff;
}

.wfi-ux-careers__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8eb6ff;
}

.wfi-ux-careers__eyebrow::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--ux-orange);
}

.wfi-ux-careers__title {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.wfi-ux-careers__lead {
    margin: 0;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(200, 214, 244, 0.8);
}

.wfi-ux-salary__scroll {
    margin-top: 26px;
    overflow-x: auto;
}

.wfi-ux-salary {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
}

.wfi-ux-salary th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8eb6ff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    white-space: nowrap;
}

.wfi-ux-salary td {
    padding: 16px;
    font-size: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wfi-ux-salary tr:last-child td {
    border-bottom: 0;
}

.wfi-ux-salary td:first-child {
    font-weight: 700;
}

.wfi-ux-salary__hi {
    color: var(--ux-orange);
    font-weight: 700;
}

.wfi-ux-careers__note {
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(200, 214, 244, 0.62);
}

/* ============================================================
   WHY THIS COURSE
   ============================================================ */
.wfi-ux-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.wfi-ux-why__card {
    padding: 30px 26px;
    background: #ffffff;
    border: 1px solid var(--ux-line);
    border-radius: 16px;
}

.wfi-ux-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    background: #fff4ee;
    color: var(--ux-orange);
    border-radius: 12px;
}

.wfi-ux-why__icon svg {
    width: 24px;
    height: 24px;
}

.wfi-ux-why__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ux-ink);
}

.wfi-ux-why__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ux-muted);
}

.wfi-ux-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 24px;
    padding: 30px clamp(24px, 3vw, 44px);
    border-radius: 16px;
    background: linear-gradient(90deg, #0d2870 0%, #1d4ed8 42%, #d3612b 100%);
    color: #ffffff;
}

.wfi-ux-cta__text {
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
}

.wfi-ux-cta__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #ffffff;
    border-radius: 8px;
    color: var(--ux-navy) !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wfi-ux-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    color: var(--ux-navy) !important;
}

/* ============================================================
   LEARNING OUTCOMES (dark box)
   ============================================================ */
.wfi-ux-lo__box {
    position: relative;
    padding: 52px clamp(24px, 4vw, 56px);
    background: var(--ux-navy);
    border-radius: 20px;
    color: #ffffff;
    overflow: hidden;
}

.wfi-ux-lo__box::before {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -35%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.26) 0%, rgba(37, 99, 235, 0) 68%);
    pointer-events: none;
}

.wfi-ux-lo__title {
    position: relative;
    margin: 0 0 8px;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.wfi-ux-lo__lead {
    position: relative;
    margin: 0;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(200, 214, 244, 0.8);
}

.wfi-ux-lo__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.wfi-ux-lo__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
}

.wfi-ux-lo__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    color: var(--ux-orange);
}

.wfi-ux-lo__ctitle {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
}

.wfi-ux-lo__ctext {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(200, 214, 244, 0.78);
}

/* ============================================================
   CURRICULUM OVERVIEW
   ============================================================ */
.wfi-ux-cur__box {
    margin-top: 32px;
    padding: 30px 32px;
    background: var(--ux-soft);
    border: 1px solid var(--ux-line);
    border-radius: 16px;
}

.wfi-ux-cur__box-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 800;
    color: var(--ux-ink);
}

.wfi-ux-cur__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wfi-ux-cur__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ux-ink);
}

.wfi-ux-cur__list li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    color: var(--ux-orange);
}

.wfi-ux-cur__download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 26px;
    background: var(--ux-orange);
    border: 2px solid var(--ux-orange);
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wfi-ux-cur__download:hover {
    background: var(--ux-orange-hover);
    border-color: var(--ux-orange-hover);
    color: #ffffff !important;
}

.wfi-ux-cur__download svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   RESPONSIVE (new sections)
   ============================================================ */
@media (max-width: 767px) {
    .wfi-ux-learn__grid,
    .wfi-ux-why__grid,
    .wfi-ux-lo__grid,
    .wfi-ux-cur__list {
        grid-template-columns: 1fr;
    }

    .wfi-ux-careers__box,
    .wfi-ux-lo__box {
        padding: 34px 22px;
    }

    .wfi-ux-cur__box {
        padding: 24px 20px;
    }

    .wfi-ux-acc__body {
        padding-left: 20px;
    }

    .wfi-ux-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 26px 22px;
    }

    .wfi-ux-cta__btn {
        width: 100%;
    }
}
