/**
 * WFI 2026 — homepage shared design sections
 */

/* Homepage only: remove main padding so hero is flush under header */
.cms-index-index .page-main {
    padding: 0;
}

.wfi-home-hero {
    --wfi-hero-bg: #020b2d;
    --wfi-hero-bg-mid: #0a1a4a;
    --wfi-hero-orange: #d3612b;
    --wfi-hero-orange-hover: #c0551c;
    --wfi-hero-badge-border: rgba(120, 170, 255, 0.45);
    --wfi-hero-badge-text: #8eb6ff;
    --wfi-hero-muted: rgba(220, 230, 255, 0.78);
    --wfi-hero-stat-label: rgba(170, 190, 230, 0.75);

    /* Full width of parent — avoid 100vw (causes horizontal scrollbar) */
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: #fff;
    background: var(--wfi-hero-bg);
    padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
    box-sizing: border-box;
}

.wfi-home-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(40, 90, 200, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(20, 50, 120, 0.4), transparent 50%),
        linear-gradient(125deg, #020b2d 0%, #071538 35%, #0d2870 55%, #061230 78%, #020b2d 100%);
}

.wfi-home-hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -28deg,
            transparent 0,
            transparent 40px,
            rgba(255, 255, 255, 0.015) 40px,
            rgba(255, 255, 255, 0.015) 80px
        ),
        linear-gradient(
            155deg,
            transparent 20%,
            rgba(90, 140, 255, 0.12) 42%,
            rgba(140, 180, 255, 0.08) 48%,
            transparent 65%
        );
    opacity: 0.9;
}

.wfi-home-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 11, 45, 0.15) 0%, rgba(2, 11, 45, 0.55) 100%);
}

/* Same container rhythm as shared header */
.wfi-home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.wfi-home-hero__content {
    min-width: 0;
}

.wfi-home-hero__media {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfi-home-hero__media > img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ---------- Hero orbit animation ---------- */
.wfi-hero-orbit {
    --wfi-orbit-accent: #d3612b;
    --wfi-orbit-accent-2: #f0894f;
    --wfi-orbit-line: rgba(120, 170, 255, 0.55);
    --wfi-orbit-ring: rgba(160, 190, 255, 0.22);

    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    transform: translateZ(0);
    animation: wfi-orbit-appear 1.2s ease both;
}

.wfi-hero-orbit__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.wfi-hero-orbit__ring--1 {
    width: 52%;
    height: 52%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: wfi-orbit-spin 28s linear infinite;
}

.wfi-hero-orbit__ring--2 {
    width: 72%;
    height: 72%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: wfi-orbit-spin 40s linear infinite reverse;
}

.wfi-hero-orbit__ring--3 {
    width: 94%;
    height: 94%;
    border: 2px dashed var(--wfi-orbit-ring);
    animation: wfi-orbit-spin 65s linear infinite;
}

.wfi-hero-orbit__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.wfi-hero-orbit__lines line {
    stroke: var(--wfi-orbit-line);
    stroke-width: 2;
    opacity: 0.45;
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: wfi-orbit-draw 1.6s forwards;
}

.wfi-hero-orbit__lines line:nth-child(1) { animation-delay: 0.1s; }
.wfi-hero-orbit__lines line:nth-child(2) { animation-delay: 0.2s; }
.wfi-hero-orbit__lines line:nth-child(3) { animation-delay: 0.3s; }
.wfi-hero-orbit__lines line:nth-child(4) { animation-delay: 0.4s; }
.wfi-hero-orbit__lines line:nth-child(5) { animation-delay: 0.5s; }
.wfi-hero-orbit__lines line:nth-child(6) { animation-delay: 0.6s; }
.wfi-hero-orbit__lines line:nth-child(7) { animation-delay: 0.7s; }
.wfi-hero-orbit__lines line:nth-child(8) { animation-delay: 0.8s; }

.wfi-hero-orbit__center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30%;
    height: 30%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--wfi-orbit-accent), var(--wfi-orbit-accent-2));
    box-shadow: 0 0 40px rgba(211, 97, 43, 0.4), 0 0 80px rgba(211, 97, 43, 0.2);
    z-index: 40;
    animation: wfi-orbit-center-float 5s ease-in-out infinite;
}

.wfi-hero-orbit__center::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 97, 43, 0.35), transparent 70%);
    filter: blur(14px);
    z-index: -1;
    animation: wfi-orbit-center-glow 4s ease infinite;
}

.wfi-hero-orbit__center-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
}

.wfi-hero-orbit__center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.wfi-hero-orbit__center:hover img {
    transform: scale(1.08);
}

.wfi-hero-orbit__node {
    position: absolute;
    width: clamp(46px, 13%, 72px);
    height: clamp(46px, 13%, 72px);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    z-index: 30;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    animation: wfi-orbit-node-appear 0.8s forwards;
}

.wfi-hero-orbit__node:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.wfi-hero-orbit__icon {
    width: 68%;
    height: 68%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wfi-orbit-accent-2), var(--wfi-orbit-accent));
    color: #fff;
    animation: wfi-orbit-icon-pulse 2.6s ease infinite;
}

.wfi-hero-orbit__icon svg {
    width: 52%;
    height: 52%;
}

.wfi-hero-orbit__node.is-active .wfi-hero-orbit__icon {
    box-shadow: 0 0 34px rgba(240, 137, 79, 0.95), 0 0 60px rgba(211, 97, 43, 0.6);
    transform: scale(1.14);
}

/* Node placement — centered on an orbit radius via translate(-50%,-50%) */
.wfi-hero-orbit__node--top { left: 50%; top: 12%; transform: translate(-50%, -50%); animation-delay: 0.7s; }
.wfi-hero-orbit__node--top-right { left: 76.9%; top: 23.1%; transform: translate(-50%, -50%); animation-delay: 0.9s; }
.wfi-hero-orbit__node--right { left: 88%; top: 50%; transform: translate(-50%, -50%); animation-delay: 1.1s; }
.wfi-hero-orbit__node--bottom-right { left: 76.9%; top: 76.9%; transform: translate(-50%, -50%); animation-delay: 1.3s; }
.wfi-hero-orbit__node--bottom { left: 50%; top: 88%; transform: translate(-50%, -50%); animation-delay: 1.5s; }
.wfi-hero-orbit__node--bottom-left { left: 23.1%; top: 76.9%; transform: translate(-50%, -50%); animation-delay: 1.7s; }
.wfi-hero-orbit__node--left { left: 12%; top: 50%; transform: translate(-50%, -50%); animation-delay: 1.9s; }
.wfi-hero-orbit__node--top-left { left: 23.1%; top: 23.1%; transform: translate(-50%, -50%); animation-delay: 2.1s; }

.wfi-hero-orbit__stat {
    position: absolute;
    z-index: 50;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: wfi-orbit-card-appear 0.8s forwards;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wfi-hero-orbit__stat:hover {
    transform: translateY(-6px);
}

.wfi-hero-orbit__stat strong {
    display: block;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    line-height: 1.1;
    color: var(--wfi-orbit-accent-2);
}

.wfi-hero-orbit__stat span {
    display: block;
    margin-top: 0.15rem;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 0.72rem;
    color: rgba(220, 230, 255, 0.82);
}

.wfi-hero-orbit__stat--1 { left: -4%; top: 24%; animation-delay: 2.2s; }
.wfi-hero-orbit__stat--2 { right: -4%; top: 22%; animation-delay: 2.4s; }
.wfi-hero-orbit__stat--3 { left: 2%; bottom: 22%; animation-delay: 2.6s; }
.wfi-hero-orbit__stat--4 { right: 2%; bottom: 20%; animation-delay: 2.8s; }
.wfi-hero-orbit__stat--5 { left: 50%; bottom: -3%; transform: translateX(-50%); animation-delay: 3s; }

.wfi-hero-orbit__stat--5:hover {
    transform: translateX(-50%) translateY(-6px);
}

.wfi-hero-orbit__star {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    animation: wfi-orbit-twinkle 3s ease infinite;
}

.wfi-hero-orbit__star--1 { top: 8%; left: 10%; }
.wfi-hero-orbit__star--2 { top: 18%; right: 12%; animation-duration: 5s; }
.wfi-hero-orbit__star--3 { top: 46%; left: 3%; }
.wfi-hero-orbit__star--4 { top: 48%; right: 5%; animation-duration: 5s; }
.wfi-hero-orbit__star--5 { bottom: 14%; left: 12%; }
.wfi-hero-orbit__star--6 { bottom: 12%; right: 12%; animation-duration: 5s; }

@keyframes wfi-orbit-appear {
    from { opacity: 0; transform: translateY(30px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wfi-orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes wfi-orbit-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes wfi-orbit-center-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes wfi-orbit-center-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes wfi-orbit-node-appear {
    0% { opacity: 0; }
    70% { opacity: 1; }
    100% { opacity: 1; }
}

@keyframes wfi-orbit-icon-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(240, 137, 79, 0); }
    50% { transform: scale(1.1); box-shadow: 0 0 22px rgba(240, 137, 79, 0.45); }
}

@keyframes wfi-orbit-card-appear {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; }
}

@keyframes wfi-orbit-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.5); }
}

@media (max-width: 991.98px) {
    .wfi-hero-orbit {
        max-width: 440px;
    }
}

@media (max-width: 575.98px) {
    .wfi-hero-orbit {
        max-width: 340px;
    }

    .wfi-hero-orbit__stat span {
        display: none;
    }

    .wfi-hero-orbit__stat {
        padding: 0.4rem 0.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wfi-hero-orbit,
    .wfi-hero-orbit *,
    .wfi-hero-orbit *::before {
        animation: none !important;
    }

    .wfi-hero-orbit__node,
    .wfi-hero-orbit__stat,
    .wfi-hero-orbit__lines line {
        opacity: 1 !important;
        stroke-dashoffset: 0 !important;
    }
}

.wfi-home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--wfi-hero-badge-border);
    border-radius: 999px;
    background: rgba(8, 20, 55, 0.55);
    color: var(--wfi-hero-badge-text);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.wfi-home-hero__badge-icon {
    font-size: 0.7rem;
    line-height: 1;
    color: #a8c4ff;
}

.wfi-home-hero__title {
    margin: 0 0 1.15rem;
    color: #fff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 800;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: none;
}

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

.wfi-home-hero__lead {
    margin: 0 0 2rem;
    max-width: 36rem;
    color: var(--wfi-hero-muted);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.55;
}

.wfi-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wfi-home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.9rem 1.35rem;
    border-radius: 10px;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.wfi-home-hero__btn--primary {
    background: var(--wfi-hero-orange);
    color: #fff !important;
    border: 1px solid var(--wfi-hero-orange);
}

.wfi-home-hero__btn--primary:hover {
    background: var(--wfi-hero-orange-hover);
    border-color: var(--wfi-hero-orange-hover);
    color: #fff !important;
}

.wfi-home-hero__btn--ghost {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.wfi-home-hero__btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
}

.wfi-home-hero__btn-arrow {
    font-weight: 400;
    font-size: 1.05rem;
}

.wfi-home-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.wfi-home-hero__stat {
    margin: 0;
    min-width: 0;
}

.wfi-home-hero__stat-value {
    margin: 0 0 0.4rem;
    color: #fff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.wfi-home-hero__stat-label {
    margin: 0;
    color: var(--wfi-hero-stat-label);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 991.98px) {
    .wfi-home-hero__inner {
        grid-template-columns: 1fr;
    }

    .wfi-home-hero__media {
        order: -1;
        min-height: 220px;
    }

    .wfi-home-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1.25rem;
        padding-top: 0.25rem;
    }

    .wfi-home-hero__stat:nth-child(odd) {
        padding-right: 0.75rem;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .wfi-home-hero__stat-value {
        font-size: clamp(1.45rem, 6vw, 1.85rem);
    }

    .wfi-home-hero__stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 767.98px) {
    .wfi-home-hero {
        padding: 2.75rem 0 2.5rem;
    }

    .wfi-home-hero__title {
        max-width: none;
    }

    .wfi-home-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wfi-home-hero__btn {
        width: 100%;
    }

    .wfi-home-hero__stats {
        gap: 1.25rem 1rem;
    }
}

@media (max-width: 399.98px) {
    .wfi-home-hero__stats {
        gap: 1.1rem 0.75rem;
    }

    .wfi-home-hero__stat:nth-child(odd) {
        padding-right: 0.5rem;
    }

    .wfi-home-hero__stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }
}

/* ---------- University partners ---------- */
.wfi-home-partners {
    background: #ffffff;
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}

.wfi-home-partners__inner {
    width: 100%;
    max-width: var(--wfi-container, 1280px);
    margin: 0 auto;
    padding-left: var(--wfi-gutter, 1.25rem);
    padding-right: var(--wfi-gutter, 1.25rem);
    box-sizing: border-box;
}

.wfi-home-partners__logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem 1.15rem;
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.wfi-home-partners__item {
    margin: 0;
    min-width: 0;
}

.wfi-home-partners__card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    height: 100%;
    padding: 1rem 1.15rem;
    background: #f4f1ec;
    border-radius: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.wfi-home-partners__card:hover {
    background: #efeae3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.wfi-home-partners__card img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.wfi-home-partners__title {
    margin: 0;
    text-align: center;
    color: #4a4a4a;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

@media (max-width: 991.98px) {
    .wfi-home-partners__logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .wfi-home-partners__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin-bottom: 1.35rem;
    }

    .wfi-home-partners__card {
        min-height: 84px;
        padding: 0.85rem;
        border-radius: 12px;
    }

    .wfi-home-partners__card img {
        max-height: 48px;
    }
}

/* ---------- Skills & Role-Based AI Programs ---------- */
.wfi-home-programs {
    background: #ffffff;
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.wfi-home-programs__inner {
    width: 100%;
    max-width: var(--wfi-container, 1280px);
    margin: 0 auto;
    padding-left: var(--wfi-gutter, 1.25rem);
    padding-right: var(--wfi-gutter, 1.25rem);
    box-sizing: border-box;
}

.wfi-home-programs__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: #ebe7ff;
    color: #3d3a8f;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.wfi-home-programs__title {
    margin: 0 0 2rem;
    text-align: center;
    color: #111111;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.wfi-home-programs__carousel {
    --wfi-prog-gap: 1.15rem;
    --wfi-prog-visible: 4;
    position: relative;
    margin: 0 0 2rem;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.wfi-home-programs__viewport {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.wfi-home-programs__track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: var(--wfi-prog-gap);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: translate3d(0, 0, 0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    box-sizing: border-box;
}

.wfi-home-programs__track.is-jumping {
    transition: none !important;
}

.wfi-home-programs__slide {
    flex: 0 0 calc((100% - (var(--wfi-prog-visible) - 1) * var(--wfi-prog-gap)) / var(--wfi-prog-visible)) !important;
    width: calc((100% - (var(--wfi-prog-visible) - 1) * var(--wfi-prog-gap)) / var(--wfi-prog-visible)) !important;
    max-width: calc((100% - (var(--wfi-prog-visible) - 1) * var(--wfi-prog-gap)) / var(--wfi-prog-visible)) !important;
    min-width: calc((100% - (var(--wfi-prog-visible) - 1) * var(--wfi-prog-gap)) / var(--wfi-prog-visible)) !important;
    box-sizing: border-box !important;
    height: auto;
    margin: 0 !important;
    float: none !important;
}

@media (max-width: 1199.98px) {
    .wfi-home-programs__carousel {
        --wfi-prog-visible: 2;
    }
}

@media (max-width: 575.98px) {
    .wfi-home-programs__carousel {
        --wfi-prog-visible: 1;
    }
}

.wfi-home-programs__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wfi-home-programs__nav svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
}

.wfi-home-programs__nav--prev {
    left: 0.35rem;
}

.wfi-home-programs__nav--next {
    right: 0.35rem;
}

.wfi-home-programs__nav:hover,
.wfi-home-programs__nav:focus-visible {
    background: var(--wfi-orange, #d3612b);
    border-color: var(--wfi-orange, #d3612b);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(211, 97, 43, 0.28);
    outline: none;
}

.wfi-home-programs__nav:active {
    background: var(--wfi-orange-hover, #c0551c);
    border-color: var(--wfi-orange-hover, #c0551c);
}

@media (max-width: 767.98px) {
    .wfi-home-programs__nav {
        width: 2.4rem;
        height: 2.4rem;
    }

    .wfi-home-programs__nav--prev {
        left: 0.15rem;
    }

    .wfi-home-programs__nav--next {
        right: 0.15rem;
    }
}

.wfi-home-programs__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #ffffff;
    border: 1px solid #eceff3;
    border-radius: 16px;
    border-top: 4px solid #d0d5dd;
    padding: 1.15rem 1.15rem 1.25rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
    min-width: 0;
    box-sizing: border-box;
}

.wfi-home-programs__card--orange { border-top-color: #d3612b; }
.wfi-home-programs__card--gray { border-top-color: #c5cad3; }
.wfi-home-programs__card--blue { border-top-color: #3b82f6; }
.wfi-home-programs__card--gold { border-top-color: #e3b341; }
.wfi-home-programs__card--teal { border-top-color: #14b8a6; }

.wfi-home-programs__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.wfi-home-programs__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.wfi-home-programs__pill--bootcamp {
    background: #fde8dc;
    color: #b84a1a;
}

.wfi-home-programs__pill--status {
    background: #eef1f5;
    color: #5b6472;
}

.wfi-home-programs__pill--status.is-new {
    background: #3a3f4b;
    color: #ffffff;
}

.wfi-home-programs__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.wfi-home-programs__icon svg {
    width: 22px;
    height: 22px;
}

.wfi-home-programs__icon--briefcase {
    background: #fff0e8;
    color: #d3612b;
}

.wfi-home-programs__icon--terminal {
    background: #f0ebff;
    color: #6d5ae6;
}

.wfi-home-programs__icon--code {
    background: #e8f1ff;
    color: #3b82f6;
}

.wfi-home-programs__icon--megaphone {
    background: #f3f4f6;
    color: #6b7280;
}

.wfi-home-programs__icon--palette {
    background: #fff0e8;
    color: #d3612b;
}

.wfi-home-programs__card-title {
    margin: 0 0 0.55rem;
    color: #111111;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
}

.wfi-home-programs__card-desc {
    margin: 0 0 0.9rem;
    color: #6b7280;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1.5;
    flex: 1 1 auto;
}

.wfi-home-programs__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 0 0 0.95rem;
    padding: 0;
}

.wfi-home-programs__tags li {
    margin: 0;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1;
}

.wfi-home-programs__salary {
    margin: 0 0 1rem;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    line-height: 1.2;
}

.wfi-home-programs__salary strong {
    color: #111111;
    font-weight: 700;
    font-size: 1.05rem;
}

.wfi-home-programs__salary span {
    margin-left: 0.35rem;
    color: #6b7280;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 0.8rem;
}

.wfi-home-programs__learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid #3b82f6;
    border-radius: 10px;
    color: #2563eb !important;
    background: #ffffff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.wfi-home-programs__learn:hover {
    background: #eff6ff;
    color: #1d4ed8 !important;
}

.wfi-home-programs__footer {
    display: flex;
    justify-content: center;
}

.wfi-home-programs__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 1.35rem;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #111111 !important;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none !important;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.wfi-home-programs__view-all:hover {
    border-color: #9ca3af;
    background: #f9fafb;
    color: #111111 !important;
}

@media (max-width: 575.98px) {
    .wfi-home-programs__view-all {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wfi-home-programs__track {
        transition: none;
    }
}

/* ---------- The Problem ---------- */
.wfi-home-problem {
    background: #07111f;
    padding: clamp(3rem, 7vw, 5rem) 0;
    color: #ffffff;
}

.wfi-home-problem__inner {
    width: 100%;
    max-width: var(--wfi-container, 1280px);
    margin: 0 auto;
    padding-left: var(--wfi-gutter, 1.25rem);
    padding-right: var(--wfi-gutter, 1.25rem);
    box-sizing: border-box;
}

.wfi-home-problem__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 1.1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(110, 160, 255, 0.45);
    background: rgba(20, 40, 80, 0.65);
    color: #d8e6ff;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.wfi-home-problem__badge-icon {
    color: #f5c542;
    font-size: 0.85rem;
    line-height: 1;
}

.wfi-home-problem__title {
    margin: 0 auto 2rem;
    max-width: 18ch;
    text-align: center;
    color: #ffffff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.wfi-home-problem__panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #121c2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
}

.wfi-home-problem__item {
    position: relative;
    padding: 1.5rem 1.35rem 1.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.wfi-home-problem__item:last-child {
    border-right: 0;
}

.wfi-home-problem__item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.35rem;
}

.wfi-home-problem__num {
    color: rgba(180, 195, 220, 0.45);
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: 1.65rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.wfi-home-problem__x {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.wfi-home-problem__item-title {
    margin: 0 0 0.55rem;
    color: #ffffff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
}

.wfi-home-problem__item-desc {
    margin: 0;
    color: rgba(210, 220, 235, 0.72);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .wfi-home-problem__panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wfi-home-problem__item:nth-child(2n) {
        border-right: 0;
    }

    .wfi-home-problem__item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 575.98px) {
    .wfi-home-problem__title {
        max-width: none;
    }

    .wfi-home-problem__panel {
        grid-template-columns: 1fr;
    }

    .wfi-home-problem__item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wfi-home-problem__item:last-child {
        border-bottom: 0;
    }
}

/* ---------- From Learning to Hired ---------- */
.wfi-home-lifecycle {
    background: #f5f6f8;
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.wfi-home-lifecycle__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    width: 100%;
    max-width: var(--wfi-container, 1280px);
    margin: 0 auto;
    padding-left: var(--wfi-gutter, 1.25rem);
    padding-right: var(--wfi-gutter, 1.25rem);
    box-sizing: border-box;
}

.wfi-home-lifecycle__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: var(--wfi-orange, #d3612b);
    color: #ffffff;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.wfi-home-lifecycle__title {
    margin: 0 0 1.5rem;
    color: #0f1b2d;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.wfi-home-lifecycle__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.wfi-home-lifecycle__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    margin: 0;
    padding: 0.95rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.wfi-home-lifecycle__step:hover {
    border-color: #d1d5db;
}

.wfi-home-lifecycle__step.is-active {
    border-color: var(--wfi-orange, #d3612b);
    background: #fff6f0;
    box-shadow: 0 8px 20px rgba(211, 97, 43, 0.08);
}

.wfi-home-lifecycle__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.wfi-home-lifecycle__step.is-active .wfi-home-lifecycle__step-num {
    background: #ffe4d4;
    color: var(--wfi-orange, #d3612b);
}

.wfi-home-lifecycle__step-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.wfi-home-lifecycle__step-title {
    color: #111827;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
    transition: color 0.25s ease;
}

.wfi-home-lifecycle__step.is-active .wfi-home-lifecycle__step-title {
    color: var(--wfi-orange, #d3612b);
}

.wfi-home-lifecycle__step-desc {
    color: #6b7280;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1.45;
}

.wfi-home-lifecycle__visual {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: sticky;
    top: 6rem;
}

.wfi-home-lifecycle__shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #dbe1ea;
    box-shadow: 0 10px 28px rgba(15, 27, 45, 0.1);
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.wfi-home-lifecycle__shot--prev,
.wfi-home-lifecycle__shot--next {
    opacity: 0.78;
    transform: scale(0.985);
}

.wfi-home-lifecycle__shot--active,
.wfi-home-lifecycle__shot.is-featured {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 16px 36px rgba(15, 27, 45, 0.16);
    outline: 2px solid rgba(211, 97, 43, 0.35);
    outline-offset: 0;
}

.wfi-home-lifecycle__shot img {
    display: block;
    width: 100%;
    height: 168px;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.45s ease;
}

.wfi-home-lifecycle__shot--active img {
    height: 220px;
}

.wfi-home-lifecycle__shot img.is-switching {
    opacity: 0.35;
    transform: scale(1.03);
}

.wfi-home-lifecycle__shot-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    margin: 0;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: var(--wfi-orange, #d3612b);
    color: #ffffff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.2;
    box-shadow: 0 6px 16px rgba(211, 97, 43, 0.28);
}

@media (max-width: 991.98px) {
    .wfi-home-lifecycle__inner {
        grid-template-columns: 1fr;
    }

    .wfi-home-lifecycle__visual {
        position: static;
        order: -1;
    }

    .wfi-home-lifecycle__shot img,
    .wfi-home-lifecycle__shot--active img {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .wfi-home-lifecycle__shot img,
    .wfi-home-lifecycle__shot--active img {
        height: 150px;
    }
}

/* ---------- Audiences: Job Seekers / Employers / Universities ---------- */
.wfi-home-audiences {
    background: #07111f;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    color: #ffffff;
}

.wfi-home-audiences__inner {
    width: 100%;
    max-width: var(--wfi-container, 1280px);
    margin: 0 auto;
    padding-left: var(--wfi-gutter, 1.25rem);
    padding-right: var(--wfi-gutter, 1.25rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4.5rem);
}

.wfi-home-audiences__row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3.25rem);
    align-items: center;
}

.wfi-home-audiences__row.is-reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.wfi-home-audiences__row.is-reverse .wfi-home-audiences__media {
    order: 2;
}

.wfi-home-audiences__row.is-reverse .wfi-home-audiences__content {
    order: 1;
}

.wfi-home-audiences__media {
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.wfi-home-audiences__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    transform-origin: center center;
    will-change: transform;
    animation: wfi-audiences-kenburns 12s ease-in-out infinite alternate;
}

.wfi-home-audiences__row:nth-child(2) .wfi-home-audiences__media img {
    animation-name: wfi-audiences-kenburns-alt;
    animation-duration: 14s;
}

.wfi-home-audiences__row:nth-child(3) .wfi-home-audiences__media img {
    animation-duration: 13s;
    animation-delay: -3s;
}

@keyframes wfi-audiences-kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.08) translate(-2.5%, -1.5%);
    }
}

@keyframes wfi-audiences-kenburns-alt {
    0% {
        transform: scale(1.08) translate(2%, 1%);
    }
    100% {
        transform: scale(1) translate(-1.5%, -2%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wfi-home-audiences__media img {
        animation: none !important;
        transform: none !important;
    }
}

.wfi-home-audiences__content {
    min-width: 0;
}

.wfi-home-audiences__label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.2;
}

.wfi-home-audiences__label-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: currentColor;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}

.wfi-home-audiences__label-icon--person {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5z'/%3E%3C/svg%3E");
}

.wfi-home-audiences__label-icon--building {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 21h16v-2H4zm2-4h2v-3H6zm4 0h2v-3h-2zm4 0h2v-3h-2zM6 12h2V9H6zm4 0h2V9h-2zm4 0h2V9h-2zM3 21V7l9-4 9 4v14z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 21h16v-2H4zm2-4h2v-3H6zm4 0h2v-3h-2zm4 0h2v-3h-2zM6 12h2V9H6zm4 0h2V9h-2zm4 0h2V9h-2zM3 21V7l9-4 9 4v14z'/%3E%3C/svg%3E");
}

.wfi-home-audiences__label-icon--campus {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3 1 9l11 6 9-4.9V17h2V9L12 3zm0 12.7L4.5 11.5 12 7.4l7.5 4.1L12 15.7z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3 1 9l11 6 9-4.9V17h2V9L12 3zm0 12.7L4.5 11.5 12 7.4l7.5 4.1L12 15.7z'/%3E%3C/svg%3E");
}

.wfi-home-audiences__title {
    margin: 0 0 0.85rem;
    color: #ffffff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.wfi-home-audiences__desc {
    margin: 0 0 1.15rem;
    max-width: 34rem;
    color: rgba(220, 228, 240, 0.78);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.55;
}

.wfi-home-audiences__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
}

.wfi-home-audiences__tags li {
    margin: 0;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(211, 97, 43, 0.55);
    color: rgba(255, 214, 190, 0.95);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.2;
}

.wfi-home-audiences__row--universities .wfi-home-audiences__tags li:first-child {
    border-color: rgba(180, 190, 210, 0.45);
    color: rgba(220, 228, 240, 0.88);
}

.wfi-home-audiences__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 1.25rem;
    border-radius: 10px;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wfi-home-audiences__cta--ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #ffffff !important;
}

.wfi-home-audiences__cta--ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff !important;
}

.wfi-home-audiences__cta--primary {
    background: var(--wfi-orange, #d3612b);
    border: 1.5px solid var(--wfi-orange, #d3612b);
    color: #ffffff !important;
}

.wfi-home-audiences__cta--primary:hover {
    background: var(--wfi-orange-hover, #c0551c);
    border-color: var(--wfi-orange-hover, #c0551c);
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .wfi-home-audiences__row,
    .wfi-home-audiences__row.is-reverse {
        grid-template-columns: 1fr;
    }

    .wfi-home-audiences__row.is-reverse .wfi-home-audiences__media,
    .wfi-home-audiences__row.is-reverse .wfi-home-audiences__content {
        order: initial;
    }

    .wfi-home-audiences__media {
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .wfi-home-audiences__cta {
        width: 100%;
    }
}

/* ------------------------------------------------------------------ */
/* Testimonials carousel                                              */
/* ------------------------------------------------------------------ */

.wfi-home-testimonials {
    --wfi-t-active: #1a2744;
    --wfi-t-muted: #93a0b4;
    --wfi-t-role: #a7b0bf;
    --wfi-t-star: #f0c419;
    --wfi-t-slide: min(340px, 78vw);

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.75rem, 5vw, 4rem);
    overflow: hidden;
    background: #ffffff;
    color: var(--wfi-t-active);
    box-sizing: border-box;
}

.wfi-home-testimonials__viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.wfi-home-testimonials__track {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    width: max-content;
    margin: 0 auto;
    padding: 0.25rem 0 0.5rem;
    transform: translate3d(0, 0, 0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.wfi-home-testimonials__track.is-jumping {
    transition: none;
}

.wfi-home-testimonials__slide {
    flex: 0 0 var(--wfi-t-slide);
    width: var(--wfi-t-slide);
    max-width: var(--wfi-t-slide);
    text-align: center;
    cursor: pointer;
    color: var(--wfi-t-muted);
    transition: color 0.35s ease;
    outline: none;
    user-select: none;
}

.wfi-home-testimonials__slide.is-active {
    color: var(--wfi-t-active);
    cursor: default;
}

.wfi-home-testimonials__avatar {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.05rem;
    border-radius: 50%;
    object-fit: cover;
    background: #e8ecf2;
    box-shadow: 0 0 0 1px rgba(26, 39, 68, 0.04);
    transition: opacity 0.35s ease;
}

.wfi-home-testimonials__slide:not(.is-active) .wfi-home-testimonials__avatar {
    opacity: 0.88;
}

.wfi-home-testimonials__name {
    margin: 0 0 0.35rem;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: inherit;
}

.wfi-home-testimonials__role {
    margin: 0 0 1.15rem;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--wfi-t-role);
}

.wfi-home-testimonials__quote {
    margin: 0 0 1.15rem;
    padding: 0;
    border: 0;
}

.wfi-home-testimonials__quote p {
    margin: 0;
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.55;
    color: inherit;
}

.wfi-home-testimonials__slide.is-active .wfi-home-testimonials__quote p {
    font-weight: 600;
    color: var(--wfi-t-active);
}

.wfi-home-testimonials__stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    line-height: 1;
}

.wfi-home-testimonials__star {
    font-size: 0.78rem;
    color: #d7dde8;
}

.wfi-home-testimonials__star.is-on {
    color: var(--wfi-t-star);
}

.wfi-home-testimonials__pager {
    margin: 2.25rem 0 0;
    text-align: center;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.wfi-home-testimonials__pager-current {
    font-weight: 700;
    color: #111827;
}

.wfi-home-testimonials__pager-sep,
.wfi-home-testimonials__pager-total {
    font-weight: 600;
    color: #9aa3b2;
}

@media (max-width: 767.98px) {
    .wfi-home-testimonials {
        --wfi-t-slide: min(300px, 82vw);
        padding-top: 3rem;
        padding-bottom: 2.5rem;
    }

    .wfi-home-testimonials__avatar {
        width: 64px;
        height: 64px;
    }

    .wfi-home-testimonials__pager {
        margin-top: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wfi-home-testimonials__track {
        transition: none;
    }
}

/* ------------------------------------------------------------------ */
/* Ready CTA                                                          */
/* ------------------------------------------------------------------ */

.wfi-home-cta {
    --wfi-cta-orange: #d3612b;
    --wfi-cta-orange-hover: #c0551c;

    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    color: #ffffff;
    background: #03040a;
    box-sizing: border-box;
}

.wfi-home-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 62% 52% at 50% -4%, rgba(72, 132, 255, 0.72) 0%, rgba(28, 72, 180, 0.28) 34%, transparent 68%),
        repeating-conic-gradient(
            from -90deg at 50% -10%,
            transparent 0deg 7.5deg,
            rgba(95, 155, 255, 0.16) 7.5deg 8.5deg,
            transparent 8.5deg 15deg
        ),
        linear-gradient(180deg, #07122e 0%, #04060f 42%, #03040a 100%);
}

.wfi-home-cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 4, 10, 0.05) 0%, rgba(3, 4, 10, 0.45) 58%, #03040a 100%);
}

.wfi-home-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.wfi-home-cta__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.35rem;
    padding: 0.42rem 0.95rem;
    border: 1px solid rgba(211, 97, 43, 0.9);
    border-radius: 999px;
    background: rgba(211, 97, 43, 0.06);
    color: var(--wfi-cta-orange);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.wfi-home-cta__title {
    margin: 0 auto 1.1rem;
    max-width: 16ch;
    color: #ffffff;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 700;
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.wfi-home-cta__lead {
    margin: 0 auto 2rem;
    max-width: 40rem;
    color: rgba(210, 218, 232, 0.78);
    font-family: var(--wfi-font-body, "Inter", sans-serif);
    font-weight: 300;
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.6;
}

.wfi-home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1rem;
}

.wfi-home-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: 10px;
    font-family: var(--wfi-font-display, "Sora", sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wfi-home-cta__btn--primary {
    background: var(--wfi-cta-orange);
    border: 1px solid var(--wfi-cta-orange);
    color: #ffffff !important;
}

.wfi-home-cta__btn--primary:hover {
    background: var(--wfi-cta-orange-hover);
    border-color: var(--wfi-cta-orange-hover);
    color: #ffffff !important;
}

.wfi-home-cta__btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff !important;
}

.wfi-home-cta__btn--ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff !important;
}

.wfi-home-cta__btn-arrow {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .wfi-home-cta__actions {
        flex-direction: column;
        width: 100%;
    }

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

