/*
 * XF landing-page blocks — additive styles for the theme-v2 child theme.
 * Builds on the already-loaded Bootstrap 5 + parent theme utility classes.
 * The primary color follows the site theme option (--color-primary).
 */

/* XF-TOKENS-BEGIN — brand tokens follow the CMS theme options
   (--color-primary / --color-danger injected in partials/header.blade.php).
   Static hexes are fallbacks only. */
:root {
    --xf-primary: var(--color-primary, #1366f6);
    --xf-primary-dark: #0d4fc4;
    --xf-primary-bright: #5a97ff;
    --xf-primary-tint: #c9d9f5;
    --xf-primary-tint-2: #dce7fb;
    --xf-primary-soft: #eaf2ff;
    --xf-ink: #0f1b33;
    --xf-muted: #5b6b84;
    --xf-line: #e3e9f3;
    --xf-soft: #f4f7fc;
    --xf-container-narrow: 820px;
    --xf-radius: 14px;
    --xf-shadow: 0 18px 50px rgba(15, 27, 51, 0.10);
}

@supports (background: color-mix(in srgb, red, blue)) {
    :root {
        --xf-primary-dark: color-mix(in srgb, var(--color-primary, #1366f6) 80%, black);
        --xf-primary-bright: color-mix(in srgb, var(--color-primary, #1366f6) 52%, white);
        --xf-primary-tint: color-mix(in srgb, var(--color-primary, #1366f6) 20%, white);
        --xf-primary-tint-2: color-mix(in srgb, var(--color-primary, #1366f6) 13%, white);
        --xf-primary-soft: color-mix(in srgb, var(--color-primary, #1366f6) 8%, white);
    }
}
/* XF-TOKENS-END */

/* Section shell --------------------------------------------------------- */

.xf-block {
    position: relative;
}

.xf-main-content img {
    max-width: 100%;
}

.xf-vs-default {
    padding-top: 60px;
    padding-bottom: 60px;
}

.xf-vs-sm {
    padding-top: 30px;
    padding-bottom: 30px;
}

.xf-vs-lg {
    padding-top: 100px;
    padding-bottom: 100px;
}

.xf-vs-none {
    padding-top: 0;
    padding-bottom: 0;
}

.xf-container-narrow {
    max-width: var(--xf-container-narrow);
}

@media (max-width: 767.98px) {
    .xf-vs-default {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .xf-vs-lg {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Shared bits ------------------------------------------------------------ */

.xf-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--xf-primary);
}

.xf-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.xf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.xf-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.xf-btn-primary {
    background: var(--xf-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(var(--bs-primary-rgb), .25);
}

.xf-btn-primary:hover {
    background: var(--xf-primary-dark);
    color: #fff;
}

.xf-btn-outline {
    background: transparent;
    color: var(--xf-ink);
    border-color: var(--xf-line);
}

.xf-btn-outline:hover {
    border-color: var(--xf-primary);
    color: var(--xf-primary);
}

.xf-trust-line {
    margin-top: 20px;
    font-size: 13px;
    color: var(--xf-muted);
}

.xf-trust-line::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #22c55e;
    vertical-align: 1px;
}

.xf-section-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.xf-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.xf-section-head__title {
    margin-bottom: 12px;
}

.xf-section-head__subtitle {
    font-size: 17px;
    line-height: 1.7;
}

/* Generic responsive card grid ------------------------------------------ */

.xf-card-grid {
    display: grid;
    gap: 28px;
}

.xf-card-grid--1 { grid-template-columns: 1fr; }
.xf-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.xf-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.xf-card-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991.98px) {
    .xf-card-grid--3,
    .xf-card-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .xf-card-grid,
    .xf-card-grid--2,
    .xf-card-grid--3,
    .xf-card-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* xf-heading ------------------------------------------------------------- */

.xf-heading .xf-heading__title {
    margin-bottom: 12px;
}

.xf-heading .xf-heading__subtitle {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.7;
}

.xf-heading.xf-heading--center {
    text-align: center;
}

.xf-heading.xf-heading--center .xf-eyebrow {
    display: inline-block;
}

.xf-heading.xf-heading--center .xf-heading__subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* xf-hero-split ---------------------------------------------------------- */

.xf-hero-split__title {
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
}

.xf-hero-split__subtitle {
    font-size: 17px;
    line-height: 1.75;
}

.xf-media-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--xf-shadow);
    background: var(--xf-soft);
    aspect-ratio: 1 / 1;
}

.xf-media-frame__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.xf-media-caption {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
}

.xf-play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 18, 38, .18);
    transition: background-color .2s ease;
}

.xf-play-button:hover {
    background: rgba(8, 18, 38, .32);
}

.xf-play-button__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    position: relative;
    box-shadow: 0 12px 30px rgba(8, 18, 38, .3);
    transition: transform .2s ease;
}

.xf-play-button:hover .xf-play-button__icon {
    transform: scale(1.08);
}

.xf-play-button__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-left: 20px solid var(--xf-primary);
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

@media (min-width: 992px) {
    .xf-hero-split--reverse .row > .col-lg-6:first-child {
        order: 2;
    }
}

/* xf-hero-centered ------------------------------------------------------- */

.xf-hero-centered__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.xf-hero-centered__title {
    margin-bottom: 18px;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.12;
}

.xf-hero-centered__subtitle {
    font-size: 18px;
    line-height: 1.75;
    color: var(--xf-muted);
}

.xf-hero-centered .xf-buttons {
    justify-content: center;
}

.xf-hero-centered .xf-trust-line {
    color: inherit;
    opacity: .85;
}

.xf-hero-centered--bg .xf-hero-centered__title,
.xf-hero-centered--bg .xf-hero-centered__subtitle,
.xf-hero-centered--bg .xf-trust-line {
    color: #fff;
}

/* xf-logo-strip ---------------------------------------------------------- */

.xf-logo-strip__title {
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.xf-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.xf-logo-grid__item {
    flex: 1 1 150px;
    max-width: 200px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid var(--xf-line);
    border-radius: 12px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.xf-logo-grid__item:hover {
    border-color: var(--xf-primary-tint);
    box-shadow: 0 8px 22px rgba(15, 27, 51, .07);
}

.xf-logo-grid__item img {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
}

.xf-logo-grid__wordmark {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #7c8aa5;
    text-align: center;
}

.xf-logo-grid--muted img {
    filter: grayscale(1);
    opacity: .55;
    transition: filter .2s ease, opacity .2s ease;
}

.xf-logo-grid--muted .xf-logo-grid__item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.xf-logo-grid--2 .xf-logo-grid__item { flex-basis: calc(50% - 16px); }
.xf-logo-grid--3 .xf-logo-grid__item { flex-basis: calc(33.333% - 16px); }
.xf-logo-grid--4 .xf-logo-grid__item { flex-basis: calc(25% - 16px); }
.xf-logo-grid--5 .xf-logo-grid__item { flex-basis: calc(20% - 16px); }
.xf-logo-grid--6 .xf-logo-grid__item { flex-basis: calc(16.666% - 16px); }

@media (max-width: 575.98px) {
    .xf-logo-grid--4 .xf-logo-grid__item,
    .xf-logo-grid--5 .xf-logo-grid__item,
    .xf-logo-grid--6 .xf-logo-grid__item {
        flex-basis: calc(50% - 16px);
    }
}

/* xf-badges & xf-feature-grid ------------------------------------------- */

.xf-badge-card,
.xf-feature-card {
    padding: 30px 26px;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.xf-badge-card:hover,
.xf-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--xf-primary-tint);
    box-shadow: var(--xf-shadow);
}

.xf-badge-card__icon,
.xf-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(var(--bs-primary-rgb), .1);
    color: var(--xf-primary);
    font-size: 26px;
}

.xf-badge-card__title,
.xf-feature-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--xf-ink);
}

.xf-badge-card__text,
.xf-feature-card__text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
}

/* Linked variant (resource / navigation tiles) -------------------------- */

a.xf-feature-card--linked {
    position: relative;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

a.xf-feature-card--linked:hover {
    color: inherit;
    text-decoration: none;
}

.xf-feature-card__arrow {
    position: absolute;
    top: 26px;
    right: 24px;
    font-size: 16px;
    color: var(--xf-primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s ease, transform .2s ease;
}

a.xf-feature-card--linked:hover .xf-feature-card__arrow,
a.xf-feature-card--linked:focus-visible .xf-feature-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

a.xf-feature-card--linked:focus-visible {
    outline: 2px solid var(--xf-primary);
    outline-offset: 2px;
}

/* xf-stats --------------------------------------------------------------- */

.xf-stats__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.xf-stat {
    text-align: center;
    padding: 18px 10px;
}

.xf-stat__number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    color: var(--xf-primary);
    font-variant-numeric: tabular-nums;
}

.xf-stat__affix {
    font-size: .65em;
    vertical-align: super;
}

.xf-stat__label {
    margin-top: 10px;
    font-size: 15px;
}

/* xf-split-content ------------------------------------------------------- */

.xf-split-content__subtitle {
    margin: 12px 0 20px;
    font-size: 16.5px;
    line-height: 1.75;
}

.xf-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 6px;
}

.xf-check-list li {
    position: relative;
    padding: 7px 0 7px 34px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--xf-ink);
}

.xf-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--xf-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* xf-product-cards ------------------------------------------------------- */

.xf-product-cards .xf-section-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.xf-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    background: #fff;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.xf-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--xf-shadow);
}

.xf-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--xf-soft);
}

.xf-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xf-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--xf-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.xf-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 22px;
}

.xf-product-card__title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
}

.xf-product-card__specs {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
}

.xf-product-card__price {
    font-size: 20px;
    font-weight: 800;
    color: var(--xf-primary);
    margin-bottom: 14px;
}

.xf-product-card__link {
    margin-top: auto;
    align-self: flex-start;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--xf-ink);
    text-decoration: none;
}

.xf-product-card__link i {
    font-size: 15px;
    transition: transform .2s ease;
}

.xf-product-card__link:hover {
    color: var(--xf-primary);
}

.xf-product-card__link:hover i {
    transform: translateX(3px);
}

/* xf-category-grid ------------------------------------------------------- */

.xf-category-tile {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: var(--xf-radius);
    overflow: hidden;
    color: #fff;
}

.xf-category-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.xf-category-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 38, .05) 30%, rgba(8, 18, 38, .78) 100%);
    transition: background-color .25s ease;
}

.xf-category-tile:hover .xf-category-tile__img {
    transform: scale(1.06);
}

.xf-category-tile:hover .xf-category-tile__overlay {
    background-color: rgba(var(--bs-primary-rgb), .22);
}

.xf-category-tile__content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.xf-category-tile__name {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.xf-category-tile__count {
    flex-shrink: 0;
    font-size: 12.5px;
    font-weight: 600;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
}

/* xf-steps --------------------------------------------------------------- */

.xf-steps__grid {
    counter-reset: xf-step;
}

.xf-step {
    position: relative;
    padding: 0 8px;
}

.xf-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--xf-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(var(--bs-primary-rgb), .28);
}

.xf-steps__grid:not(.xf-card-grid--4) .xf-step:not(:last-child)::after,
.xf-steps__grid.xf-card-grid--4 .xf-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    left: calc(54px + 22px);
    right: -8px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--xf-primary-tint) 0 8px, transparent 8px 16px);
}

@media (max-width: 575.98px) {
    .xf-step::after {
        display: none;
    }
}

.xf-step__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}

.xf-step__text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
}

/* xf-testimonials -------------------------------------------------------- */

.xf-quote-card {
    margin: 0;
    padding: 28px 26px;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.xf-quote-card__stars {
    letter-spacing: 2px;
    font-size: 15px;
}

.xf-star {
    color: var(--xf-primary-tint);
}

.xf-star--on {
    color: #f5a623;
}

.xf-quote-card__text {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--xf-ink);
    flex: 1;
}

.xf-quote-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.xf-quote-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.xf-quote-card__name,
.xf-quote-card__role {
    display: block;
}

.xf-quote-card__name {
    font-size: 15px;
    font-weight: 700;
}

.xf-quote-card__role {
    font-size: 13px;
}

/* xf-faq ----------------------------------------------------------------- */

.xf-faq__wrap {
    max-width: 860px;
    margin: 0 auto;
}

.xf-accordion__item {
    border: 1px solid var(--xf-line);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 14px;
    overflow: hidden;
}

.xf-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--xf-ink);
}

.xf-accordion__summary::-webkit-details-marker {
    display: none;
}

.xf-accordion__icon {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--xf-primary);
    transition: transform .25s ease;
}

.xf-accordion__item[open] .xf-accordion__icon {
    transform: rotate(180deg);
}

.xf-accordion__body {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.8;
}

/* xf-cta-band ------------------------------------------------------------ */

.xf-cta-band {
    background: var(--xf-ink);
}

.xf-cta-band__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.xf-cta-band__title {
    color: inherit;
    margin-bottom: 14px;
    font-size: clamp(28px, 3.4vw, 42px);
}

.xf-cta-band__subtitle {
    font-size: 17px;
    line-height: 1.7;
    opacity: .88;
}

.xf-cta-band .xf-buttons {
    justify-content: center;
}

.xf-cta-band .xf-btn-outline,
.xf-hero-centered .xf-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

.xf-cta-band .xf-btn-outline:hover,
.xf-hero-centered .xf-btn-outline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

/* xf-quote-form ---------------------------------------------------------- */

.xf-quote-form__layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 991.98px) {
    .xf-quote-form__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.xf-form {
    padding: 32px 30px;
    border: 1px solid var(--xf-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--xf-shadow);
}

.xf-form__label {
    display: block;
    margin-bottom: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--xf-ink);
}

.xf-form__control {
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid var(--xf-line);
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    color: var(--xf-ink);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.xf-form__control:focus {
    outline: none;
    border-color: var(--xf-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), .14);
}

textarea.xf-form__control {
    min-height: 120px;
    resize: vertical;
}

.xf-form__check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--xf-muted);
}

.xf-form__check input {
    margin-top: 3px;
}

.xf-form__submit {
    width: 100%;
    border: none;
}

.xf-form__submit:disabled {
    opacity: .65;
    cursor: wait;
}

.xf-form__note {
    margin: 0;
    font-size: 12.5px;
    text-align: center;
}

.xf-form__feedback {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.xf-form__feedback.is-visible {
    display: block;
}

.xf-form__feedback.is-success {
    background: #e7f7ef;
    color: #0f8a4c;
    border: 1px solid #b8e6cf;
}

.xf-form__feedback.is-error {
    background: #ffeaf1;
    color: #c81e5b;
    border: 1px solid #f7c3d7;
}

/* xf-rich-text ----------------------------------------------------------- */

.xf-rich-text__body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--xf-ink);
}

.xf-rich-text__body > * + * {
    margin-top: 18px;
}

.xf-rich-text__body h1,
.xf-rich-text__body h2,
.xf-rich-text__body h3,
.xf-rich-text__body h4 {
    color: var(--xf-ink);
    margin-top: 32px;
}

.xf-rich-text__body a {
    color: var(--xf-primary);
    text-decoration: underline;
}

.xf-rich-text__body ul,
.xf-rich-text__body ol {
    padding-left: 22px;
}

.xf-rich-text__body img {
    border-radius: 12px;
}

.xf-rich-text--center .xf-rich-text__body {
    text-align: center;
}

.xf-rich-text--center .xf-rich-text__body ul,
.xf-rich-text--center .xf-rich-text__body ol {
    display: inline-block;
    text-align: left;
}

/* xf-spacer -------------------------------------------------------------- */

.xf-spacer {
    height: var(--xf-spacer-h, 60px);
}

@media (max-width: 767.98px) {
    .xf-spacer {
        height: var(--xf-spacer-h-mobile, var(--xf-spacer-h, 60px));
    }
}

/* ===========================================================================
   BATCH 2 — B2B factory decision-chain blocks + motion system
   =========================================================================== */

/* Motion: reveal on scroll ------------------------------------------------
   landing.js adds .xf-anim-ready to <html> and .xf-inview to each block when
   it enters the viewport. Without JS (or with reduced motion) everything is
   visible by default, so content is never hidden from crawlers/no-JS users. */

@keyframes xf-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

.xf-anim-ready .xf-block {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
}

.xf-anim-ready .xf-block.xf-inview {
    opacity: 1;
    transform: none;
    /* drop the hint after reveal: a persistent will-change creates a
       containing block and breaks position:fixed children (sticky CTA /
       floating contact anchored to the section instead of viewport) */
    will-change: auto;
}

.xf-anim-ready .xf-inview .xf-card-grid > *,
.xf-anim-ready .xf-inview .xf-gallery__grid > *,
.xf-anim-ready .xf-inview .xf-download-list__row,
.xf-anim-ready .xf-inview .xf-timeline__item,
.xf-anim-ready .xf-inview .xf-vs__row,
.xf-anim-ready .xf-inview .xf-marquee,
.xf-anim-ready .xf-inview .xf-tabs,
.xf-anim-ready .xf-inview .xf-spec,
.xf-anim-ready .xf-inview .xf-comparison__scroll {
    animation: xf-rise .55s cubic-bezier(.22,.61,.36,1) both;
}

.xf-anim-ready .xf-inview .xf-card-grid > *:nth-child(1),
.xf-anim-ready .xf-inview .xf-gallery__grid > *:nth-child(1) { animation-delay: .04s; }
.xf-anim-ready .xf-inview .xf-card-grid > *:nth-child(2),
.xf-anim-ready .xf-inview .xf-gallery__grid > *:nth-child(2) { animation-delay: .10s; }
.xf-anim-ready .xf-inview .xf-card-grid > *:nth-child(3),
.xf-anim-ready .xf-inview .xf-gallery__grid > *:nth-child(3) { animation-delay: .16s; }
.xf-anim-ready .xf-inview .xf-card-grid > *:nth-child(4),
.xf-anim-ready .xf-inview .xf-gallery__grid > *:nth-child(4) { animation-delay: .22s; }
.xf-anim-ready .xf-inview .xf-card-grid > *:nth-child(5),
.xf-anim-ready .xf-inview .xf-gallery__grid > *:nth-child(5) { animation-delay: .28s; }
.xf-anim-ready .xf-inview .xf-card-grid > *:nth-child(6),
.xf-anim-ready .xf-inview .xf-gallery__grid > *:nth-child(6) { animation-delay: .34s; }
.xf-anim-ready .xf-inview .xf-card-grid > *:nth-child(n+7),
.xf-anim-ready .xf-inview .xf-gallery__grid > *:nth-child(n+7) { animation-delay: .40s; }

.xf-block.xf-no-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .xf-anim-ready .xf-block,
    .xf-anim-ready .xf-block.xf-inview,
    .xf-anim-ready .xf-inview [class] {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* Shared bits ------------------------------------------------------------- */

.xf-block-cta {
    margin-top: 40px;
    text-align: center;
}

.xf-btn-sm {
    min-height: 42px;
    padding: 0 22px;
    font-size: 14px;
}

.xf-section-head--light .xf-section-head__subtitle {
    color: rgba(255,255,255,.78);
}

/* xf-announcement --------------------------------------------------------- */

.xf-announcement {
    padding-top: 12px;
    padding-bottom: 12px;
}

.xf-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.xf-announcement__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    font-size: 13px;
    flex: 0 0 auto;
}

.xf-announcement__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.xf-announcement__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.xf-announcement__link i {
    font-size: 14px;
    transition: transform .2s ease;
}

.xf-announcement__link:hover i {
    transform: translateX(3px);
}

.xf-announcement--dark {
    background: var(--xf-ink);
    color: #fff;
}

.xf-announcement--dark .xf-announcement__link { color: var(--xf-primary-bright); }

.xf-announcement--primary {
    background: var(--xf-primary);
    color: #fff;
}

.xf-announcement--primary .xf-announcement__link { color: #fff; text-decoration: underline; }

.xf-announcement--light {
    background: var(--xf-soft);
    color: var(--xf-ink);
    border-bottom: 1px solid var(--xf-line);
}

.xf-announcement--light .xf-announcement__icon { background: var(--xf-primary-tint-2); color: var(--xf-primary); }
.xf-announcement--light .xf-announcement__link { color: var(--xf-primary); }

/* xf-breadcrumb ----------------------------------------------------------- */

.xf-breadcrumb {
    background: var(--xf-soft);
    border-bottom: 1px solid var(--xf-line);
}

.xf-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13.5px;
}

.xf-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    color: var(--xf-muted);
}

.xf-breadcrumb__item + .xf-breadcrumb__item::before {
    content: "\f10f";
    font-family: "uicons-regular-rounded";
    font-size: 12px;
    margin: 0 6px;
    color: #a7b6cc;
}

.xf-breadcrumb__item a {
    color: var(--xf-muted);
    text-decoration: none;
    transition: color .2s ease;
}

.xf-breadcrumb__item a:hover { color: var(--xf-primary); }
.xf-breadcrumb__item.is-current { color: var(--xf-ink); font-weight: 600; }

/* xf-anchor-nav ----------------------------------------------------------- */

.xf-anchor-nav {
    border-bottom: 1px solid var(--xf-line);
    background: rgba(255,255,255,.92);
    z-index: 20;
}

.xf-anchor-nav--sticky {
    position: sticky;
    top: 0;
    backdrop-filter: saturate(180%) blur(10px);
}

.xf-anchor-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.xf-anchor-nav__list--pills {
    justify-content: center;
}

.xf-anchor-nav__list a {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--xf-muted);
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.xf-anchor-nav__list--pills a:hover { color: var(--xf-primary); background: var(--xf-primary-soft); }

.xf-anchor-nav__list--pills a.is-active {
    color: #fff;
    background: var(--xf-primary);
    box-shadow: 0 8px 18px rgba(var(--bs-primary-rgb),.28);
}

.xf-anchor-nav__list--underline {
    justify-content: center;
    gap: 26px;
}

.xf-anchor-nav__list--underline a {
    padding: 10px 2px;
    border-radius: 0;
    border-bottom: 2px solid transparent;
}

.xf-anchor-nav__list--underline a.is-active,
.xf-anchor-nav__list--underline a:hover {
    color: var(--xf-primary);
    border-bottom-color: var(--xf-primary);
}

/* Anchor targets leave room for the sticky bar under native jump too. */
.xf-block[id] {
    scroll-margin-top: 84px;
}

/* xf-hero-video ----------------------------------------------------------- */

.xf-hero-video {
    position: relative;
    overflow: hidden;
    background: #0d1730;
    color: #fff;
    display: flex;
    align-items: center;
    min-height: 620px;
}

.xf-hero-video__bg {
    position: absolute;
    inset: -60px 0;
    z-index: 0;
}

.xf-hero-video__bg video,
.xf-hero-video__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xf-hero-video__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7,14,30,.94) 0%, rgba(7,14,30,.82) 38%, rgba(7,14,30,.42) 72%, rgba(7,14,30,.28) 100%),
        linear-gradient(180deg, rgba(7,14,30,.35) 0%, rgba(7,14,30,.12) 45%, rgba(7,14,30,.55) 100%);
}

.xf-hero-video--ov-l .xf-hero-video__overlay { background: rgba(8,18,38,.38); }
.xf-hero-video--ov-s .xf-hero-video__overlay { background: linear-gradient(180deg, rgba(8,18,38,.72), rgba(8,18,38,.82)); }

@media (max-width: 767.98px) {
    .xf-hero-video__overlay {
        background:
            linear-gradient(90deg, rgba(7,14,30,.92) 0%, rgba(7,14,30,.82) 55%, rgba(7,14,30,.62) 100%),
            linear-gradient(180deg, rgba(7,14,30,.35) 0%, rgba(7,14,30,.2) 45%, rgba(7,14,30,.65) 100%);
    }
}

.xf-hero-video .container { position: relative; z-index: 2; }

.xf-hero-video__inner {
    max-width: 820px;
}

.xf-hero-video .xf-eyebrow { color: var(--xf-primary-bright); }

.xf-hero-video__title {
    color: #fff;
    margin-bottom: 18px;
}

.xf-hero-video__subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    max-width: 680px;
}

.xf-hero-video .xf-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.55);
}

.xf-hero-video .xf-btn-outline:hover {
    background: #fff;
    color: var(--xf-ink);
    border-color: #fff;
}

.xf-hero-video .xf-trust-line { color: rgba(255,255,255,.75); }
.xf-hero-video .xf-trust-line::before { background: #4ade80; }

/* xf-hero-quickform -------------------------------------------------------- */

.xf-hero-qf__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.xf-hero-qf__grid--reverse { direction: rtl; }
.xf-hero-qf__grid--reverse > * { direction: ltr; }

.xf-hero-qf__title { margin: 8px 0 16px; }

.xf-hero-qf__subtitle { font-size: 17px; line-height: 1.75; }

.xf-hero-qf__media {
    margin-top: 28px;
    border-radius: var(--xf-radius);
    overflow: hidden;
    box-shadow: var(--xf-shadow);
}

.xf-hero-qf__media img { display: block; width: 100%; }

.xf-hero-qf__pane {
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: 18px;
    padding: 34px;
    box-shadow: var(--xf-shadow);
}

@media (max-width: 991.98px) {
    .xf-hero-qf__grid { grid-template-columns: 1fr; gap: 36px; }
    .xf-hero-qf__media { display: none; }
    .xf-hero-qf__pane { padding: 26px; }
}

/* xf-marquee -------------------------------------------------------------- */

@keyframes xf-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.xf-marquee {
    overflow: hidden;
}

.xf-marquee__title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--xf-muted);
    margin-bottom: 22px;
}

.xf-marquee__viewport {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.xf-marquee__track {
    display: flex;
    width: max-content;
    animation: xf-marquee 40s linear infinite;
}

.xf-marquee--slow .xf-marquee__track { animation-duration: 60s; }
.xf-marquee--fast .xf-marquee__track { animation-duration: 26s; }

.xf-marquee__viewport:hover .xf-marquee__track { animation-play-state: paused; }

.xf-marquee__group {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
}

.xf-marquee__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xf-marquee__item img {
    height: 46px;
    max-width: 150px;
    object-fit: contain;
}

.xf-marquee__track--gray .xf-marquee__item img {
    filter: grayscale(100%) opacity(.6);
    transition: filter .25s ease, transform .25s ease;
}

.xf-marquee__item:hover img {
    filter: grayscale(0) opacity(1) !important;
    transform: scale(1.04);
}

.xf-marquee__chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid var(--xf-line);
    border-radius: 999px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: var(--xf-muted);
    white-space: nowrap;
}

/* xf-certifications ------------------------------------------------------- */

.xf-cert-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.xf-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--xf-shadow);
    border-color: var(--xf-primary-tint);
}

.xf-cert-card__media {
    aspect-ratio: 4 / 3;
    background: #fff;
    padding: 18px;
    border-bottom: 1px solid var(--xf-line);
    display: flex;
    align-items: center;
    justify-content: center;
}

.xf-cert-card__media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.xf-cert-card__body { padding: 20px; }

.xf-cert-card__title {
    font-size: 17px;
    margin-bottom: 6px;
}

.xf-cert-card__meta {
    font-size: 13.5px;
    margin-bottom: 12px;
}

.xf-cert-card__year { white-space: nowrap; }

.xf-cert-card__verify {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--xf-primary);
    text-decoration: none;
}

.xf-cert-card__verify i { font-size: 15px; }
.xf-cert-card__verify:hover { text-decoration: underline; }

.xf-certifications__note {
    margin: 28px 0 0;
    font-size: 13.5px;
    text-align: center;
}

/* xf-gallery -------------------------------------------------------------- */

.xf-gallery__grid {
    display: grid;
    gap: 18px;
}

.xf-gallery__grid--2 { grid-template-columns: repeat(2, 1fr); }
.xf-gallery__grid--3 { grid-template-columns: repeat(3, 1fr); }
.xf-gallery__grid--4 { grid-template-columns: repeat(4, 1fr); }

.xf-gallery__item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--xf-soft);
}

.xf-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

.xf-gallery__item:hover img { transform: scale(1.06); }

.xf-gallery__zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(8,18,38,.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .25s ease, transform .25s ease;
}

.xf-gallery__zoom i { font-size: 16px; }
.xf-gallery__item:hover .xf-gallery__zoom { opacity: 1; transform: scale(1); }

.xf-gallery__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 16px 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(transparent, rgba(8,18,38,.8));
    opacity: 0;
    transition: opacity .25s ease;
}

.xf-gallery__item:hover .xf-gallery__caption { opacity: 1; }

@media (max-width: 991.98px) {
    .xf-gallery__grid--3,
    .xf-gallery__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .xf-gallery__grid,
    .xf-gallery__grid--2,
    .xf-gallery__grid--3,
    .xf-gallery__grid--4 { grid-template-columns: 1fr; }
}

/* xf-video-feature -------------------------------------------------------- */

.xf-vf__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.xf-vf__grid--reverse { direction: rtl; }
.xf-vf__grid--reverse > * { direction: ltr; }

.xf-vf__subtitle { margin: 14px 0 20px; font-size: 16.5px; line-height: 1.75; }
.xf-vf__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(8,18,38,.72);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .04em;
}

@media (max-width: 991.98px) {
    .xf-vf__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* xf-vs-table ------------------------------------------------------------- */

.xf-vs {
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,27,51,.05);
}

.xf-vs__head,
.xf-vs__row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.xf-vs__row + .xf-vs__row { border-top: 1px solid var(--xf-line); }

.xf-vs__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 18px;
    text-align: center;
}

.xf-vs__cell--feature {
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    font-weight: 600;
    color: var(--xf-ink);
}

.xf-vs__cell--ours {
    background: #f3f8ff;
    border-left: 1px solid var(--xf-line);
    border-right: 1px solid var(--xf-line);
}

.xf-vs__cell--theirs { color: var(--xf-muted); }

.xf-vs__head .xf-vs__cell { padding-top: 26px; padding-bottom: 26px; }
.xf-vs__head h3 { margin: 0; font-size: 17px; text-align: center; }
.xf-vs__head .xf-vs__cell--feature { background: transparent; }
.xf-vs__head .xf-vs__cell--ours { position: relative; }
.xf-vs__head .xf-vs__cell--theirs h3 { color: var(--xf-muted); font-weight: 500; }

.xf-vs__head-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--xf-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.xf-vs__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
}

.xf-vs__mark--yes { background: #e7f7ef; color: #0f8a4c; }
.xf-vs__mark--no { background: #f4f6fa; color: #a7b6cc; }

.xf-vs__text {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--xf-ink);
}

.xf-vs__text--muted {
    font-weight: 500;
    color: var(--xf-muted);
}

.xf-vs__note { margin: 18px 0 0; font-size: 13.5px; text-align: center; }

@media (max-width: 575.98px) {
    .xf-vs__cell { padding: 12px 7px; font-size: 12.5px; }
    .xf-vs__head h3 { font-size: 12.5px; line-height: 1.35; }
    .xf-vs__head-tag {
        font-size: 9.5px;
        padding: 4px 9px;
        letter-spacing: 0.6px;
        white-space: nowrap;
    }
    .xf-vs__mark { width: 26px; height: 26px; }
    .xf-vs__text { font-size: 12px; }
}

/* xf-world-markets -------------------------------------------------------- */

.xf-wm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.xf-wm__map {
    border-radius: var(--xf-radius);
    overflow: hidden;
    box-shadow: var(--xf-shadow);
    background: var(--xf-soft);
}

.xf-wm__map img { display: block; width: 100%; }
.xf-wm__subtitle { margin: 12px 0 24px; line-height: 1.7; }

.xf-wm__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.xf-wm__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--xf-line);
}

.xf-wm__pin {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--xf-primary-soft);
    color: var(--xf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.xf-wm__text { display: flex; flex-direction: column; gap: 2px; flex: 1; font-size: 14.5px; }
.xf-wm__share { font-weight: 800; color: var(--xf-primary); font-size: 15px; }

@media (max-width: 991.98px) {
    .xf-wm__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* xf-custom-grid ---------------------------------------------------------- */

.xf-custom-card {
    position: relative;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.xf-custom-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--xf-shadow);
    border-color: var(--xf-primary-tint);
}

.xf-custom-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--xf-primary-soft);
    color: var(--xf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.xf-custom-card__title { font-size: 18px; margin-bottom: 8px; }
.xf-custom-card__text { font-size: 14.5px; line-height: 1.65; margin: 0; }

.xf-custom-card__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #fff3e8;
    color: #d85f12;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
}

/* xf-timeline ------------------------------------------------------------- */

.xf-timeline__list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 34px;
    position: relative;
}

.xf-timeline__list::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(var(--xf-primary), var(--xf-primary-tint));
}

.xf-timeline__item {
    position: relative;
    padding: 0 0 30px 28px;
}

.xf-timeline__item:last-child { padding-bottom: 0; }

.xf-timeline__dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--xf-primary);
    box-shadow: 0 0 0 5px var(--xf-primary-soft);
}

.xf-timeline__date {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 13px;
    border-radius: 999px;
    background: var(--xf-primary-soft);
    color: var(--xf-primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .04em;
}

.xf-timeline__card {
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: 12px;
    padding: 18px 22px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.xf-timeline__item:hover .xf-timeline__card {
    box-shadow: var(--xf-shadow);
    transform: translateX(3px);
}

.xf-timeline__title { font-size: 17px; margin-bottom: 4px; }
.xf-timeline__text { margin: 0; font-size: 14.5px; line-height: 1.65; }

/* xf-spec-table ----------------------------------------------------------- */

.xf-spec {
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    overflow: hidden;
}

.xf-spec + .xf-buttons,
.xf-spec__table + .xf-buttons { margin-top: 32px; }

.xf-spec__group {
    margin: 0;
    padding: 14px 24px;
    background: var(--xf-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.xf-spec__group + .xf-spec__table { border-top: 0; }

.xf-spec__table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
}

.xf-spec__table + .xf-spec__group { border-top: 2px solid var(--xf-line); }

.xf-spec__table th,
.xf-spec__table td {
    padding: 15px 24px;
    font-size: 14.5px;
    vertical-align: top;
    border-bottom: 1px solid var(--xf-line);
}

.xf-spec__table tr:last-child th,
.xf-spec__table tr:last-child td { border-bottom: 0; }

.xf-spec__table th {
    width: 38%;
    text-align: left;
    font-weight: 600;
    color: var(--xf-muted);
    background: var(--xf-soft);
}

.xf-spec__table td { color: var(--xf-ink); font-weight: 500; }

/* xf-comparison ----------------------------------------------------------- */

.xf-comparison__scroll {
    overflow-x: auto;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    -webkit-overflow-scrolling: touch;
}

.xf-comparison__table {
    width: 100%;
    min-width: 560px;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
}

.xf-comparison__table th,
.xf-comparison__table td {
    padding: 18px 20px;
    text-align: center;
    font-size: 14.5px;
    border-bottom: 1px solid var(--xf-line);
}

.xf-comparison__table thead th {
    background: var(--xf-soft);
    color: var(--xf-ink);
    font-size: 16px;
    vertical-align: bottom;
    padding-bottom: 22px;
}

.xf-comparison__table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--xf-ink);
}

.xf-comparison__table tbody tr:last-child th,
.xf-comparison__table tbody tr:last-child td { border-bottom: 0; }

.xf-comparison__hl {
    background: #f3f8ff !important;
    box-shadow: inset 0 0 0 1.5px var(--xf-primary);
    position: relative;
}

.xf-comparison__ribbon {
    display: block;
    margin: -10px auto 10px;
    width: fit-content;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--xf-primary);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* xf-tier-table ----------------------------------------------------------- */

.xf-tier-grid { margin-top: 8px; }

.xf-tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 28px;
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    transition: transform .25s ease, box-shadow .25s ease;
}

.xf-tier-card:hover { transform: translateY(-4px); box-shadow: var(--xf-shadow); }

.xf-tier-card--hl {
    border-color: var(--xf-primary);
    border-width: 2px;
    box-shadow: 0 22px 55px rgba(var(--bs-primary-rgb),.16);
}

.xf-tier-card__ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: 999px;
    background: var(--xf-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}

.xf-tier-card__qty {
    font-size: 15px;
    font-weight: 700;
    color: var(--xf-muted);
    margin-bottom: 10px;
}

.xf-tier-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--xf-ink);
    margin-bottom: 18px;
}

.xf-tier-card__meta { margin: 0; width: 100%; }

.xf-tier-card__meta > div {
    padding: 12px 0;
    border-top: 1px solid var(--xf-line);
}

.xf-tier-card__meta dt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--xf-muted);
    margin-bottom: 4px;
}

.xf-tier-card__meta dt i { font-size: 13px; margin-right: 4px; }
.xf-tier-card__meta dd { margin: 0; font-size: 14.5px; font-weight: 600; }

.xf-tier-table__cta { margin-top: 36px; text-align: center; }

.xf-tier-table__note {
    margin: 16px 0 0;
    font-size: 12.5px;
    text-align: center;
}

/* xf-progress ------------------------------------------------------------- */

.xf-progress__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.xf-progress__side { margin-top: 16px; font-size: 15.5px; line-height: 1.75; }

.xf-progress__item + .xf-progress__item { margin-top: 26px; }

.xf-progress__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 9px;
}

.xf-progress__label { font-size: 15px; font-weight: 700; }
.xf-progress__value { font-size: 20px; font-weight: 800; color: var(--xf-primary); }

.xf-progress__track {
    height: 10px;
    border-radius: 999px;
    background: #e8edf6;
    overflow: hidden;
}

.xf-progress__bar {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--xf-primary), var(--xf-primary-bright));
    transition: width 1.4s cubic-bezier(.22,.61,.36,1);
}

.xf-progress__note { margin-top: 7px; font-size: 12.5px; }

.xf-progress--dark {
    background: var(--xf-ink);
    color: #fff;
}

.xf-progress--dark .xf-progress__side { color: rgba(255,255,255,.72); }
.xf-progress--dark .xf-progress__intro .text-heading-2 { color: #fff; }
.xf-progress--dark .xf-progress__intro .xf-eyebrow { color: rgba(255,255,255,.75); }
.xf-progress--dark .xf-progress__label { color: #fff; }
.xf-progress--dark .xf-progress__note { color: rgba(255,255,255,.6); }
.xf-progress--dark .xf-progress__track { background: rgba(255,255,255,.14); }

@media (max-width: 991.98px) {
    .xf-progress__grid { grid-template-columns: 1fr; gap: 34px; }
}

/* xf-tabs ----------------------------------------------------------------- */

.xf-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}

.xf-tabs__btn {
    padding: 11px 24px;
    border: 1px solid var(--xf-line);
    border-radius: 999px;
    background: #fff;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--xf-muted);
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.xf-tabs__btn:hover { color: var(--xf-primary); border-color: var(--xf-primary-tint); }

.xf-tabs__btn.is-active {
    color: #fff;
    background: var(--xf-primary);
    border-color: var(--xf-primary);
    box-shadow: 0 10px 22px rgba(var(--bs-primary-rgb),.26);
}

.xf-tabs__panel { display: none; }

.xf-tabs__panel.is-active {
    display: block;
    animation: xf-rise .45s cubic-bezier(.22,.61,.36,1) both;
}

.xf-tabs__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
}

.xf-tabs__media {
    border-radius: var(--xf-radius);
    overflow: hidden;
    box-shadow: var(--xf-shadow);
    background: var(--xf-soft);
}

.xf-tabs__media img { display: block; width: 100%; }
.xf-tabs__title { margin-bottom: 12px; }
.xf-tabs__text { font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.xf-tabs__body .xf-btn { margin-top: 6px; }

@media (max-width: 991.98px) {
    .xf-tabs__grid { grid-template-columns: 1fr; gap: 30px; }
    .xf-tabs__nav { gap: 6px; }
    .xf-tabs__btn { padding: 9px 16px; font-size: 13.5px; }
}

/* xf-case-cards / xf-article-cards ---------------------------------------- */

.xf-case-card,
.xf-article-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.xf-case-card:hover,
.xf-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--xf-shadow);
    border-color: var(--xf-primary-tint);
}

.xf-case-card__media,
.xf-article-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.xf-case-card__media img,
.xf-article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

.xf-case-card:hover .xf-case-card__media img,
.xf-article-card:hover .xf-article-card__media img { transform: scale(1.05); }

.xf-case-card__industry {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 5px 13px;
    border-radius: 999px;
    background: rgba(8,18,38,.72);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.xf-case-card__body,
.xf-article-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.xf-case-card__result {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 800;
    color: var(--xf-primary);
    line-height: 1.1;
}

.xf-case-card__title,
.xf-article-card__title {
    font-size: 18px;
    margin-bottom: 8px;
}

.xf-case-card__summary,
.xf-article-card__excerpt {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.xf-case-card__link,
.xf-article-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: var(--xf-primary);
    text-decoration: none;
}

.xf-case-card__link i,
.xf-article-card__link i { transition: transform .2s ease; }

.xf-case-card__link:hover,
.xf-article-card__link:hover { text-decoration: underline; }
.xf-case-card__link:hover i,
.xf-article-card__link:hover i { transform: translateX(3px); }

.xf-article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12.5px;
}

.xf-article-card__category {
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--xf-primary-soft);
    color: var(--xf-primary);
    font-weight: 700;
    letter-spacing: .03em;
}

/* xf-downloads ------------------------------------------------------------ */

.xf-download-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    transition: transform .25s ease, box-shadow .25s ease;
}

.xf-download-card:hover { transform: translateY(-4px); box-shadow: var(--xf-shadow); }

.xf-download-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--xf-primary-soft);
    color: var(--xf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 16px;
}

.xf-download-card__title { font-size: 17px; margin-bottom: 6px; }
.xf-download-card__meta { font-size: 13.5px; margin-bottom: 18px; }
.xf-download-card .xf-btn { margin-top: auto; }

.xf-download-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    overflow: hidden;
    background: #fff;
}

.xf-download-list__row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
}

.xf-download-list__row + .xf-download-list__row { border-top: 1px solid var(--xf-line); }

.xf-download-list__icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--xf-primary-soft);
    color: var(--xf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.xf-download-list__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.xf-download-list__text strong { font-size: 15.5px; }
.xf-download-list__text .color-gray-500 { font-size: 13px; }

.xf-download-list__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--xf-primary);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.xf-download-list__btn:hover {
    background: var(--xf-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 575.98px) {
    .xf-download-list__row { flex-wrap: wrap; padding: 16px 18px; }
    .xf-download-list__btn { width: 100%; justify-content: center; }
}

/* xf-rfq-form ------------------------------------------------------------- */

.xf-rfq__layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.xf-rfq__intro {
    position: sticky;
    top: 90px;
}

.xf-rfq__bullets { margin-top: 26px; }

.xf-rfq__form {
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: 18px;
    padding: 34px;
    box-shadow: var(--xf-shadow);
}

.xf-rfq__checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 18px;
}

.xf-rfq__check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}

.xf-rfq__check input { margin-top: 3px; }

@media (max-width: 991.98px) {
    .xf-rfq__layout { grid-template-columns: 1fr; gap: 32px; }
    .xf-rfq__intro { position: static; }
    .xf-rfq__form { padding: 26px 22px; }
}

@media (max-width: 575.98px) {
    .xf-rfq__checks { grid-template-columns: 1fr; }
}

/* xf-contact-cards -------------------------------------------------------- */

.xf-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 26px;
    background: #fff;
    border: 1px solid var(--xf-line);
    border-radius: var(--xf-radius);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.xf-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--xf-shadow);
    border-color: var(--xf-primary-tint);
}

.xf-contact-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--xf-primary-soft);
    color: var(--xf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
}

.xf-contact-card__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--xf-muted);
    margin-bottom: 8px;
}

.xf-contact-card__value {
    font-size: 18px;
    font-weight: 800;
    color: var(--xf-ink);
    text-decoration: none;
    word-break: break-word;
}

a.xf-contact-card__value:hover { color: var(--xf-primary); }
.xf-contact-card__sub { margin: 8px 0 0; font-size: 13px; }

/* xf-download-gate -------------------------------------------------------- */

.xf-gate--card .xf-gate__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 38px 44px;
    background: linear-gradient(120deg, #10213d, #16315c);
    border-radius: 20px;
    color: #fff;
}

.xf-gate--band .xf-gate__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.xf-gate--band {
    background: linear-gradient(120deg, #10213d, #16315c);
}

.xf-gate__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex: 0 0 auto;
}

.xf-gate__title { color: #fff; margin-bottom: 8px; font-size: 26px; }
.xf-gate__desc { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; margin: 0; }

.xf-gate__form { min-width: 360px; width: 100%; }

.xf-gate__fields {
    display: flex;
    gap: 10px;
}

.xf-gate__fields .xf-form__control {
    flex: 1;
    min-width: 0;
    background: #fff;
}

.xf-gate__form .xf-form__feedback {
    margin-top: 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
}

.xf-gate__form .xf-form__feedback.is-success {
    background: rgba(34,197,94,.22);
    color: #d6ffe5;
}

.xf-gate__note {
    margin: 10px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    text-align: center;
}

@media (max-width: 991.98px) {
    .xf-gate--card .xf-gate__inner,
    .xf-gate--band .xf-gate__inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 20px;
        padding: 34px 26px;
    }

    .xf-gate__form { min-width: 0; }
}

@media (max-width: 575.98px) {
    .xf-gate__fields { flex-direction: column; }
    .xf-gate__fields .xf-btn { width: 100%; }
}

