/* For Employers — Stitch */

@import url("fonts/stylesheet.css");

:root {
    --primary-2: #0024A6;
    --primary-1: #113DD9;
    --primary0: #265CFF;
    --primary1: #77A2FF;
    --primary3: #BAD2FF;
    --primary4: #EBF1FF;
    --primary-transparent: #77a2ff6b;
    --text-header: #0d0e0f;
    --text-body: #000000;
    --shadow-small: 0 8px 12px 2px rgba(0, 28, 53, 0.05);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "gordita", sans-serif;
}

html,
body {
    font-family: "gordita", sans-serif;
    overflow-x: hidden;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

/* ===================== HEADER ===================== */
.fe-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fe-header__nav {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    gap: 24px;
}

.fe-header__logo img {
    width: 200px;
    height: auto;
    display: block;
}

.fe-header__links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.fe-header__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-header);
    text-decoration: none;
    line-height: 24px;
    white-space: nowrap;
}

.fe-header__link:hover {
    color: var(--primary0);
    text-decoration: none;
}

.fe-header__link--active {
    color: var(--primary0);
    font-weight: 600;
}

.fe-header__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fe-header__register {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-header);
    text-decoration: none;
}

.fe-header__register:hover {
    color: var(--primary0);
    text-decoration: none;
}

.fe-header__login-btn {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary0);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.2s ease;
}

.fe-header__login-btn:hover {
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
}

.fe-header__login-btn img {
    width: 16px;
    height: 16px;
}

.fe-header__lang {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #d9dde3;
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-header);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.fe-header__lang img {
    width: 12px;
    height: auto;
}

/* Mobile hamburger */
.fe-header__hamburger {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.fe-header__hamburger img {
    width: 28px;
    height: 28px;
    display: block;
}

/* Mobile nav overlay */
.fe-header__mobile-nav {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99;
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.fe-header__mobile-nav.is-open {
    display: flex;
}

.fe-header__mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-header);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.fe-header__mobile-link:hover {
    color: var(--primary0);
    text-decoration: none;
}

.fe-header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

/* ===================== HERO SECTION ===================== */
.fe-hero {
    background: #ffffff;
    padding: 0;
    display: flex;
    align-items: center;
}

.fe-hero__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 72px 64px 64px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 48px;
}

.fe-hero__left {
    flex: 0 0 50%;
    min-width: 0;
    padding-top: 0;
}

.fe-hero__right {
    flex: 0 0 46%;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 48px;
}

/* Badge */
.fe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8f0fe;
    border: 1px solid #d0dffc;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 32px;
}

.fe-badge__dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary0);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    top: 0;
}

.fe-badge__text {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary0);
    line-height: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Heading */
.fe-heading {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.08;
    color: var(--text-header);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.fe-heading--blue {
    color: var(--primary0);
}

/* Subtext */
.fe-subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 480px;
}

/* CTA Buttons */
.fe-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.fe-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f7f8fa;
    color: var(--text-header);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 16px 36px;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.fe-cta-primary:hover {
    color: var(--text-header);
    box-shadow: var(--shadow-small);
    text-decoration: none;
}

.fe-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary0);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.fe-cta-secondary:hover {
    color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
    text-decoration: none;
}

/* Stats */
.fe-stats {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.fe-stat {
    display: flex;
    flex-direction: column;
    padding-right: 28px;
}

.fe-stat:not(:first-child) {
    padding-left: 28px;
    border-left: 1.5px solid #e5e7eb;
}

.fe-stat__value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 2px;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.fe-stat__label {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Calendly inline expand */
.fe-calendly-inline {
    display: none;
    width: 100%;
    max-width: 540px;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    animation: fe-slideDown 0.3s ease;
}

.fe-calendly-inline.is-open {
    display: block;
}

.fe-calendly-inline iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}

@keyframes fe-slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Calendly modal popup */
.fe-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    align-items: center;
    justify-content: center;
    animation: fe-fadeIn 0.2s ease;
}

.fe-modal-overlay.is-open {
    display: flex;
}

@keyframes fe-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fe-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 680px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    animation: fe-scaleIn 0.25s ease;
    position: relative;
}

@keyframes fe-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fe-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.fe-modal__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-header);
}

.fe-modal__close {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #6b7280;
    transition: background 0.15s ease;
}

.fe-modal__close:hover {
    background: #f3f4f6;
}

.fe-modal__body {
    padding: 0;
}

.fe-modal__body iframe {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

/* Hero image */
.fe-hero__image-wrapper {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fe-hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Hero — Cream variant (employer-changes.html) ===== */
.fe-hero--cream {
    background: var(--primary4);
}

.fe-hero--cream .fe-hero__container {
    padding: 96px 64px 96px;
    flex-direction: row-reverse;
}

.fe-hero--cream .fe-hero__left {
    flex: 0 0 52%;
}

.fe-hero--cream .fe-hero__right {
    flex: 0 0 44%;
    padding-top: 0;
    align-items: center;
    justify-content: flex-start;
}

.fe-hero__topline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.fe-hero__pill {
    display: inline-flex;
    align-items: center;
    background: var(--primary3);
    color: var(--primary-2);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 14px;
    border-radius: 6px;
}

.fe-hero__eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-header);
    text-transform: uppercase;
}

.fe-heading--cream {
    color: var(--text-header);
    margin-bottom: 28px;
    font-size: 64px;
    letter-spacing: -1.2px;
}

.fe-subtext--cream {
    color: #2a2a2a;
    font-size: 16px;
    line-height: 27px;
    max-width: 540px;
    margin-bottom: 40px;
}

.fe-subtext--list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fe-subtext--list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fe-subtext__icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #EFF3FF 100%);
    border: 1px solid rgba(38, 92, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #265CFF;
    margin-top: -4px;
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fe-subtext__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(38, 92, 255, 0.06) 0%, rgba(17, 61, 217, 0) 100%);
    pointer-events: none;
}

.fe-subtext--list li:hover .fe-subtext__icon {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(38, 92, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fe-hero--cream .fe-hero__image-wrapper {
    box-shadow: 0 24px 48px rgba(0, 28, 80, 0.10), 0 4px 12px rgba(0, 28, 80, 0.05);
}

.fe-hero__image-wrapper--svg {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    max-width: 720px;
}

.fe-hero--cream.fe-hero--illustration .fe-hero__left {
    flex: 0 0 46%;
}

.fe-hero--cream.fe-hero--illustration .fe-hero__right {
    flex: 0 0 50%;
}

.fe-hero--cream .fe-hero__image-wrapper--svg {
    box-shadow: none;
}

.fe-hero__image--svg {
    object-fit: contain;
}

@media (max-width: 991px) {
    .fe-hero--cream .fe-hero__container {
        padding: 64px 32px;
        flex-direction: column-reverse;
    }

    .fe-hero--cream .fe-hero__left,
    .fe-hero--cream .fe-hero__right {
        flex: none;
        width: 100%;
    }

    .fe-hero--cream .fe-hero__left {
        text-align: left;
    }

    .fe-hero--cream .fe-hero__topline {
        justify-content: flex-start;
        display: inline-flex;
    }

    .fe-hero--cream .fe-cta-group {
        justify-content: flex-start;
    }

    .fe-heading--cream {
        font-size: 48px;
    }

    .fe-subtext--cream {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .fe-hero--cream .fe-hero__container {
        padding: 48px 20px;
    }

    .fe-heading--cream {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .fe-subtext--cream {
        font-size: 15px;
        line-height: 25px;
    }

    .fe-hero--cream .fe-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .fe-hero--cream .fe-cta-group .fe-cta-primary,
    .fe-hero--cream .fe-cta-group .fe-cta-secondary {
        width: 100%;
        max-width: none;
    }
}

/* ===================== PARTNERS / TRUSTED ===================== */
.fe-partners {
    background: #f7f9fc;
    border-top: 1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
}

.fe-partners__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 44px 24px;
    text-align: center;
}

.fe-partners__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #000000;
    margin-bottom: 16px;
}

.fe-partners__marquee {
    --marquee-gap: 56px;
    --marquee-duration: 48s;
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.fe-partners__scroll {
    display: flex;
    width: max-content;
    gap: var(--marquee-gap);
    animation: fe-partners-scroll var(--marquee-duration) linear infinite;
}

.fe-partners__marquee:hover .fe-partners__scroll {
    animation-play-state: paused;
}

.fe-partners__track {
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}

.fe-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 36px;
}

.fe-partners__logo {
    height: 28px;
    width: auto;
    max-width: 100%;
    opacity: 0.92;
    transition: opacity 180ms ease, transform 180ms ease;
}

.fe-partners__logo:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.fe-partners__logo--text {
    display: inline-flex;
    align-items: center;
    height: 28px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand, #111827);
    white-space: nowrap;
    line-height: 1;
}

@keyframes fe-partners-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - var(--marquee-gap) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
    .fe-partners__scroll {
        animation: none;
    }
}

/* ===================== ROLES & CANDIDATE VOICES ===================== */
.fe-roles {
    position: relative;
    background:
        radial-gradient(80% 60% at 0% 0%, rgba(38, 92, 255, 0.05) 0%, transparent 55%),
        radial-gradient(80% 60% at 100% 100%, rgba(38, 92, 255, 0.04) 0%, transparent 55%),
        #FAFBFD;
    border-top: 1px solid rgba(38, 92, 255, 0.08);
    border-bottom: 1px solid rgba(38, 92, 255, 0.08);
    overflow: hidden;
}

.fe-roles__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 112px;
    text-align: center;
}

.fe-roles__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #265CFF;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(38, 92, 255, 0.08);
    border: 1px solid rgba(38, 92, 255, 0.18);
    margin-bottom: 20px;
}

.fe-roles__heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-header);
    letter-spacing: -0.8px;
    margin: 0 auto 56px;
    max-width: 880px;
}

.fe-roles__heading--accent {
    color: #265CFF;
}

.fe-roles__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 96px;
    text-align: left;
}

.fe-roles__card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e7ecf5;
    border-radius: 20px;
    padding: 36px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.fe-roles__card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(60% 80% at 100% 0%, rgba(38, 92, 255, 0.06), transparent 60%);
}

.fe-roles__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -18px rgba(0, 28, 80, 0.14);
    border-color: rgba(38, 92, 255, 0.22);
}

.fe-roles__card-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

.fe-roles__card--blue .fe-roles__card-icon {
    background: linear-gradient(140deg, #265CFF 0%, #113DD9 100%);
    box-shadow: 0 10px 22px rgba(38, 92, 255, 0.30);
}

.fe-roles__card--white .fe-roles__card-icon {
    background: linear-gradient(140deg, #1a2540 0%, #2a3a5d 100%);
    box-shadow: 0 10px 22px rgba(26, 37, 64, 0.25);
}

.fe-roles__card-title {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-header);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.fe-roles__card-desc {
    position: relative;
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

/* Candidate voices */
.fe-roles__voices-header {
    margin-bottom: 40px;
}

.fe-roles__voices-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #265CFF;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fe-roles__voices-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-header);
    letter-spacing: -0.5px;
    margin: 0;
}

.fe-roles__voices-track-wrapper {
    overflow: hidden;
    text-align: left;
}

.fe-roles__voices-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 4px 12px;
    margin: -4px -4px 0;
}

.fe-roles__voices-track::-webkit-scrollbar {
    display: none;
}

.fe-roles__voice {
    position: relative;
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
    min-width: 280px;
    min-height: 320px;
    padding: 28px 28px 24px;
    background: #ffffff;
    border: 1px solid #e7ecf5;
    border-radius: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fe-roles__voice:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -16px rgba(0, 28, 80, 0.10);
    border-color: rgba(38, 92, 255, 0.22);
}

.fe-roles__voice-quote {
    width: 30px;
    height: 22px;
    color: rgba(38, 92, 255, 0.32);
    flex: 0 0 auto;
}

.fe-roles__voice-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
}

.fe-roles__voice-text {
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

.fe-roles__voice.is-open .fe-roles__voice-text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.fe-roles__voice-more {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #265CFF;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fe-roles__voice-more:hover {
    color: #113DD9;
    text-decoration: underline;
}

.fe-roles__voice-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    margin-top: auto;
    border-top: 1px solid #eef2f9;
}

.fe-roles__voice-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    border: 4px solid #ffffff;
    box-shadow:
        0 0 0 2px rgba(38, 92, 255, 0.28),
        0 10px 24px -8px rgba(0, 28, 80, 0.22),
        0 4px 10px -2px rgba(38, 92, 255, 0.18);
    background: #f3f5fa;
}

.fe-roles__voice-meta-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

/* Carousel arrows */
.fe-roles__voices-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.fe-roles__voices-arrow {
    appearance: none;
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(38, 92, 255, 0.4);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #265CFF;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.fe-roles__voices-arrow:hover {
    background: #265CFF;
    border-color: #265CFF;
    color: #ffffff;
    transform: scale(1.05);
}

.fe-roles__voices-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.fe-roles__voices-arrow:disabled:hover {
    background: #ffffff;
    border-color: rgba(38, 92, 255, 0.4);
    color: #265CFF;
}

.fe-roles__voice-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-header);
}

.fe-roles__voice-loc {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #265CFF;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .fe-roles__container {
        padding: 72px 24px 88px;
    }
    .fe-roles__heading {
        font-size: 36px;
    }
    .fe-roles__voices-heading {
        font-size: 26px;
    }
    .fe-roles__grid {
        grid-template-columns: 1fr;
        margin-bottom: 72px;
    }
    .fe-roles__voice {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 575px) {
    .fe-roles__container {
        padding: 56px 20px 72px;
    }
    .fe-roles__heading {
        font-size: 28px;
        letter-spacing: -0.4px;
        margin-bottom: 40px;
    }
    .fe-roles__voices-heading {
        font-size: 22px;
    }
    .fe-roles__card {
        padding: 26px;
    }
    .fe-roles__card-title {
        font-size: 20px;
    }
    .fe-roles__voice {
        padding: 22px 22px 20px;
        width: 86%;
        min-width: 0;
        min-height: 280px;
    }
}

/* ===================== VIDEO CAROUSEL ===================== */
.fe-videos {
    background: #ffffff;
}

/* Smart Hiring variant (employer-changes.html) */
.fe-videos--smart {
    background: rgba(38, 92, 255, 0.06);
    border-top: 1px solid rgba(38, 92, 255, 0.10);
    border-bottom: 1px solid rgba(38, 92, 255, 0.10);
}

.fe-videos--smart .fe-videos__container {
    padding: 96px 24px 96px;
}

.fe-videos__header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 56px;
}

.fe-videos--smart .fe-videos__heading {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.fe-videos__subheading {
    font-size: 16px;
    line-height: 26px;
    color: #2a2a2a;
    max-width: 720px;
}

.fe-videos__nav-arrows--bottom {
    justify-content: center;
    margin-top: 36px;
}

.fe-videos--smart .fe-videos__arrow {
    border-color: #265CFF;
    color: #265CFF;
}

.fe-videos--smart .fe-videos__arrow:hover {
    background: #265CFF;
    color: #ffffff;
    border-color: #265CFF;
    box-shadow: 0 8px 20px rgba(38, 92, 255, 0.25);
}

@media (max-width: 991px) {
    .fe-videos--smart .fe-videos__heading {
        font-size: 36px;
    }

    .fe-videos--smart .fe-videos__container {
        padding: 72px 24px 80px;
    }
}

@media (max-width: 575px) {
    .fe-videos--smart .fe-videos__heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .fe-videos__subheading {
        font-size: 14px;
        line-height: 24px;
    }
}

.fe-videos__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 24px 80px;
}

.fe-videos__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.fe-videos__heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-header);
    letter-spacing: -0.3px;
}

.fe-videos__nav-arrows {
    display: flex;
    gap: 10px;
}

.fe-videos__arrow {
    appearance: none;
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.fe-videos__arrow:hover {
    border-color: var(--primary0);
    color: var(--primary0);
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.12);
}

.fe-videos__track-wrapper {
    overflow: hidden;
    border-radius: 14px;
}

.fe-videos__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fe-videos__track::-webkit-scrollbar {
    display: none;
}

.fe-videos__card {
    min-width: calc(33.333% - 16px);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.fe-videos__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a2e;
    cursor: pointer;
}

.fe-videos__player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fe-videos__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: var(--primary0);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(38, 92, 255, 0.35);
}

.fe-videos__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(38, 92, 255, 0.5);
}

/* Smart Hiring section: square thumbnails (portrait video lightbox on click) */
.fe-videos--smart .fe-videos__track {
    gap: 24px;
    padding: 4px;
    margin: -4px;
    justify-content: center;
}

.fe-videos--smart .fe-videos__track-wrapper {
    border-radius: 0;
    overflow: visible;
}

.fe-videos--smart .fe-videos__card {
    flex: 0 1 calc((100% - 72px) / 4);
    min-width: 220px;
    max-width: 280px;
}

.fe-videos--smart .fe-videos__player {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: #0d0e0f;
    box-shadow:
        0 18px 40px -18px rgba(0, 28, 80, 0.30),
        0 4px 12px -4px rgba(0, 28, 80, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fe-videos--smart .fe-videos__player video {
    object-fit: cover;
    object-position: center top;
}

.fe-videos--smart .fe-videos__player:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 56px -20px rgba(0, 28, 80, 0.36),
        0 10px 24px -8px rgba(38, 92, 255, 0.22);
}

.fe-videos--smart .fe-videos__player::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.65) 100%);
    transition: opacity 0.3s ease;
}

.fe-videos--smart .fe-videos__player:hover::after {
    opacity: 0.65;
}

.fe-videos__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    line-height: 1;
}

.fe-videos__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF4D6A;
    box-shadow: 0 0 0 3px rgba(255, 77, 106, 0.30);
    animation: fe-vid-pulse 1.6s ease-in-out infinite;
}

@keyframes fe-vid-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 77, 106, 0.30); }
    50%      { box-shadow: 0 0 0 5px rgba(255, 77, 106, 0.12); }
}

.fe-videos--smart .fe-videos__play-btn {
    top: auto;
    left: auto;
    bottom: 14px;
    right: 14px;
    transform: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary0);
    z-index: 3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fe-videos--smart .fe-videos__play-btn svg {
    display: block;
    width: 16px;
    height: 16px;
    transform: translateX(1px);
}

.fe-videos--smart .fe-videos__play-btn svg path {
    fill: #265CFF;
}

.fe-videos--smart .fe-videos__player:hover .fe-videos__play-btn {
    transform: scale(1.08);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(38, 92, 255, 0.40);
}

.fe-videos__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 16px 72px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #ffffff;
    pointer-events: none;
}

.fe-videos__caption-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.1px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    line-height: 1.25;
}

.fe-videos__caption-sub {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.04em;
}

@media (max-width: 1199px) {
    .fe-videos--smart .fe-videos__card {
        flex: 0 1 calc((100% - 48px) / 3);
        max-width: 320px;
    }
}

@media (max-width: 991px) {
    .fe-videos--smart .fe-videos__track {
        justify-content: flex-start;
    }
    .fe-videos--smart .fe-videos__card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: 220px;
        max-width: none;
    }
}

@media (max-width: 575px) {
    .fe-videos--smart .fe-videos__track {
        gap: 16px;
    }
    .fe-videos--smart .fe-videos__card {
        flex: 0 0 80%;
        min-width: 240px;
    }
    .fe-videos__caption-title {
        font-size: 14px;
    }
}

/* Lightbox */
.fe-videos__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.fe-videos__lightbox.is-open {
    display: flex;
}

.fe-videos__lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: background 0.2s ease;
    z-index: 10;
}

.fe-videos__lightbox-close svg {
    display: block;
}

.fe-videos__lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fe-videos__lightbox-content {
    position: relative;
    display: inline-block;
    line-height: 0;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    background: #0d0e0f;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.50);
}

.fe-videos__lightbox-video {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    background: #000000;
    border-radius: 20px;
}

/* Landscape variant: 16:9 lightbox sizing */
.fe-videos__lightbox.is-landscape .fe-videos__lightbox-video {
    width: 90vw;
    max-width: 1280px;
    height: auto;
}

/* Calendly expand spacing */
.fe-calendly-inline.is-open {
    display: block;
    margin-top: 24px;
}

/* ===================== FEATURES ===================== */
.fe-features {
    background: #f7f9fc;
}

.fe-features__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px 88px;
    text-align: center;
}

.fe-features__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--primary0);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.fe-features__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-header);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.fe-features__subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 48px;
}

.fe-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.fe-features__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px 40px;
    text-align: left;
    border: 1px solid #edf1f7;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fe-features__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.fe-features__icon {
    width: 48px;
    height: 48px;
    display: block;
    margin-bottom: 20px;
}

.fe-features__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-header);
    margin-bottom: 12px;
    line-height: 1.3;
}

.fe-features__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #6b7280;
}

/* ===================== Recruiter-First Showcase variant ===================== */
.fe-features--showcase {
    background: #ffffff;
    border-top: 1px solid rgba(38, 92, 255, 0.08);
    border-bottom: 1px solid rgba(38, 92, 255, 0.08);
}

.fe-features--showcase .fe-features__container {
    max-width: 1280px;
    padding: 96px 24px 112px;
}

.fe-features--showcase .fe-features__eyebrow {
    color: #265CFF;
}

.fe-features--showcase .fe-features__heading {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.fe-features--showcase .fe-features__subtext {
    color: #2a2a2a;
    margin-bottom: 64px;
}

.fe-features__grid--showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.fe-features__card--showcase {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.fe-features__card--showcase:hover {
    transform: none;
    box-shadow: none;
}

.fe-features--showcase .fe-features__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-header);
    margin-bottom: 14px;
}

.fe-features--showcase .fe-features__desc {
    font-size: 16px;
    line-height: 26px;
    color: #2a2a2a;
}

/* Mock illustration block */
.fe-features__mock {
    position: relative;
    height: 280px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-mock__shape {
    position: absolute;
    background: #265CFF;
    opacity: 0.35;
    pointer-events: none;
}

.fe-mock__shape--tri-1 {
    width: 280px;
    height: 160px;
    top: 10%;
    left: 4%;
    clip-path: polygon(0 100%, 100% 20%, 80% 100%);
    transform: rotate(-8deg);
}

.fe-mock__shape--tri-2 {
    width: 250px;
    height: 140px;
    bottom: 4%;
    right: 2%;
    clip-path: polygon(0 0, 100% 60%, 30% 100%);
    transform: rotate(6deg);
    opacity: 0.18;
}

.fe-mock__panel {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(17, 61, 217, 0.18);
    width: 90%;
    max-width: 360px;
    overflow: hidden;
    border: 1px solid rgba(38, 92, 255, 0.12);
}

.fe-mock__panel-head {
    background: #113DD9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 18px;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fe-mock__panel-body {
    padding: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 72px;
}

.fe-mock__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #265CFF;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #113DD9;
}

.fe-mock__chip--file::before {
    content: '';
    width: 10px;
    height: 12px;
    background: #265CFF;
    -webkit-mask: linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0);
    clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%);
}

.fe-mock__sync {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #265CFF;
    color: #ffffff;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
}

.fe-mock__url {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    color: #4b5563;
    background: #F4F6FB;
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px dashed #265CFF;
    width: 100%;
    word-break: break-all;
    line-height: 1.55;
}

.fe-mock__price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: #113DD9;
    font-weight: 700;
}

.fe-mock__price-currency {
    font-size: 16px;
    line-height: 1;
}

.fe-mock__price-num {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.fe-mock__price-unit {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-left: 2px;
}

.fe-mock__url span {
    color: #113DD9;
    font-weight: 600;
}

.fe-mock__line {
    height: 10px;
    border-radius: 5px;
    background: rgba(38, 92, 255, 0.45);
}

.fe-mock__line--lg {
    width: 80%;
}

.fe-mock__line--md {
    width: 55%;
    background: rgba(38, 92, 255, 0.22);
}

.fe-mock__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fe-mock__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.fe-mock__token {
    position: absolute;
    z-index: 3;
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid #113DD9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #113DD9;
    box-shadow: 0 6px 16px rgba(17, 61, 217, 0.18);
}

.fe-mock__token svg {
    width: 24px;
    height: 24px;
}

.fe-mock__token--top {
    top: 6%;
    right: 8%;
    transform: rotate(8deg);
}

.fe-mock__token--bottom {
    bottom: 8%;
    right: 6%;
    transform: rotate(-6deg);
}

@media (max-width: 991px) {
    .fe-features__grid--showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fe-features--showcase .fe-features__heading {
        font-size: 36px;
    }

    .fe-features--showcase .fe-features__container {
        padding: 72px 24px 88px;
    }
}

@media (max-width: 575px) {
    .fe-features__grid--showcase {
        grid-template-columns: 1fr;
    }

    .fe-features--showcase .fe-features__heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .fe-features--showcase .fe-features__container {
        padding: 56px 20px 72px;
    }

    .fe-features__mock {
        height: 200px;
    }

    .fe-features__card--showcase {
        padding: 28px 26px 32px;
    }
}

/* ===================== OUTCOME-BASED PRICING (CPI / CPH) ===================== */
.fe-outcomes {
    --cpi: #265CFF;
    --cph: #265CFF;
    position: relative;
    background:
        radial-gradient(60% 50% at 12% 0%, rgba(38, 92, 255, 0.06) 0%, transparent 60%),
        radial-gradient(60% 50% at 100% 100%, rgba(38, 92, 255, 0.05) 0%, transparent 60%),
        #ffffff;
    border-top: 1px solid rgba(38, 92, 255, 0.08);
    border-bottom: 1px solid rgba(38, 92, 255, 0.08);
}

.fe-outcomes__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 112px;
    text-align: center;
}

.fe-outcomes__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--primary0, #265CFF);
    margin-bottom: 18px;
}

.fe-outcomes__heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-header, #0b1220);
    margin-bottom: 18px;
}

.fe-outcomes__heading--accent {
    color: var(--cpi);
}

.fe-outcomes__subtext {
    max-width: 680px;
    margin: 0 auto 56px;
    font-size: 17px;
    line-height: 1.65;
    color: #4b5563;
}

.fe-outcomes__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    text-align: left;
}

.fe-outcomes__card {
    --accent: var(--cpi);
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px 32px 36px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.fe-outcomes__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 30%, #e5e7eb);
    box-shadow: 0 18px 40px -16px color-mix(in srgb, var(--accent) 22%, transparent);
}

.fe-outcomes__card--cph { --accent: var(--cph); }

.fe-outcomes__media {
    position: relative;
    padding: 56px 18px 22px;
    margin: -8px -8px 28px;
    border-radius: 20px;
    background:
        radial-gradient(80% 100% at 50% 0%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 70%),
        color-mix(in srgb, var(--accent) 6%, #f8fafc);
    overflow: hidden;
}

.fe-outcomes__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fe-outcomes__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fe-outcomes__card:hover .fe-outcomes__row {
    border-color: color-mix(in srgb, var(--accent) 20%, #eef2f7);
}

.fe-outcomes__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    background: #e5e7eb;
}

.fe-outcomes__row-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}

.fe-outcomes__row-name {
    font-size: 14px;
    font-weight: 700;
    color: #0b1220;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fe-outcomes__row-role {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fe-outcomes__match,
.fe-outcomes__hired {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.fe-outcomes__match {
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
}

.fe-outcomes__hired {
    background: color-mix(in srgb, var(--accent) 100%, transparent);
    color: #ffffff;
}

.fe-outcomes__count {
    display: none;
}

.fe-outcomes__stage {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 10px;
    background: #ffffff;
    color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, #e5e7eb);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.12);
    white-space: nowrap;
}

.fe-outcomes__stage-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
    flex-shrink: 0;
}

.fe-outcomes__pricing {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #e5e7eb;
}

.fe-outcomes__model {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
}

.fe-outcomes__price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: var(--accent);
    font-weight: 800;
}

.fe-outcomes__price-currency {
    font-size: 20px;
    font-weight: 700;
}

.fe-outcomes__price-num {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.fe-outcomes__price-unit {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-left: 2px;
}

.fe-outcomes__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-header, #0b1220);
    margin: 0 0 10px;
}

.fe-outcomes__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 20px;
}

.fe-outcomes__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.fe-outcomes__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
}

.fe-outcomes__bullets li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
}

@media (max-width: 991px) {
    .fe-outcomes__container { padding: 72px 24px 88px; }
    .fe-outcomes__heading { font-size: 36px; }
    .fe-outcomes__subtext { font-size: 16px; margin-bottom: 40px; }
    .fe-outcomes__cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .fe-outcomes__card { padding: 28px 26px 32px; min-width: 0; }
}

@media (max-width: 575px) {
    .fe-outcomes__container { padding: 56px 20px 72px; }
    .fe-outcomes__eyebrow { font-size: 11px; letter-spacing: 0.16em; }
    .fe-outcomes__heading { font-size: 28px; line-height: 1.25; }
    .fe-outcomes__subtext { font-size: 15px; line-height: 1.55; margin-bottom: 32px; }
    .fe-outcomes__card { padding: 24px 22px 28px; border-radius: 20px; }
    .fe-outcomes__media {
        padding: 50px 14px 18px;
        margin: -4px -4px 22px;
    }
    /* Decorative triangles overflow at very small widths; scale them down */
    .fe-mock__shape--tri-1 { width: 220px; height: 130px; }
    .fe-mock__shape--tri-2 { width: 190px; height: 110px; }
    .fe-outcomes__row { padding: 9px 10px; gap: 10px; }
    .fe-outcomes__avatar { width: 40px; height: 40px; }
    .fe-outcomes__row-name { font-size: 13px; }
    .fe-outcomes__row-role { font-size: 11px; }
    .fe-outcomes__match, .fe-outcomes__hired { font-size: 10px; padding: 4px 8px; }
    .fe-outcomes__stage { top: 14px; right: 14px; font-size: 10px; padding: 6px 10px 6px 8px; }
    .fe-outcomes__pricing { padding-bottom: 14px; margin-bottom: 16px; }
    .fe-outcomes__price-num { font-size: 34px; }
    .fe-outcomes__price-currency { font-size: 18px; }
    .fe-outcomes__title { font-size: 19px; }
    .fe-outcomes__desc { font-size: 14px; margin-bottom: 16px; }
}

/* ===================== COST PER HIRE B — LIGHT BENTO ===================== */
.fe-costhire-b {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(38, 92, 255, 0.08);
}

.fe-costhire-b__glow {
    display: none;
}

.fe-costhire-b__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 88px 24px;
    text-align: center;
}

.fe-costhire-b__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary0);
    margin-bottom: 16px;
}

.fe-costhire-b__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.fe-costhire-b__heading--gradient {
    color: var(--primary0);
}

.fe-costhire-b__subtext {
    font-size: 15px;
    line-height: 26px;
    color: #1f2937;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Bento Grid */
.fe-costhire-b__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 40px;
}

.fe-costhire-b__price-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(150deg, #265CFF 0%, #113DD9 100%);
    border-radius: 20px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 12px 40px rgba(38, 92, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fe-costhire-b__price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(38, 92, 255, 0.35);
}

.fe-costhire-b__price-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.fe-costhire-b__price-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.fe-costhire-b__price-dollar {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.fe-costhire-b__price-number {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -3px;
}

.fe-costhire-b__price-per {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.fe-costhire-b__price-vs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.fe-costhire-b__price-old {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    text-decoration-color: #ef4444;
}

.fe-costhire-b__price-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.fe-costhire-b__price-new {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.fe-costhire-b__price-save {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
}

/* Light Benefit Cards */
.fe-costhire-b__card {
    background: #f7f9fc;
    border: 1px solid #edf1f7;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.fe-costhire-b__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.fe-costhire-b__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(38, 92, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary0);
    margin-bottom: 16px;
}

.fe-costhire-b__card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-header);
    margin-bottom: 8px;
    line-height: 1.3;
}

.fe-costhire-b__card-desc {
    font-size: 13px;
    line-height: 20px;
    color: #1f2937;
}

/* Stat Pills */
.fe-costhire-b__stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.fe-costhire-b__stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #f0f4ff;
    border: 1px solid #dde5ff;
    border-radius: 50px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fe-costhire-b__stat-pill:hover {
    box-shadow: 0 4px 16px rgba(38, 92, 255, 0.12);
    transform: translateY(-2px);
}

.fe-costhire-b__stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary0);
    line-height: 1;
}

.fe-costhire-b__stat-txt {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.02em;
}

.fe-costhire-b__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    background: linear-gradient(135deg, #265CFF 0%, #113DD9 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(38, 92, 255, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fe-costhire-b__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(38, 92, 255, 0.4);
}

.fe-costhire-b__container .fe-cta-group {
    justify-content: center;
}

/* ===================== COMPLIANCE & CERTIFICATIONS ===================== */
.fe-compliance {
    background: #ffffff;
    padding: 56px 24px;
    border-top: 1px solid #eef1f7;
    border-bottom: 1px solid #eef1f7;
}

.fe-compliance__container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.fe-compliance__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-1);
    margin-bottom: 10px;
}

.fe-compliance__heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-header);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.fe-compliance__subtext {
    font-size: 14px;
    color: #5a6473;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.55;
}

.fe-compliance__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.fe-compliance__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f7f9fc;
    border: 1px solid #e6ecf5;
    border-radius: 12px;
    padding: 14px 18px;
    text-align: left;
}

.fe-compliance__logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.fe-compliance__item-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 640px) {
    .fe-compliance {
        padding: 40px 20px;
    }

    .fe-compliance__heading {
        font-size: 19px;
    }

    .fe-compliance__grid {
        grid-template-columns: 1fr;
    }

    .fe-compliance__item {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* ===================== COST PER SCREENING B — LIGHT PROCESS ===================== */
.fe-costscreen-b {
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

.fe-costscreen-b__glow {
    display: none;
}

.fe-costscreen-b__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 88px 24px;
    text-align: center;
}

.fe-costscreen-b__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary0);
    margin-bottom: 16px;
}

.fe-costscreen-b__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.fe-costscreen-b__heading--gradient {
    color: var(--primary0);
}

.fe-costscreen-b__subtext {
    font-size: 15px;
    line-height: 26px;
    color: #1f2937;
    max-width: 640px;
    margin: 0 auto 52px;
}

/* Process Step Cards */
.fe-costscreen-b__process {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 48px;
}

.fe-costscreen-b__process-step {
    flex: 1;
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.fe-costscreen-b__process-step:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.fe-costscreen-b__process-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary0);
    line-height: 1;
    margin-bottom: 4px;
}

.fe-costscreen-b__process-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(38, 92, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary0);
}

.fe-costscreen-b__process-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-header);
    line-height: 1.3;
}

.fe-costscreen-b__process-desc {
    font-size: 13px;
    line-height: 20px;
    color: #1f2937;
}

.fe-costscreen-b__process-tag {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(38, 92, 255, 0.08);
    border: 1px solid rgba(38, 92, 255, 0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary0);
    letter-spacing: 0.06em;
    margin-top: auto;
}

.fe-costscreen-b__process-connector {
    width: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fe-costscreen-b__process-connector::before {
    content: '';
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #265CFF 0,
        #265CFF 6px,
        transparent 6px,
        transparent 12px
    );
}

.fe-costscreen-b__process-connector::after {
    content: '→';
    position: absolute;
    font-size: 16px;
    color: var(--primary0);
    font-weight: 700;
    background: #f7f9fc;
    padding: 0 4px;
}

/* Metric Cards */
.fe-costscreen-b__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.fe-costscreen-b__metric-glass {
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fe-costscreen-b__metric-glass:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.fe-costscreen-b__metric-val {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary0);
    line-height: 1;
}

.fe-costscreen-b__metric-lbl {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.02em;
}

.fe-costscreen-b__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    background: #ffffff;
    color: var(--primary0);
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: 1.5px solid var(--primary0);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.fe-costscreen-b__cta:hover {
    background: var(--primary0);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(38, 92, 255, 0.3);
}

.fe-costscreen-b__container .fe-cta-group {
    justify-content: center;
}

/* ===================== WHY CHOOSE US ===================== */
.fe-whyus {
    background: var(--primary0);
    position: relative;
    overflow: hidden;
}

.fe-whyus__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 120px;
    text-align: center;
}

.fe-whyus__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.fe-whyus__heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.fe-whyus__subtext {
    font-size: 15px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto 56px;
}

.fe-whyus__track-wrapper {
    overflow: hidden;
    text-align: left;
    margin-bottom: 40px;
    /* Allow the floating card-tab to remain visible below cards */
    padding-bottom: 36px;
    margin-bottom: 4px;
}

.fe-whyus__track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 36px;
    margin-bottom: -36px;
}

.fe-whyus__track::-webkit-scrollbar {
    display: none;
}

.fe-whyus__card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 36px 88px;
    flex: 0 0 auto;
    width: calc((100% - 56px) / 3);
    min-width: 320px;
    min-height: 260px;
    scroll-snap-align: start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.fe-whyus__card:hover {
    box-shadow: 0 18px 44px rgba(0, 36, 166, 0.18);
    transform: translateY(-3px);
}

.fe-whyus__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.fe-whyus__card-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-header);
    flex: 1;
    letter-spacing: -0.3px;
}

.fe-whyus__toggle {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #265CFF;
    background: #265CFF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.fe-whyus__toggle:hover {
    transform: scale(1.06);
}

.fe-whyus__plus {
    position: relative;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.fe-whyus__plus::before,
.fe-whyus__plus::after {
    content: '';
    position: absolute;
    background: #ffffff;
    border-radius: 1px;
    transition: background 0.25s ease;
}

.fe-whyus__plus::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.fe-whyus__plus::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.fe-whyus__card--open .fe-whyus__toggle {
    background: #ffffff;
    border-color: #265CFF;
}

.fe-whyus__card--open .fe-whyus__plus {
    transform: rotate(45deg);
}

.fe-whyus__card--open .fe-whyus__plus::before,
.fe-whyus__card--open .fe-whyus__plus::after {
    background: #265CFF;
}

.fe-whyus__card-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.fe-whyus__card--open .fe-whyus__card-body {
    max-height: 260px;
    opacity: 1;
    margin-top: 16px;
}

.fe-whyus__card-desc {
    font-size: 15px;
    line-height: 24px;
    color: #1f2937;
    max-width: 82%;
}

/* Notch + floating tab — creates the tag/label silhouette */
.fe-whyus__card-cut {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32%;
    height: 56px;
    background: var(--primary0);
    border-top-left-radius: 16px;
    pointer-events: none;
}

.fe-whyus__card-tab {
    position: absolute;
    bottom: -28px;
    right: 6%;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 6px;
    pointer-events: none;
}

/* Carousel navigation arrows */
.fe-whyus__nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.fe-whyus__arrow {
    appearance: none;
    -webkit-appearance: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.fe-whyus__arrow:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-2);
    transform: scale(1.05);
}

.fe-whyus__arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.fe-whyus__arrow:disabled:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

/* ===================== REACH THAT CONVERTS ===================== */
.fe-reach {
    background: #ffffff;
    border-top: 1px solid rgba(38, 92, 255, 0.08);
    border-bottom: 1px solid rgba(38, 92, 255, 0.08);
}

.fe-reach__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 112px;
    text-align: center;
}

.fe-reach__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #265CFF;
    margin-bottom: 16px;
}

.fe-reach__heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-header);
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.fe-reach__heading--accent {
    color: #265CFF;
}

.fe-reach__subtext {
    font-size: 16px;
    line-height: 26px;
    color: #2a2a2a;
    max-width: 680px;
    margin: 0 auto 56px;
}

.fe-reach__panel {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 18px;
    background: rgba(38, 92, 255, 0.05);
    border: 1px solid rgba(38, 92, 255, 0.10);
    border-radius: 28px;
    padding: 22px;
    text-align: left;
}

/* Tabs (left column) */
.fe-reach__tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fe-reach__tab {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid transparent;
    background: transparent;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    color: var(--text-header);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    font-family: inherit;
    position: relative;
}

.fe-reach__tab:hover {
    background: rgba(255, 255, 255, 0.6);
}

.fe-reach__tab--active {
    background: #ffffff;
    border-color: #265CFF;
    box-shadow: 0 10px 28px rgba(38, 92, 255, 0.14);
}

.fe-reach__tab--active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 56%;
    background: #265CFF;
    border-radius: 0 4px 4px 0;
}

.fe-reach__tab-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid rgba(38, 92, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #265CFF;
    transition: background 0.25s ease, color 0.25s ease;
}

.fe-reach__tab--active .fe-reach__tab-icon {
    background: #265CFF;
    color: #ffffff;
    border-color: #265CFF;
}

.fe-reach__tab-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.fe-reach__tab-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.fe-reach__tab-meta {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.01em;
}

.fe-reach__tab--active .fe-reach__tab-meta {
    color: #113DD9;
}

/* Content panel (right column) */
.fe-reach__content {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
    box-shadow: 0 4px 18px rgba(38, 92, 255, 0.06);
}

.fe-reach__pane {
    display: none;
    flex-direction: column;
    gap: 24px;
    animation: feReachFadeIn 0.35s ease;
}

.fe-reach__pane--active {
    display: flex;
}

@keyframes feReachFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.fe-reach__visual {
    background: linear-gradient(135deg, #265CFF 0%, #113DD9 100%);
    border-radius: 16px;
    padding: 40px 36px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    overflow: hidden;
}

.fe-reach__visual::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.fe-reach__visual::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    pointer-events: none;
}

.fe-reach__visual-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.fe-reach__visual-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.fe-reach__visual-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.fe-reach__visual-num {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.fe-reach__visual-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0.9;
}

.fe-reach__visual-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.fe-reach__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #113DD9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fe-reach__chip::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #265CFF;
}

.fe-reach__caption {
    font-size: 16px;
    line-height: 26px;
    color: #1f2937;
    padding-left: 16px;
    border-left: 3px solid #265CFF;
}

/* Responsive */
@media (max-width: 991px) {
    .fe-reach__container {
        padding: 80px 24px 96px;
    }

    .fe-reach__heading {
        font-size: 36px;
    }

    .fe-reach__panel {
        grid-template-columns: 1fr;
    }

    .fe-reach__content {
        min-height: 0;
        padding: 28px;
    }

    .fe-reach__visual-num {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .fe-reach__container {
        padding: 64px 20px 80px;
    }

    .fe-reach__heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .fe-reach__subtext {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .fe-reach__panel {
        padding: 16px;
        border-radius: 22px;
    }

    .fe-reach__tab {
        padding: 14px 16px;
    }

    .fe-reach__tab-title {
        font-size: 14px;
    }

    .fe-reach__visual {
        padding: 26px 22px;
    }

    .fe-reach__visual-num {
        font-size: 44px;
    }

    .fe-reach__content {
        padding: 22px;
    }

    .fe-reach__caption {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ===================== TESTIMONIALS ===================== */
.fe-testimonials {
    background: #ffffff;
}

.fe-testimonials__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px 88px;
}

.fe-testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}

.fe-testimonials__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #265CFF;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(38, 92, 255, 0.08);
    border: 1px solid rgba(38, 92, 255, 0.18);
    margin-bottom: 18px;
}

.fe-testimonials__heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: var(--text-header);
    margin: 0 auto;
    max-width: 900px;
}

@media (max-width: 767px) {
    .fe-testimonials__header {
        margin-bottom: 36px;
    }
    .fe-testimonials__heading {
        font-size: 24px;
        letter-spacing: -0.3px;
    }
}

.fe-testimonials__slider {
    position: relative;
    min-height: 380px;
}

.fe-testimonial__card {
    display: none;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    animation: fe-testimonialFade 0.7s ease-out;
}

.fe-testimonial__card--active {
    display: grid;
}

@keyframes fe-testimonialFade {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fe-testimonial__image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.fe-testimonial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.fe-testimonial__content {
    background: var(--primary0);
    padding: 48px 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fe-testimonial__quote-icon {
    margin-bottom: 20px;
    line-height: 0;
}

.fe-testimonial__text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.55;
    color: #ffffff;
    margin-bottom: 28px;
}

.fe-testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fe-testimonial__name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.fe-testimonial__role {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
}

/* Decorative semi-circle */
.fe-testimonial__decor {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Controls */
.fe-testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.fe-testimonials__nav {
    appearance: none;
    -webkit-appearance: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.fe-testimonials__nav:hover {
    border-color: var(--primary0);
    color: var(--primary0);
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.12);
}

.fe-testimonials__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fe-testimonials__dot {
    appearance: none;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fe-testimonials__dot--active {
    background: var(--primary0);
    transform: scale(1.2);
}

.fe-testimonials__dot:hover {
    background: var(--primary1);
}

/* ===================== CONTACT FORM ===================== */
.fe-contact {
    background: #f7f9fc;
}

.fe-contact__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 88px;
    text-align: center;
}

.fe-contact__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-header);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.fe-contact__subtext {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #6b7280;
    margin-bottom: 40px;
}

.fe-contact__card {
    background: #ffffff;
    border: 1px solid #e8ecf3;
    border-radius: 20px;
    padding: 44px 40px 48px;
    text-align: left;
}

.fe-contact__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.fe-contact__row {
    display: grid;
    gap: 24px;
}

.fe-contact__row--2col {
    grid-template-columns: 1fr 1fr;
}

.fe-contact__row--phone {
    grid-template-columns: 1.2fr 0.7fr 1.5fr;
}

.fe-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.fe-contact__label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.fe-contact__required {
    color: #1f2937;
}

.fe-contact__input {
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: 'Gordita', sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.fe-contact__input::placeholder {
    color: #9ca3af;
}

.fe-contact__input:focus {
    border-color: var(--primary0);
    box-shadow: 0 0 0 3px rgba(38, 92, 255, 0.08);
}

.fe-contact__input--prefix {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

/* Searchable country code dropdown */
.fe-contact__searchable-select {
    position: relative;
}

.fe-contact__select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: 'Gordita', sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
}

.fe-contact__select-trigger:focus,
.fe-contact__searchable-select.is-open .fe-contact__select-trigger {
    border-color: var(--primary0);
    box-shadow: 0 0 0 3px rgba(38, 92, 255, 0.08);
}

.fe-contact__field--has-error .fe-contact__select-trigger {
    border-color: #ef4444;
}

.fe-contact__select-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fe-contact__select-value--placeholder {
    color: #9ca3af;
}

.fe-contact__select-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.fe-contact__searchable-select.is-open .fe-contact__select-arrow {
    transform: rotate(180deg);
}

.fe-contact__select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 50;
    overflow: hidden;
}

.fe-contact__searchable-select.is-open .fe-contact__select-dropdown {
    display: block;
}

.fe-contact__select-search-wrap {
    padding: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.fe-contact__select-search {
    width: 100%;
    height: 36px;
    line-height: 34px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Gordita', sans-serif;
    font-size: 13px;
    color: #1f2937;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.fe-contact__select-search:focus {
    border-color: var(--primary0);
}

.fe-contact__select-search::placeholder {
    color: #9ca3af;
}

.fe-contact__select-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 180px;
    overflow-y: auto;
}

.fe-contact__select-option {
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s ease;
}

.fe-contact__select-option:hover {
    background: #f3f4f6;
}

.fe-contact__select-option.is-selected {
    background: rgba(38, 92, 255, 0.08);
    color: var(--primary0);
    font-weight: 600;
}

.fe-contact__select-option.is-hidden {
    display: none;
}

.fe-contact__select-empty {
    display: none;
    padding: 12px 16px;
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}

/* Searchable country dropdown — fe-select-* (used in contact-form.phtml) */
.fe-select-wrap {
    position: relative;
}

.fe-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: 'Gordita', sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
}

.fe-select-trigger:focus,
.fe-select-trigger[aria-expanded="true"] {
    border-color: var(--primary0);
    box-shadow: 0 0 0 3px rgba(38, 92, 255, 0.08);
}

.fe-contact__field--has-error .fe-select-trigger {
    border-color: #ef4444;
}

.fe-select-trigger__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #1f2937;
}

.fe-select-trigger__text--placeholder {
    color: #9ca3af;
}

.fe-select-trigger__chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.fe-select-trigger[aria-expanded="true"] .fe-select-trigger__chevron {
    transform: rotate(180deg);
}

.fe-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 50;
    overflow: hidden;
}

.fe-select-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.fe-select-search-icon {
    flex-shrink: 0;
}

.fe-select-search {
    width: 100%;
    height: 36px;
    line-height: 34px;
    padding: 0 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Gordita', sans-serif;
    font-size: 13px;
    color: #1f2937;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.fe-select-search:focus {
    border-color: var(--primary0);
}

.fe-select-search::placeholder {
    color: #9ca3af;
}

.fe-select-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 180px;
    overflow-y: auto;
}

.fe-select-option {
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s ease;
    list-style: none;
}

.fe-select-option:hover {
    background: #f3f4f6;
}

.fe-select-option--selected {
    background: rgba(38, 92, 255, 0.08);
    color: var(--primary0);
    font-weight: 600;
}

.fe-select-no-results {
    padding: 12px 16px;
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}

.fe-contact__textarea {
    height: auto;
    padding: 14px 16px;
    resize: vertical;
    min-height: 120px;
    line-height: 22px;
}

/* Validation error */
.fe-contact__error {
    display: none;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: #ef4444;
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 2px;
}

.fe-contact__field--has-error .fe-contact__error {
    display: inline-block;
}

.fe-contact__field--has-error .fe-contact__input {
    border-color: #ef4444;
}

/* Captcha error message */
#captcha_Err p,
.g-recaptcha__error p {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: #ef4444;
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
    margin: 4px 0 0;
}

/* Actions row */
.fe-contact__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.fe-contact__recaptcha-box {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px 16px;
    background: #fafafa;
}

.fe-contact__recaptcha-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fe-contact__recaptcha-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary0);
}

.fe-contact__recaptcha-check label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.fe-contact__recaptcha-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.fe-contact__recaptcha-label {
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.02em;
}

.fe-contact__recaptcha-terms {
    font-size: 8px;
    color: #9ca3af;
}

.fe-contact__submit {
    appearance: none;
    -webkit-appearance: none;
    height: 52px;
    padding: 0 40px;
    background: var(--primary0);
    color: #ffffff;
    font-family: 'Gordita', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fe-contact__submit:hover {
    background: #1a4fde;
    box-shadow: 0 6px 20px rgba(38, 92, 255, 0.35);
}

/* ===================== FOOTER ===================== */
.fe-footer {
    background: #1446D8;
    color: #ffffff;
}

.fe-footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 56px 48px 28px;
}

.fe-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fe-footer__top-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
}

.fe-footer__top-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    opacity: 0.8;
}

.fe-footer__register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #ffffff;
    color: var(--primary0);
    border-radius: 10px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.fe-footer__register-btn:hover {
    color: var(--primary0);
    text-decoration: none;
}

.fe-footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 32px 0;
}

.fe-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.fe-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.fe-footer__brand img {
    width: 120px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.fe-footer__cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    max-width: 520px;
}

.fe-footer__col-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fe-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fe-footer__link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    line-height: 20px;
}

.fe-footer__link:hover {
    color: #ffffff;
    text-decoration: none;
}

.fe-footer__right-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fe-footer__social {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
}

.fe-footer__social-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.fe-footer__social-link img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.fe-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

.fe-footer__newsletter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fe-footer__newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 8px;
}

.fe-footer__newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-family: "gordita", sans-serif;
    padding: 10px 10px;
}

.fe-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.fe-footer__newsletter-btn {
    border: none;
    cursor: pointer;
    background: #0B2FB0;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    font-family: "gordita", sans-serif;
    padding: 10px 18px;
    border-radius: 10px;
}

.fe-footer__newsletter-help {
    font-size: 12px;
    line-height: 18px;
    opacity: 0.9;
    margin-top: 10px;
    max-width: 420px;
}

.fe-footer__copyright {
    text-align: center;
    font-size: 11px;
    opacity: 0.75;
    padding-top: 26px;
}

/* Tablet */
@media (max-width: 1200px) {
    .fe-hero__container {
        padding: 56px 32px 48px;
    }

    .fe-heading {
        font-size: 56px;
    }

    .fe-stat__value {
        font-size: 40px;
    }

    .fe-stat {
        padding-right: 28px;
    }

    .fe-stat:not(:first-child) {
        padding-left: 28px;
    }

    .fe-header__nav {
        padding: 14px 32px;
    }

    .fe-footer__container {
        padding: 48px 32px 28px;
    }
}

/* Header: switch to hamburger earlier (1099px). The desktop nav has 5
   links + register + login + language and does not fit a 1024px viewport. */
@media (max-width: 1099px) {
    .fe-header__links,
    .fe-header__right {
        display: none;
    }

    .fe-header__hamburger {
        display: block;
    }

    .fe-header__nav {
        padding: 12px 20px;
    }

    .fe-header__logo img {
        width: 170px;
    }
}

@media (max-width: 991px) {

    /* Hero layout */
    .fe-hero__container {
        flex-direction: column;
        padding: 40px 20px 34px;
        gap: 32px;
    }

    .fe-hero__left {
        flex: none;
        width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .fe-badge {
        justify-content: center;
    }

    .fe-heading {
        font-size: 44px;
    }

    .fe-subtext {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .fe-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .fe-hero__right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .fe-hero__image-wrapper {
        max-width: 480px;
    }

    .fe-stats {
        justify-content: center;
    }

    /* Footer */
    .fe-footer__top {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .fe-footer__top-title {
        font-size: 28px;
    }

    .fe-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fe-footer__container {
        padding: 40px 20px 24px;
    }

    .fe-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fe-features__container {
        padding: 60px 20px 64px;
    }

    .fe-features__heading {
        font-size: 34px;
    }

    .fe-testimonial__card--active {
        grid-template-columns: 1fr;
    }

    .fe-videos__card {
        min-width: calc(50% - 12px);
    }

    .fe-videos__container {
        padding: 56px 20px 64px;
    }

    .fe-testimonial__image {
        min-height: 280px;
    }

    .fe-testimonial__content {
        padding: 36px 28px 36px;
    }

    .fe-testimonial__text {
        font-size: 18px;
    }

    .fe-testimonials__container {
        padding: 60px 20px 64px;
    }

    .fe-testimonials__slider {
        min-height: auto;
    }

    .fe-contact__row--2col,
    .fe-contact__row--phone {
        grid-template-columns: 1fr;
    }

    .fe-contact__container {
        padding: 60px 20px 64px;
    }

    .fe-contact__heading {
        font-size: 34px;
    }

    .fe-contact__card {
        padding: 32px 24px 36px;
    }

    .fe-contact__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .fe-contact__submit {
        width: 100%;
    }


}

@media (max-width: 767px) {
    .fe-heading {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .fe-stat__value {
        font-size: 32px;
    }

    .fe-stat {
        padding-right: 20px;
    }

    .fe-stat:not(:first-child) {
        padding-left: 20px;
    }

    .fe-stat__label {
        font-size: 10px;
    }

    .fe-hero__image-wrapper {
        max-width: 400px;
    }

    .fe-footer__cols {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .fe-partners__marquee {
        --marquee-gap: 44px;
        --marquee-duration: 42s;
    }


}

@media (max-width: 575px) {
    .fe-hero__container {
        padding: 28px 16px 28px;
        gap: 24px;
    }

    .fe-heading {
        font-size: 38px;
        letter-spacing: -0.3px;
    }

    .fe-videos__card {
        min-width: calc(100% - 0px);
    }

    .fe-videos__container {
        padding: 44px 16px 52px;
    }

    .fe-videos__heading {
        font-size: 24px;
    }

    .fe-subtext {
        font-size: 14px;
        line-height: 24px;
    }

    .fe-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .fe-cta-primary,
    .fe-cta-secondary {
        width: 280px;
        max-width: 100%;
        justify-content: center;
        padding: 14px 22px;
    }

    .fe-stats {
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: center;
    }

    .fe-stat {
        padding-right: 0;
        text-align: center;
        flex: 0 1 auto;
    }

    .fe-stat:not(:first-child) {
        padding-left: 12px;
        border-left: 1.5px solid #e5e7eb;
    }

    .fe-stat__value {
        font-size: 22px;
    }

    .fe-stat__label {
        font-size: 8px;
    }

    .fe-hero__image-wrapper {
        max-width: 100%;
        border-radius: 14px;
    }

    .fe-header__logo img {
        width: 150px;
    }

    .fe-header__hamburger img {
        width: 24px;
        height: 24px;
    }

    .fe-footer__top-title {
        font-size: 22px;
    }

    .fe-footer__cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fe-partners__container {
        padding: 36px 16px;
    }

    .fe-partners__marquee {
        --marquee-gap: 32px;
        --marquee-duration: 32s;
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    }

    .fe-partners__logo {
        height: 22px;
    }

    .fe-partners__logo--text {
        height: 22px;
        font-size: 16px;
    }

    .fe-features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fe-features__container {
        padding: 48px 16px 56px;
    }

    .fe-features__heading {
        font-size: 28px;
    }

    .fe-features__card {
        padding: 28px 24px 32px;
    }

    .fe-contact__heading {
        font-size: 28px;
    }

    .fe-contact__container {
        padding: 48px 16px 56px;
    }

    .fe-contact__card {
        padding: 24px 16px 28px;
        border-radius: 14px;
    }


}

/* Responsive for Cost Sections */
@media (max-width: 991px) {
    .fe-costhire-b__heading,
    .fe-costscreen-b__heading {
        font-size: 32px;
        line-height: 1.3;
    }

    .fe-costhire-b__bento {
        grid-template-columns: 1fr 1fr;
    }

    .fe-costhire-b__price-card {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 32px 24px;
    }

    .fe-costhire-b__price-number {
        font-size: 56px;
    }

    .fe-costhire-b__stats {
        flex-wrap: wrap;
    }

    .fe-costscreen-b__process {
        flex-direction: column;
        gap: 16px;
    }

    .fe-costscreen-b__process-connector {
        width: 100%;
        min-width: 100%;
        height: 32px;
        min-height: 32px;
    }

    .fe-costscreen-b__process-connector::before {
        width: 2px;
        height: 100%;
        background: repeating-linear-gradient(
            to bottom,
            #265CFF 0,
            #265CFF 6px,
            transparent 6px,
            transparent 12px
        );
    }

    .fe-costscreen-b__process-connector::after {
        content: '↓';
    }

    .fe-costscreen-b__metrics {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 575px) {
    .fe-costhire-b__heading,
    .fe-costscreen-b__heading {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .fe-costhire-b__subtext,
    .fe-costscreen-b__subtext {
        font-size: 14px;
        line-height: 24px;
    }

    .fe-costhire-b__container,
    .fe-costscreen-b__container {
        padding: 64px 20px;
    }

    .fe-costhire-b__bento {
        grid-template-columns: 1fr;
    }

    .fe-costhire-b__price-number {
        font-size: 48px;
    }

    .fe-costhire-b__stats {
        flex-direction: column;
        align-items: center;
    }

    .fe-costhire-b__stat-pill {
        width: 100%;
        justify-content: center;
    }

    .fe-costscreen-b__metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fe-costscreen-b__metric-glass {
        padding: 20px 12px;
    }

    .fe-costscreen-b__metric-val {
        font-size: 24px;
    }

    .fe-costhire-b__card {
        padding: 24px 20px;
    }

    .fe-costhire-b__stats {
        gap: 12px;
        margin-bottom: 32px;
    }

    .fe-costscreen-b__process-card {
        padding: 28px 20px;
    }

    .fe-costscreen-b__metrics {
        gap: 12px;
        margin-bottom: 32px;
    }

    .fe-costhire-b .fe-cta-group,
    .fe-costscreen-b .fe-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .fe-costhire-b .fe-cta-group .fe-cta-primary,
    .fe-costhire-b .fe-cta-group .fe-cta-secondary,
    .fe-costscreen-b .fe-cta-group .fe-cta-primary,
    .fe-costscreen-b .fe-cta-group .fe-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===================== WHY CHOOSE US — RESPONSIVE ===================== */
@media (max-width: 991px) {
    .fe-whyus__container {
        padding: 80px 24px 96px;
    }

    .fe-whyus__heading {
        font-size: 36px;
    }

    .fe-whyus__card {
        width: calc((100% - 28px) / 2);
        padding: 32px 30px 80px;
        min-height: 220px;
    }

    .fe-whyus__card-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .fe-whyus__container {
        padding: 64px 20px 80px;
    }

    .fe-whyus__heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .fe-whyus__subtext {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .fe-whyus__track {
        gap: 20px;
    }

    .fe-whyus__card {
        width: 84%;
        min-width: 260px;
        padding: 28px 26px 72px;
        min-height: 0;
    }

    .fe-whyus__card-title {
        font-size: 20px;
    }

    .fe-whyus__toggle {
        width: 42px;
        height: 42px;
    }

    .fe-whyus__plus {
        width: 14px;
        height: 14px;
    }

    .fe-whyus__card-cut {
        height: 48px;
        width: 36%;
    }

    .fe-whyus__card-tab {
        width: 32px;
        height: 32px;
        bottom: -22px;
    }

    .fe-whyus__card-desc {
        max-width: 100%;
    }

    .fe-whyus__arrow {
        width: 42px;
        height: 42px;
    }
}

/* ===================== WORLD REACH ===================== */
.fe-worldreach {
    position: relative;
    background:
        radial-gradient(120% 80% at 10% 0%, rgba(38, 92, 255, 0.05) 0%, transparent 55%),
        radial-gradient(80% 60% at 100% 100%, rgba(38, 92, 255, 0.05) 0%, transparent 55%),
        #ffffff;
    border-top: 1px solid #eef2f9;
    border-bottom: 1px solid #eef2f9;
    overflow: hidden;
}

.fe-worldreach__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 64px;
}

/* Header */
.fe-worldreach__header {
    text-align: center;
    margin-bottom: 56px;
}

.fe-worldreach__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--primary0);
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(38, 92, 255, 0.08);
    border: 1px solid rgba(38, 92, 255, 0.18);
    margin-bottom: 22px;
}

.fe-worldreach__heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.9px;
    color: var(--text-header);
    margin: 0 auto 18px;
    max-width: 760px;
}

.fe-worldreach__lead {
    font-size: 17px;
    line-height: 28px;
    color: #4b5563;
    max-width: 880px;
    margin: 0 auto;
}

/* Two-column grid */
.fe-worldreach__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
}

.fe-worldreach__map {
    display: flex;
}

/* Map card — merges with section background (no border/shadow) */
.fe-worldreach__map-inner {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    padding: 8px 0 56px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-worldreach__map-inner::before {
    background: none;
}

.fe-worldreach__svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.fe-worldreach__map-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(38, 92, 255, 0.10), transparent 45%),
        radial-gradient(circle at 78% 75%, rgba(119, 162, 255, 0.12), transparent 45%);
    pointer-events: none;
}

/* Dotmap (generated dots) */
.fe-worldreach__dotmap {
    pointer-events: none;
}

/* Subtle market presence dots scattered across the world */
.fe-worldreach__market-dots {
    pointer-events: none;
}

.fe-worldreach__market-dots circle {
    fill: #265CFF;
    fill-opacity: 0.85;
    stroke: #ffffff;
    stroke-width: 0.8;
    filter: drop-shadow(0 0 6px rgba(38, 92, 255, 0.55));
}

/* Land path (real geometry; rendered as soft backdrop, also drives dot placement) */
.fe-worldreach__landpath {
    pointer-events: none;
}

/* Sweep highlight layer: brighter dots revealed by a moving mask */
.fe-worldreach__sweep-layer {
    pointer-events: none;
}

.fe-worldreach__sweep {
    animation: fe-wr-sweep 9s linear infinite;
}

@keyframes fe-wr-sweep {
    0%   { transform: translateX(-200px); }
    100% { transform: translateX(1200px); }
}

@media (prefers-reduced-motion: reduce) {
    .fe-worldreach__sweep {
        animation: none;
        opacity: 0;
    }
}


/* Connection arcs */
.fe-worldreach__arcs {
    pointer-events: none;
}

.fe-worldreach__arc {
    fill: none;
    stroke: #265CFF;
    stroke-width: 1.2;
    stroke-dasharray: 4 6;
    stroke-opacity: 0.4;
    stroke-linecap: round;
    animation: fe-wr-dash 8s linear infinite;
}

@keyframes fe-wr-dash {
    to { stroke-dashoffset: -100; }
}

/* Markers */
.fe-worldreach__marker {
    cursor: pointer;
    pointer-events: auto;
}

/* HUB markers — bold pin with white outline + pulsing halo */
.fe-worldreach__marker--hub .fe-worldreach__halo {
    fill: rgba(38, 92, 255, 0.18);
    transform-origin: center;
    transform-box: fill-box;
    animation: fe-wr-halo 2.6s ease-out infinite;
}

.fe-worldreach__marker--hub .fe-worldreach__ring {
    fill: rgba(38, 92, 255, 0.32);
    transform-origin: center;
    transform-box: fill-box;
    animation: fe-wr-ripple 2.6s ease-out infinite;
}

.fe-worldreach__marker--hub .fe-worldreach__core {
    fill: #265CFF;
    stroke: #ffffff;
    stroke-width: 2.5;
    filter: drop-shadow(0 4px 10px rgba(17, 61, 217, 0.45));
    transform-origin: center;
    transform-box: fill-box;
}

/* MARKET markers — small subtle dot, no halo, no pulse */
.fe-worldreach__marker--market .fe-worldreach__halo,
.fe-worldreach__marker--market .fe-worldreach__ring {
    display: none;
}

.fe-worldreach__marker--market .fe-worldreach__core {
    fill: #77A2FF;
    stroke: #ffffff;
    stroke-width: 1.2;
    r: 3.5;
    transform-origin: center;
    transform-box: fill-box;
    filter: drop-shadow(0 1px 3px rgba(38, 92, 255, 0.35));
}

/* Stagger animation across markers */
.fe-worldreach__marker:nth-child(2)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(2)  .fe-worldreach__halo { animation-delay: 0.2s; }
.fe-worldreach__marker:nth-child(3)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(3)  .fe-worldreach__halo { animation-delay: 0.4s; }
.fe-worldreach__marker:nth-child(4)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(4)  .fe-worldreach__halo { animation-delay: 0.6s; }
.fe-worldreach__marker:nth-child(5)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(5)  .fe-worldreach__halo { animation-delay: 0.8s; }
.fe-worldreach__marker:nth-child(6)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(6)  .fe-worldreach__halo { animation-delay: 1.0s; }
.fe-worldreach__marker:nth-child(7)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(7)  .fe-worldreach__halo { animation-delay: 1.2s; }
.fe-worldreach__marker:nth-child(8)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(8)  .fe-worldreach__halo { animation-delay: 1.4s; }
.fe-worldreach__marker:nth-child(9)  .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(9)  .fe-worldreach__halo { animation-delay: 1.6s; }
.fe-worldreach__marker:nth-child(10) .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(10) .fe-worldreach__halo { animation-delay: 1.8s; }
.fe-worldreach__marker:nth-child(11) .fe-worldreach__ring,
.fe-worldreach__marker:nth-child(11) .fe-worldreach__halo { animation-delay: 2.0s; }

@keyframes fe-wr-ripple {
    0%   { transform: scale(0.6); opacity: 0.9; }
    80%  { transform: scale(3); opacity: 0; }
    100% { transform: scale(3); opacity: 0; }
}

@keyframes fe-wr-halo {
    0%   { transform: scale(0.5); opacity: 0.7; }
    80%  { transform: scale(2); opacity: 0; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes fe-wr-blink {
    0%, 100% { opacity: 0.95; }
    50%      { opacity: 1; }
}

/* Hover / active */
.fe-worldreach__marker:hover .fe-worldreach__core,
.fe-worldreach__marker:focus-visible .fe-worldreach__core,
.fe-worldreach__marker.is-active .fe-worldreach__core {
    transform: scale(1.45);
    filter: drop-shadow(0 0 10px rgba(38, 92, 255, 0.95));
}

.fe-worldreach__marker:hover .fe-worldreach__ring,
.fe-worldreach__marker:focus-visible .fe-worldreach__ring,
.fe-worldreach__marker.is-active .fe-worldreach__ring {
    animation-duration: 1.4s;
}

/* Tooltip */
.fe-worldreach__tooltip {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    top: 0;
    left: 0;
    transform: translate(-50%, calc(-100% - 14px));
    background: #0d0e0f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 7px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.18s ease;
    box-shadow: 0 8px 24px rgba(0, 28, 80, 0.22);
}

.fe-worldreach__tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 8px;
    height: 8px;
    background: #0d0e0f;
    transform: translateX(-50%) rotate(45deg);
}

.fe-worldreach__tooltip.is-visible {
    opacity: 1;
}

/* Legend */
.fe-worldreach__legend {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(38, 92, 255, 0.14);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 12px;
    color: #1a2540;
    box-shadow: 0 6px 18px rgba(0, 28, 80, 0.06);
}

.fe-worldreach__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fe-worldreach__legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #77A2FF;
    box-shadow: 0 0 0 1.5px #ffffff, 0 1px 3px rgba(38, 92, 255, 0.35);
}

.fe-worldreach__legend-dot--hub {
    width: 12px;
    height: 12px;
    background: #265CFF;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px rgba(38, 92, 255, 0.20);
}

/* Right panels */
.fe-worldreach__panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.fe-worldreach__panel {
    position: relative;
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e7ecf5;
    box-shadow: 0 8px 20px -8px rgba(0, 28, 80, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fe-worldreach__panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px rgba(0, 28, 80, 0.10);
    border-color: rgba(38, 92, 255, 0.20);
}

.fe-worldreach__panel--hubs {
    background: linear-gradient(140deg, #ffffff 0%, #F4F8FF 100%);
    border-color: rgba(38, 92, 255, 0.18);
}

.fe-worldreach__panel-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.fe-worldreach__panel-stat {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, #5C84FF 0%, #265CFF 50%, #1340C9 100%);
    color: #ffffff;
    box-shadow:
        0 10px 18px -6px rgba(15, 54, 194, 0.45),
        0 3px 6px -2px rgba(38, 92, 255, 0.25),
        inset 0 1.5px 3px rgba(255, 255, 255, 0.32),
        inset 0 -3px 6px rgba(0, 28, 80, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    gap: 2px;
}

.fe-worldreach__panel--markets .fe-worldreach__panel-stat {
    background:
        radial-gradient(circle at 32% 28%, #7CA0FF 0%, #4070FF 50%, #1E4ED5 100%);
}

.fe-worldreach__panel-num {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.4px;
    margin: 0;
    padding: 0;
}

.fe-worldreach__panel-suffix {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    line-height: 1;
    opacity: 0.90;
    margin: 0;
    padding: 0;
}

.fe-worldreach__panel-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.fe-worldreach__panel-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-header);
    margin-bottom: 4px;
}

.fe-worldreach__panel-sub {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
}

/* Chips */
.fe-worldreach__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fe-worldreach__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 5px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #e7ecf5;
    font-size: 13px;
    line-height: 1;
    color: #1a2540;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fe-worldreach__chip:hover,
.fe-worldreach__chip.is-active {
    border-color: rgba(38, 92, 255, 0.4);
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.14);
    transform: translateY(-1px);
}

.fe-worldreach__chip-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
    background: rgba(38, 92, 255, 0.10);
    color: var(--primary0);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    flex: 0 0 auto;
}

.fe-worldreach__chips--hubs .fe-worldreach__chip-code {
    background: linear-gradient(140deg, #265CFF 0%, #113DD9 100%);
    color: #ffffff;
}

.fe-worldreach__chip-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1.5px #ffffff, 0 1px 4px rgba(0, 28, 80, 0.18);
    background: #ffffff;
}

.fe-worldreach__chip-flag img,
.fe-worldreach__chip-flag svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fe-worldreach__chip-flag--region {
    background: linear-gradient(140deg, #265CFF 0%, #113DD9 100%);
}

.fe-worldreach__chip-name {
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

@media (prefers-reduced-motion: reduce) {
    .fe-worldreach__marker .fe-worldreach__ring,
    .fe-worldreach__marker .fe-worldreach__halo,
    .fe-worldreach__marker .fe-worldreach__core,
    .fe-worldreach__arc {
        animation: none;
    }
}

@media (max-width: 1199px) {
    .fe-worldreach__heading {
        font-size: 42px;
    }

    .fe-worldreach__grid {
        gap: 32px;
    }

    .fe-worldreach__panel {
        padding: 22px;
    }
}

@media (max-width: 991px) {
    .fe-worldreach__container {
        padding: 72px 32px;
    }

    .fe-worldreach__header {
        margin-bottom: 40px;
    }

    .fe-worldreach__heading {
        font-size: 36px;
    }

    .fe-worldreach__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fe-worldreach__map-inner {
        padding: 22px 22px 52px;
    }
}

@media (max-width: 575px) {
    .fe-worldreach__container {
        padding: 56px 20px;
    }

    .fe-worldreach__heading {
        font-size: 28px;
        letter-spacing: -0.4px;
    }

    .fe-worldreach__lead {
        font-size: 15px;
        line-height: 25px;
    }

    .fe-worldreach__map-inner {
        padding: 14px 14px 46px;
        border-radius: 18px;
    }

    .fe-worldreach__panel {
        padding: 20px;
        border-radius: 16px;
    }

    .fe-worldreach__panel-head {
        gap: 14px;
        margin-bottom: 16px;
    }

    .fe-worldreach__panel-num {
        font-size: 24px;
    }

    .fe-worldreach__panel-title {
        font-size: 16px;
    }

    .fe-worldreach__legend {
        left: 14px;
        bottom: 14px;
        padding: 8px 10px;
        font-size: 11px;
    }
}