:root {
    --red: #de253a;
    --red-h: #c41f32;
    --red-tint: #fbe9eb;
    --red-soft: rgba(222, 37, 58, 0.12);
    --black: #0a0a0a;
    --ink: #0e0e0f;
    --white: #ffffff;
    --g60: #565656;
    --g40: #8a8a8a;
    --g20: #d0d0d0;
    --g10: #e8e8e8;
    --g05: #f5f5f5;
    --g02: #f8f8f8;
    --fd: "Sora", sans-serif;
    --fb: "Instrument Sans", sans-serif;
    --fm: "Roboto Mono", monospace;
    --px: 80px;
    --py: 96px;
    --cont: 1170px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1)
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 8px;
    background: var(--red);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 600;
    z-index: 500;
    transition: top 0.25s
}

.skip-link:focus {
    top: 8px
}

.eyebrow {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0
}

.eyebrow.on-dark {
    color: rgb(222 37 58 / .85)
}

.eyebrow.center {
    justify-content: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 100px;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: none
}

.btn-lg {
    height: 56px;
    padding: 0 36px;
    font-size: 15px
}

.btn-sm {
    height: 40px;
    padding: 0 20px;
    font-size: 13px
}

.btn-p {
    position: relative;
    overflow: hidden;
    background: #fff0;
    color: var(--ink);
    border: 1.5px solid rgb(222 37 58 / .4);
    gap: 4px;
    transition: border-color 600ms var(--ease), color 600ms var(--ease)
}

.btn-p:hover {
    border-color: #fff0;
    color: #fff
}

.btn-p:active {
    transform: scale(.95)
}

.btn-p .bc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: width 800ms var(--ease), height 800ms var(--ease), opacity 800ms var(--ease)
}

.btn-p:hover .bc {
    width: 300px;
    height: 300px;
    opacity: 1
}

.btn-p .bl {
    position: relative;
    z-index: 1;
    transform: translateX(-4px);
    transition: transform 800ms ease-out;
    padding: 0 8px
}

.btn-sm.btn-p .bl {
    padding: 0 16px
}

.btn-p:hover .bl {
    transform: translateX(4px)
}

.btn-p .ba-l {
    position: absolute;
    left: -20%;
    z-index: 9;
    color: var(--ink);
    display: flex;
    align-items: center;
    transition: left 800ms var(--ease-spring), color 600ms ease
}

.btn-p:hover .ba-l {
    left: 18px;
    color: #fff
}

.btn-p .ba-r {
    position: absolute;
    right: 18px;
    z-index: 9;
    color: var(--ink);
    display: flex;
    align-items: center;
    transition: right 800ms var(--ease-spring), color 600ms ease
}

.btn-p:hover .ba-r {
    right: -20%;
    color: #fff
}

.btn-p .ba-l svg,
.btn-p .ba-r svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn-p-w {
    color: #fff;
    border-color: rgb(255 255 255 / .3)
}

.btn-p-w .ba-l,
.btn-p-w .ba-r {
    color: #fff
}

.btn-p-w .bc {
    background: var(--red)
}

.btn-o {
    background: #fff0;
    color: var(--ink);
    border: 1.5px solid var(--g20);
    transition: background 200ms, border-color 200ms, transform 200ms
}

.btn-o:hover {
    background: var(--g05);
    border-color: var(--g40);
    transform: translateY(-2px)
}

.btn-o-w {
    background: #fff0;
    color: rgb(255 255 255 / .7);
    border: 1.5px solid rgb(255 255 255 / .2);
    transition: background 200ms, border-color 200ms, color 200ms, transform 200ms
}

.btn-o-w:hover {
    background: rgb(255 255 255 / .07);
    border-color: rgb(255 255 255 / .4);
    color: #fff;
    transform: translateY(-2px)
}

[data-r] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease)
}

[data-r].in {
    opacity: 1;
    transform: none
}

[data-r-d="1"] {
    transition-delay: 0.08s
}

[data-r-d="2"] {
    transition-delay: 0.16s
}

[data-r-d="3"] {
    transition-delay: 0.24s
}

[data-r-d="4"] {
    transition-delay: 0.32s
}

[data-r-d="5"] {
    transition-delay: 0.4s
}

.scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--red);
    z-index: 400;
    width: 0;
    pointer-events: none;
    transition: width 0.06s linear;
    box-shadow: 0 0 6px rgb(222 37 58 / .5)
}

.wf-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: #08080a;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px
}

.wf-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.wf-hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 35%, rgb(0 0 0 / .25) 0%, rgb(0 0 0 / .55) 60%, rgb(0 0 0 / .88) 100%), linear-gradient(180deg, rgb(0 0 0 / .4) 0%, rgb(0 0 0 / .15) 35%, rgb(0 0 0 / .6) 100%)
}

.wf-hero-bg-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(255 255 255 / .022) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, #000 30%, transparent 85%)
}

.wf-hero .wrap {
    position: relative;
    z-index: 2;
    width: 100%
}

.wf-hero-center {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.wf-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px;
    background: rgb(255 255 255 / .05);
    border: 1px solid rgb(255 255 255 / .12);
    border-radius: 999px;
    font-family: var(--fm);
    font-size: 11px;
    color: rgb(255 255 255 / .78);
    letter-spacing: .04em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 28px;
    text-transform: uppercase;
    font-weight: 500
}

.wf-hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 10px rgb(222 37 58 / .7);
    animation: wfHeroDot 2.4s ease-in-out infinite
}

@keyframes wfHeroDot {

    0%,
    100% {
        opacity: .7;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.25)
    }
}

.wf-hero h1 {
    font-family: var(--fd);
    font-size: clamp(38px, 4.8vw, 68px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.038em;
    line-height: 1.02;
    margin: 0 0 22px;
    text-wrap: balance
}

.wf-hero h1 em {
    font-style: normal;
    color: var(--red)
}

.wf-hero-lead {
    font-family: var(--fb);
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgb(255 255 255 / .7);
    line-height: 1.65;
    margin: 0 auto 36px;
    max-width: 680px;
    text-wrap: balance
}

.wf-hero-lead strong {
    color: rgb(255 255 255 / .95);
    font-weight: 500
}

.wf-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 54px
}

.wf-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 0 0;
    flex-wrap: wrap;
    border-top: 1px solid rgb(255 255 255 / .1);
    width: 100%;
    max-width: 780px;
    margin: 0 auto
}

.wf-trust-strip-item {
    font-family: var(--fm);
    font-size: 10.5px;
    color: rgb(255 255 255 / .55);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 22px
}

.wf-trust-strip-item strong {
    color: #fff;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -.01em
}

.wf-trust-strip-item:not(:last-child) {
    border-right: 1px solid rgb(255 255 255 / .1)
}

.wf-pipeline {
    position: relative;
    padding: 30px 0;
    width: 100%;
    max-width: 920px;
    margin: 48px auto 0
}

.wf-pipeline-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgb(222 37 58 / .18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.wf-pipe-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgb(20 20 22 / .85) 0%, rgb(14 14 15 / .95) 100%);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 16px;
    padding: 24px 26px;
    backdrop-filter: blur(18px);
    box-shadow: 0 32px 80px rgb(0 0 0 / .5)
}

.wf-pipe-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px
}

.wf-pipe-hd-l {
    display: flex;
    align-items: center;
    gap: 10px
}

.wf-pipe-hd-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 12px rgb(40 200 64 / .6);
    animation: wfHbeat 2s ease-in-out infinite
}

@keyframes wfHbeat {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.wf-pipe-hd-t {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .65)
}

.wf-pipe-hd-r {
    font-family: var(--fm);
    font-size: 9.5px;
    color: rgb(255 255 255 / .32);
    letter-spacing: .06em
}

.wf-pipe-stages {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    position: relative
}

.wf-stage {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 16px 6px 14px;
    border-radius: 8px;
    transition: background 0.4s, border 0.4s;
    border: 1px solid #fff0
}

.wf-stage.active {
    background: rgb(222 37 58 / .12);
    border-color: rgb(222 37 58 / .3)
}

.wf-stage-num {
    font-family: var(--fm);
    font-size: 9px;
    color: rgb(255 255 255 / .32);
    letter-spacing: .14em;
    margin-bottom: 6px
}

.wf-stage.active .wf-stage-num {
    color: var(--red)
}

.wf-stage-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: rgb(255 255 255 / .55);
    transition: all 0.4s
}

.wf-stage.active .wf-stage-ico {
    background: rgb(222 37 58 / .18);
    border-color: rgb(222 37 58 / .5);
    color: #fff;
    box-shadow: 0 0 18px rgb(222 37 58 / .4)
}

.wf-stage-ico svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.wf-stage-l {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .48);
    transition: color 0.4s;
    line-height: 1.3
}

.wf-stage.active .wf-stage-l {
    color: #fff;
    font-weight: 500
}

.wf-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgb(255 255 255 / .25);
    width: 18px;
    position: relative;
    height: 34px;
    align-self: center;
    margin-top: 7px
}

.wf-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgb(255 255 255 / .12);
    transform: translateY(-50%)
}

.wf-arrow svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
    background: rgb(20 20 22 / .85);
    padding: 0
}

.wf-pulse {
    position: absolute;
    top: 38px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 18px rgb(222 37 58 / .7);
    z-index: 5;
    pointer-events: none;
    animation: wfPulseRun 8s linear infinite
}

@keyframes wfPulseRun {
    0% {
        left: 6%;
        opacity: 0;
        transform: scale(.6)
    }

    6% {
        opacity: 1;
        transform: scale(1)
    }

    18% {
        left: 22%
    }

    22% {
        transform: scale(.8)
    }

    30% {
        left: 38%;
        transform: scale(1)
    }

    46% {
        left: 54%
    }

    62% {
        left: 70%
    }

    78% {
        left: 86%;
        transform: scale(1)
    }

    94% {
        left: 96%;
        opacity: 1;
        transform: scale(.6)
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

.wf-pipe-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: rgb(255 255 255 / .06);
    border: 1px solid rgb(255 255 255 / .06);
    border-radius: 8px;
    overflow: hidden
}

.wf-pipe-meta-cell {
    background: rgb(20 20 22 / .6);
    padding: 14px 16px
}

.wf-pipe-meta-l {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .42);
    margin-bottom: 4px
}

.wf-pipe-meta-v {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1
}

.wf-pipe-meta-v.red {
    color: var(--red)
}

.wf-pipe-log {
    margin-top: 14px;
    background: rgb(0 0 0 / .32);
    border: 1px solid rgb(255 255 255 / .05);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--fm);
    font-size: 10.5px;
    color: rgb(255 255 255 / .52);
    height: 62px;
    overflow: hidden;
    position: relative
}

.wf-pipe-log::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 24px;
    background: linear-gradient(to top, rgb(0 0 0 / .5), transparent);
    pointer-events: none
}

.wf-log-track {
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: wfLogScroll 16s linear infinite
}

@keyframes wfLogScroll {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-50%)
    }
}

.wf-log-line {
    white-space: nowrap;
    display: flex;
    gap: 8px
}

.wf-log-time {
    color: rgb(255 255 255 / .28)
}

.wf-log-tag {
    color: var(--red);
    font-weight: 500
}

.wf-log-ok {
    color: #28c840
}

.wf-stakes {
    background: var(--white);
    padding: var(--py) 0
}

.wf-stakes-hd {
    max-width: 760px;
    margin-bottom: 54px
}

.wf-stakes-hd h2 {
    font-family: var(--fd);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-top: 18px
}

.wf-stakes-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-stakes-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.72;
    margin-top: 18px;
    max-width: 600px
}

.wf-stakes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--g10);
    border-bottom: 1px solid var(--g10)
}

.wf-stake {
    padding: 38px 36px 38px 0;
    border-right: 1px solid var(--g10);
    position: relative
}

.wf-stake:last-child {
    border-right: none;
    padding-right: 0
}

.wf-stake:not(:first-child) {
    padding-left: 36px
}

.wf-stake-n {
    font-family: var(--fd);
    font-size: 64px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 14px
}

.wf-stake-h {
    font-family: var(--fd);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.015em;
    margin-bottom: 8px
}

.wf-stake-p {
    font-size: 13.5px;
    color: var(--g60);
    line-height: 1.7
}

.wf-stake-src {
    margin-top: 14px;
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .06em;
    color: var(--g40);
    text-transform: uppercase
}

.wf-def {
    background: var(--g05);
    padding: var(--py) 0
}

.wf-def-card {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 14px;
    padding: 48px 52px;
    position: relative;
    box-shadow: 0 8px 28px rgb(0 0 0 / .04);
    border-left: 4px solid var(--red)
}

.wf-def-q {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.wf-def-q::before {
    content: "?";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red-tint);
    color: var(--red);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 12px
}

.wf-def-card h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.4
}

.wf-def-card h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-def-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--g10)
}

.wf-def-trait {
    padding: 6px 13px;
    border-radius: 5px;
    background: var(--red-tint);
    border: 1px solid rgb(222 37 58 / .18);
    font-family: var(--fm);
    font-size: 11px;
    color: var(--red);
    letter-spacing: .04em;
    font-weight: 500
}

.wf-svc {
    background: #fff;
    padding: var(--py) 0
}

.wf-svc-hd {
    max-width: 780px;
    margin-bottom: 56px
}

.wf-svc-hd h2 {
    font-family: var(--fd);
    font-size: clamp(32px, 3.6vw, 46px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-svc-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-svc-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.72;
    margin-top: 18px;
    max-width: 640px
}

.wf-svc-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    position: relative;
    border: 1px solid var(--g10);
    border-radius: 14px;
    overflow: hidden
}

.wf-pillar {
    padding: 42px 36px;
    background: #fff;
    border-right: 1px solid var(--g10);
    transition: background 0.3s;
    display: flex;
    flex-direction: column
}

.wf-pillar:last-child {
    border-right: none
}

.wf-pillar:hover {
    background: var(--g02)
}

.wf-pillar-num {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--red);
    letter-spacing: .16em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px
}

.wf-pillar-num::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 12px rgb(222 37 58 / .4)
}

.wf-pillar h3 {
    font-family: var(--fd);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 10px;
    line-height: 1.15
}

.wf-pillar-tag {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--g40);
    text-transform: uppercase;
    margin-bottom: 20px
}

.wf-pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0;
    margin: 0
}

.wf-pillar-list li {
    font-size: 13.5px;
    color: var(--g60);
    line-height: 1.55;
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.wf-pillar-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--red)
}

.wf-est {
    background: var(--ink);
    color: #fff;
    padding: var(--py) 0;
    position: relative;
    overflow: hidden
}

.wf-est::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(222 37 58 / .12) 0%, transparent 70%);
    pointer-events: none
}

.wf-est-hd {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px
}

.wf-est-hd .eyebrow {
    justify-content: center
}

.wf-est-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin: 18px 0 16px
}

.wf-est-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-est-hd p {
    font-size: 15.5px;
    color: rgb(255 255 255 / .62);
    line-height: 1.7
}

.wf-est-tool {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 18px;
    overflow: hidden
}

.wf-est-progress {
    display: flex;
    background: rgb(255 255 255 / .03);
    padding: 14px 24px;
    gap: 8px;
    border-bottom: 1px solid rgb(255 255 255 / .06);
    align-items: center;
    justify-content: space-between
}

.wf-est-steps {
    display: flex;
    gap: 8px;
    flex: 1
}

.wf-est-step {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgb(255 255 255 / .08);
    transition: background 0.35s
}

.wf-est-step.done {
    background: rgb(222 37 58 / .5)
}

.wf-est-step.active {
    background: var(--red)
}

.wf-est-counter {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .42);
    flex-shrink: 0;
    padding-left: 18px
}

.wf-est-body {
    padding: 42px 48px
}

.wf-est-screen {
    display: none;
    animation: wfFadeIn 0.4s var(--ease)
}

.wf-est-screen.active {
    display: block
}

@keyframes wfFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.wf-est-q-num {
    font-family: var(--fm);
    font-size: 10.5px;
    color: var(--red);
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.wf-est-q {
    font-family: var(--fd);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 8px
}

.wf-est-sub {
    font-size: 14px;
    color: rgb(255 255 255 / .55);
    line-height: 1.6;
    margin-bottom: 28px
}

.wf-est-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.wf-est-opt {
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 10px;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s;
    color: #fff;
    font-family: var(--fd)
}

.wf-est-opt:hover {
    background: rgb(255 255 255 / .07);
    border-color: rgb(222 37 58 / .4)
}

.wf-est-opt.sel {
    background: rgb(222 37 58 / .15);
    border-color: var(--red)
}

.wf-est-opt-t {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #fff
}

.wf-est-opt-d {
    font-family: var(--fb);
    font-size: 12.5px;
    color: rgb(255 255 255 / .55);
    margin-top: 5px;
    font-weight: 400;
    line-height: 1.5
}

.wf-est-opt.sel .wf-est-opt-d {
    color: rgb(255 255 255 / .75)
}

.wf-est-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgb(255 255 255 / .08)
}

.wf-est-back {
    background: #fff0;
    border: 1px solid rgb(255 255 255 / .18);
    color: rgb(255 255 255 / .7);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s
}

.wf-est-back:hover {
    background: rgb(255 255 255 / .06);
    color: #fff
}

.wf-est-back svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2
}

.wf-est-result {
    display: none
}

.wf-est-result.active {
    display: block;
    animation: wfFadeIn 0.5s var(--ease)
}

.wf-est-result-top {
    background: linear-gradient(135deg, rgb(222 37 58 / .16), rgb(222 37 58 / .06));
    border: 1px solid rgb(222 37 58 / .3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px
}

.wf-est-result-l {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px
}

.wf-est-result-amt {
    font-family: var(--fd);
    font-size: clamp(36px, 4.4vw, 52px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1
}

.wf-est-result-sub {
    margin-top: 12px;
    font-size: 13px;
    color: rgb(255 255 255 / .6)
}

.wf-est-recs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px
}

.wf-est-rec {
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 10px;
    padding: 18px 20px
}

.wf-est-rec-l {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .45);
    margin-bottom: 7px
}

.wf-est-rec-v {
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.3
}

.wf-est-gate {
    background: rgb(0 0 0 / .3);
    border: 1px solid rgb(255 255 255 / .06);
    border-radius: 12px;
    padding: 24px 28px
}

.wf-est-gate p {
    font-size: 13.5px;
    color: rgb(255 255 255 / .72);
    margin-bottom: 14px;
    line-height: 1.55
}

.wf-est-gate p strong {
    color: #fff
}

.wf-est-gate-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 8px
}

.wf-est-input {
    height: 44px;
    padding: 0 14px;
    background: rgb(255 255 255 / .06);
    border: 1.5px solid rgb(255 255 255 / .1);
    border-radius: 6px;
    font-family: var(--fb);
    font-size: 13.5px;
    color: #fff;
    outline: none;
    width: 100%
}

.wf-est-input:focus {
    border-color: var(--red)
}

.wf-est-input::placeholder {
    color: rgb(255 255 255 / .32)
}

.wf-est-submit {
    height: 44px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 22px;
    transition: background 0.15s
}

.wf-est-submit:hover {
    background: var(--red-h)
}

.wf-cmp {
    background: #fff;
    padding: var(--py) 0
}

.wf-cmp-hd {
    max-width: 780px;
    margin-bottom: 48px
}

.wf-cmp-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-cmp-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-cmp-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 620px
}

.wf-cmp-wrap {
    position: relative;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgb(0 0 0 / .04)
}

.wf-cmp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff0
}

.wf-cmp-table thead th {
    padding: 20px 22px;
    font-family: var(--fm);
    font-size: 10.5px;
    font-weight: 600;
    text-align: left;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--g40);
    background: var(--g05);
    border-bottom: 1px solid var(--g10);
    vertical-align: bottom
}

.wf-cmp-table thead th:first-child {
    border-top-left-radius: 16px
}

.wf-cmp-table thead th:last-child {
    border-top-right-radius: 16px
}

.wf-cmp-table thead th.wf-cmp-best {
    background: linear-gradient(180deg, rgb(222 37 58 / .06) 0%, rgb(222 37 58 / .02) 100%);
    color: var(--red);
    position: relative
}

.wf-cmp-table thead th.wf-cmp-best::after {
    content: "Recommended";
    position: absolute;
    top: -1px;
    right: 14px;
    font-family: var(--fm);
    font-size: 8.5px;
    letter-spacing: .16em;
    background: var(--red);
    color: #fff;
    padding: 3px 8px;
    border-radius: 0 0 4px 4px
}

.wf-cmp-table tbody td {
    padding: 18px 22px;
    font-size: 13.5px;
    color: var(--g60);
    border-bottom: 1px solid var(--g10);
    line-height: 1.55;
    vertical-align: top
}

.wf-cmp-table tbody tr:last-child td {
    border-bottom: none
}

.wf-cmp-table tbody tr:hover td:not(.wf-cmp-best-cell) {
    background: var(--g05)
}

.wf-cmp-table tbody td.wf-cmp-row-h {
    font-family: var(--fd);
    font-weight: 700;
    color: var(--ink);
    font-size: 13.5px;
    letter-spacing: -.005em;
    background: #fff
}

.wf-cmp-table tbody td.wf-cmp-best-cell {
    background: rgb(222 37 58 / .04);
    color: var(--ink);
    font-weight: 500;
    border-left: 1px solid rgb(222 37 58 / .1);
    border-right: 1px solid rgb(222 37 58 / .1)
}

.wf-cmp-table tbody td.wf-cmp-best-cell strong {
    color: var(--ink);
    font-weight: 600
}

.wf-cmp-mark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--fm);
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px
}

.wf-cmp-mark.bad {
    background: #fbe9eb;
    color: var(--red)
}

.wf-cmp-mark.warn {
    background: #fff4e5;
    color: #b86e00
}

.wf-cmp-mark.good {
    background: #e8f5ea;
    color: #1b7a2a
}

.wf-cmp-table tbody td:first-child {
    font-family: var(--fd);
    font-weight: 600;
    color: var(--ink)
}

.wf-cmp-table tbody td.hl {
    background: var(--red-tint);
    color: var(--ink);
    font-weight: 500
}

.wf-fail {
    background: var(--g05);
    padding: var(--py) 0
}

.wf-fail-hd {
    max-width: 780px;
    margin-bottom: 48px
}

.wf-fail-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-fail-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-fail-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.72;
    margin-top: 18px;
    max-width: 640px
}

.wf-fail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 14px;
    overflow: hidden
}

.wf-fail-row {
    display: grid;
    grid-template-columns: 88px 1fr 1.1fr;
    gap: 32px;
    padding: 32px 36px;
    border-bottom: 1px solid var(--g10);
    align-items: start;
    transition: background 0.25s
}

.wf-fail-row:last-child {
    border-bottom: none
}

.wf-fail-row:hover {
    background: var(--g02)
}

.wf-fail-num {
    font-family: var(--fd);
    font-size: 48px;
    font-weight: 700;
    color: var(--red-tint);
    line-height: 1;
    letter-spacing: -.04em
}

.wf-fail-l h3 {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 8px;
    line-height: 1.25
}

.wf-fail-l p {
    font-size: 13.5px;
    color: var(--g60);
    line-height: 1.7
}

.wf-fail-r {
    padding: 18px 22px;
    background: var(--red-tint);
    border-radius: 10px;
    border-left: 3px solid var(--red)
}

.wf-fail-r-l {
    font-family: var(--fm);
    font-size: 9.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 5px;
    font-weight: 500
}

.wf-fail-r-p {
    font-size: 13px;
    color: var(--ink);
    line-height: 1.65
}

.wf-proc {
    background: #fff;
    padding: var(--py) 0
}

.wf-proc-hd {
    max-width: 780px;
    margin-bottom: 64px
}

.wf-proc-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-proc-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-proc-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 640px
}

.wf-proc-rail {
    position: relative;
    max-width: 920px;
    margin: 0 auto
}

.wf-proc-rail::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--g10) 0%, var(--red) 12%, var(--red) 88%, var(--g10) 100%)
}

.wf-proc-step {
    position: relative;
    padding: 0 0 48px 78px
}

.wf-proc-step:last-child {
    padding-bottom: 0
}

.wf-proc-step-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px
}

.wf-proc-step-n {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500
}

.wf-proc-step-d {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--g40);
    padding: 2px 9px;
    border: 1px solid var(--g10);
    border-radius: 3px;
    background: var(--g05)
}

.wf-proc-step h3 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 10px
}

.wf-proc-step p {
    font-size: 14.5px;
    color: var(--g60);
    line-height: 1.7;
    max-width: 660px;
    margin-bottom: 14px
}

.wf-proc-deliv {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.wf-proc-deliv span {
    font-family: var(--fm);
    font-size: 10.5px;
    color: var(--g60);
    padding: 5px 10px;
    background: var(--g05);
    border: 1px solid var(--g10);
    border-radius: 4px;
    letter-spacing: .04em
}

.wf-ind {
    background: var(--ink);
    color: #fff;
    padding: var(--py) 0;
    position: relative;
    overflow: hidden
}

.wf-ind::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(222 37 58 / .1) 0%, transparent 70%);
    pointer-events: none
}

.wf-ind-hd {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-bottom: 48px
}

.wf-ind-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-ind-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-ind-hd p {
    font-size: 16px;
    color: rgb(255 255 255 / .65);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 640px
}

.wf-ind-shell {
    position: relative;
    z-index: 2;
    background: rgb(255 255 255 / .03);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 18px;
    overflow: hidden
}

.wf-ind-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid rgb(255 255 255 / .08);
    scrollbar-width: none;
    background: rgb(0 0 0 / .3)
}

.wf-ind-tabs::-webkit-scrollbar {
    display: none
}

.wf-ind-tab {
    flex-shrink: 0;
    padding: 18px 22px;
    font-family: var(--fd);
    font-size: 13.5px;
    font-weight: 600;
    color: rgb(255 255 255 / .55);
    background: #fff0;
    border: none;
    cursor: pointer;
    border-bottom: 2px solid #fff0;
    transition: all 0.25s;
    letter-spacing: -.005em;
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px
}

.wf-ind-tab svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.wf-ind-tab:hover {
    color: rgb(255 255 255 / .85);
    background: rgb(255 255 255 / .03)
}

.wf-ind-tab.active {
    color: #fff;
    border-bottom-color: var(--red);
    background: rgb(222 37 58 / .08)
}

.wf-ind-content {
    padding: 42px 48px
}

.wf-ind-panel {
    display: none;
    animation: wfFadeIn 0.35s var(--ease)
}

.wf-ind-panel.active {
    display: block
}

.wf-ind-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.wf-ind-flow {
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 170px
}

.wf-ind-flow:hover {
    background: rgb(255 255 255 / .06);
    border-color: rgb(222 37 58 / .3)
}

.wf-ind-flow-hd {
    display: flex;
    align-items: center;
    gap: 11px
}

.wf-ind-flow-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgb(222 37 58 / .14);
    border: 1px solid rgb(222 37 58 / .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0
}

.wf-ind-flow-ico svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6
}

.wf-ind-flow-h h4 {
    font-family: var(--fd);
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.25;
    margin-bottom: 3px
}

.wf-ind-flow-tag {
    font-family: var(--fm);
    font-size: 9.5px;
    color: rgb(255 255 255 / .42);
    letter-spacing: .08em;
    text-transform: uppercase
}

.wf-ind-flow-viz {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 4px
}

.wf-ind-flow-node {
    flex: 1;
    background: rgb(255 255 255 / .06);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 6px;
    padding: 7px 8px;
    font-family: var(--fm);
    font-size: 9px;
    color: rgb(255 255 255 / .7);
    text-align: center;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.3
}

.wf-ind-flow-node.red {
    background: rgb(222 37 58 / .18);
    border-color: rgb(222 37 58 / .4);
    color: #fff
}

.wf-ind-flow-link {
    color: rgb(255 255 255 / .32);
    font-size: 11px;
    flex-shrink: 0
}

.wf-ind-flow-out {
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid rgb(255 255 255 / .08);
    font-family: var(--fm);
    font-size: 11px;
    color: var(--red);
    letter-spacing: .04em
}

.wf-ind-flow-out strong {
    color: #fff;
    font-family: var(--fd);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -.01em;
    display: inline-block;
    margin-right: 6px
}

.wf-dept {
    background: #fff;
    padding: var(--py) 0
}

.wf-dept-hd {
    max-width: 780px;
    margin-bottom: 48px
}

.wf-dept-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-dept-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-dept-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 620px
}

.wf-dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.wf-dept-card {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 10px;
    padding: 24px 24px 22px;
    transition: all 0.25s
}

.wf-dept-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 28px rgb(222 37 58 / .06);
    transform: translateY(-2px)
}

.wf-dept-card-h {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--g10)
}

.wf-dept-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--red-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0
}

.wf-dept-ico svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6
}

.wf-dept-card h4 {
    font-family: var(--fd);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: 0
}

.wf-dept-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
    margin: 0
}

.wf-dept-list li {
    font-size: 12.8px;
    color: var(--g60);
    line-height: 1.55;
    display: flex;
    gap: 9px;
    align-items: flex-start
}

.wf-dept-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--red)
}

.wf-dept-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%
}

.wf-dept-img {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.wf-dept-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff0 40%, rgb(0 0 0 / .55) 100%)
}

.wf-dept-img-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    font-family: var(--fm);
    font-size: 9.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    background: rgb(0 0 0 / .45);
    backdrop-filter: blur(8px);
    padding: 4px 9px;
    border-radius: 3px
}

.wf-dept-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.wf-dept-card .wf-dept-card-h {
    padding: 0;
    border: none;
    margin: 0 0 14px
}

.wf-roi {
    background: var(--g05);
    padding: var(--py) 0
}

.wf-roi-hd {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px
}

.wf-roi-hd .eyebrow {
    justify-content: center
}

.wf-roi-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.06;
    margin: 18px 0 14px
}

.wf-roi-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-roi-hd p {
    font-size: 15.5px;
    color: var(--g60);
    line-height: 1.7
}

.wf-roi-tool {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgb(0 0 0 / .05)
}

.wf-roi-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0
}

.wf-roi-inputs {
    padding: 36px 40px;
    border-right: 1px solid var(--g10)
}

.wf-roi-input-group {
    margin-bottom: 22px
}

.wf-roi-input-group:last-child {
    margin-bottom: 0
}

.wf-roi-input-l {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px
}

.wf-roi-input-l-t {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--g40)
}

.wf-roi-input-l-v {
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.01em
}

.wf-roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: var(--g10);
    outline: none;
    margin: 6px 0
}

.wf-roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
    box-shadow: 0 0 0 3px rgb(222 37 58 / .18)
}

.wf-roi-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 3px rgb(222 37 58 / .18)
}

.wf-roi-output {
    padding: 36px 40px;
    background: linear-gradient(160deg, var(--red-tint) 0%, #fff5f7 80%);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.wf-roi-out-block {
    margin-bottom: 24px
}

.wf-roi-out-block:last-of-type {
    margin-bottom: 14px
}

.wf-roi-out-l {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px
}

.wf-roi-out-v {
    font-family: var(--fd);
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1
}

.wf-roi-out-d {
    font-size: 12px;
    color: var(--g60);
    margin-top: 5px
}

.wf-roi-gate {
    padding: 26px 40px 30px;
    background: var(--ink);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.wf-roi-gate p {
    font-size: 12.5px;
    color: rgb(255 255 255 / .7);
    line-height: 1.55
}

.wf-roi-gate p strong {
    color: #fff
}

.wf-roi-gate-form {
    display: flex;
    gap: 8px
}

.wf-roi-gate-input {
    height: 40px;
    padding: 0 13px;
    background: rgb(255 255 255 / .07);
    border: 1.5px solid rgb(255 255 255 / .1);
    border-radius: 5px;
    font-family: var(--fb);
    font-size: 13px;
    color: #fff;
    outline: none;
    width: 100%
}

.wf-roi-gate-input:focus {
    border-color: var(--red)
}

.wf-roi-gate-input::placeholder {
    color: rgb(255 255 255 / .3)
}

.wf-roi-gate-btn {
    height: 40px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: var(--fd);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 18px;
    white-space: nowrap;
    transition: background 0.15s
}

.wf-roi-gate-btn:hover {
    background: var(--red-h)
}

.wf-int {
    background: #fff;
    padding: var(--py) 0
}

.wf-int-hd {
    max-width: 780px;
    margin-bottom: 42px
}

.wf-int-hd h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-top: 16px
}

.wf-int-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-int-hd p {
    font-size: 15.5px;
    color: var(--g60);
    line-height: 1.68;
    margin-top: 16px;
    max-width: 620px
}

.wf-int-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
}

.wf-int-col {
    background: var(--g05);
    border: 1px solid var(--g10);
    border-radius: 10px;
    padding: 22px 20px
}

.wf-int-col-h {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--g10)
}

.wf-int-col-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--red-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0
}

.wf-int-col-ico svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6
}

.wf-int-col h5 {
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.005em;
    margin: 0
}

.wf-int-list {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.wf-int-list li {
    font-family: var(--fm);
    font-size: 11px;
    color: var(--g60);
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 4px;
    padding: 6px 10px;
    letter-spacing: .02em;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px
}

.wf-int-list li strong {
    color: var(--red);
    font-size: 8.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500
}

.wf-eval {
    background: var(--g05);
    padding: var(--py) 0
}

.wf-eval-hd {
    max-width: 780px;
    margin-bottom: 48px
}

.wf-eval-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-eval-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-eval-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 640px
}

.wf-eval-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.wf-eval-pillar {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column
}

.wf-eval-pillar:hover {
    border-color: var(--red);
    box-shadow: 0 14px 32px rgb(222 37 58 / .06)
}

.wf-eval-pillar-ico {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--red-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 18px
}

.wf-eval-pillar-ico svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.wf-eval-pillar h4 {
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin-bottom: 9px;
    line-height: 1.25
}

.wf-eval-pillar p {
    font-size: 13.5px;
    color: var(--g60);
    line-height: 1.65
}

.wf-cases {
    background: #fff;
    padding: var(--py) 0
}

.wf-cases-hd {
    max-width: 780px;
    margin-bottom: 48px
}

.wf-cases-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-cases-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-cases-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 620px
}

.wf-cases-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.wf-case {
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.wf-case-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 28px 36px;
    border-bottom: 1px solid rgb(255 255 255 / .08)
}

.wf-case-tag {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red)
}

.wf-case h3 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-top: 6px;
    line-height: 1.2
}

.wf-case-stat {
    text-align: center
}

.wf-case-stat-v {
    font-family: var(--fd);
    font-size: 30px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.03em;
    line-height: 1
}

.wf-case-stat-l {
    font-family: var(--fm);
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .5);
    margin-top: 5px
}

.wf-case-flows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
}

.wf-case-flow {
    padding: 32px 36px;
    border-right: 1px solid rgb(255 255 255 / .08)
}

.wf-case-flow:last-child {
    border-right: none;
    background: rgb(222 37 58 / .04)
}

.wf-case-flow-l {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .5);
    margin-bottom: 18px
}

.wf-case-flow:last-child .wf-case-flow-l {
    color: var(--red)
}

.wf-case-flow-l::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(255 255 255 / .3)
}

.wf-case-flow:last-child .wf-case-flow-l::before {
    background: var(--red);
    box-shadow: 0 0 10px rgb(222 37 58 / .5)
}

.wf-case-pipe {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.wf-case-pipe-step {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 8px
}

.wf-case-flow:last-child .wf-case-pipe-step {
    background: rgb(222 37 58 / .08);
    border-color: rgb(222 37 58 / .18)
}

.wf-case-pipe-n {
    font-family: var(--fm);
    font-size: 10px;
    color: rgb(255 255 255 / .4);
    letter-spacing: .06em;
    flex-shrink: 0;
    width: 18px
}

.wf-case-flow:last-child .wf-case-pipe-n {
    color: var(--red)
}

.wf-case-pipe-t {
    font-size: 13px;
    color: rgb(255 255 255 / .78);
    flex: 1;
    line-height: 1.3
}

.wf-case-pipe-time {
    font-family: var(--fm);
    font-size: 10px;
    color: rgb(255 255 255 / .45);
    flex-shrink: 0;
    letter-spacing: .04em
}

.wf-case-flow:last-child .wf-case-pipe-time {
    color: var(--red);
    font-weight: 500
}

.wf-prin {
    background: var(--g05);
    padding: var(--py) 0
}

.wf-prin-hd {
    max-width: 780px;
    margin-bottom: 48px
}

.wf-prin-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-prin-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-prin-hd p {
    font-size: 16px;
    color: var(--g60);
    line-height: 1.7;
    margin-top: 18px;
    max-width: 620px
}

.wf-prin-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.wf-prin-block {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 36px;
    padding: 42px 0;
    border-bottom: 1px solid var(--g10);
    align-items: start
}

.wf-prin-block:last-child {
    border-bottom: none
}

.wf-prin-num {
    font-family: var(--fd);
    font-size: 64px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.04em;
    line-height: 1;
    font-feature-settings: "tnum"
}

.wf-prin-body h3 {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.025em;
    line-height: 1.15;
    margin-bottom: 14px
}

.wf-prin-body p {
    font-size: 15px;
    color: var(--g60);
    line-height: 1.72;
    max-width: 600px
}

.wf-prin-stat {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 10px;
    text-align: center
}

.wf-prin-stat-v {
    font-family: var(--fd);
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.025em;
    line-height: 1
}

.wf-prin-stat-l {
    font-family: var(--fm);
    font-size: 9.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--g40);
    margin-top: 6px;
    line-height: 1.5
}

.wf-meth {
    background: #fff;
    padding: var(--py) 0
}

.wf-meth-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center
}

.wf-meth-l h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px;
    margin-bottom: 18px
}

.wf-meth-l h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-meth-l p {
    font-size: 15.5px;
    color: var(--g60);
    line-height: 1.72;
    margin-bottom: 14px
}

.wf-meth-r {
    background: var(--ink);
    border-radius: 16px;
    padding: 32px 36px;
    color: #fff
}

.wf-meth-r-h {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .45);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.wf-meth-r-h::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--red)
}

.wf-meth-items {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.wf-meth-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgb(255 255 255 / .03);
    border: 1px solid rgb(255 255 255 / .06);
    border-radius: 8px
}

.wf-meth-item-ico {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgb(222 37 58 / .16);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.wf-meth-item-ico svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6
}

.wf-meth-item-t {
    font-family: var(--fd);
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.005em
}

.wf-meth-item-s {
    font-family: var(--fm);
    font-size: 10.5px;
    color: rgb(255 255 255 / .42);
    letter-spacing: .04em;
    margin-top: 3px
}

.wf-cost {
    padding: var(--py) 0;
    background: #fff
}

.wf-cost-card {
    background: var(--ink);
    border-radius: 18px;
    padding: 54px 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgb(0 0 0 / .16)
}

.wf-cost-card::before {
    content: "";
    position: absolute;
    top: -160px;
    left: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgb(222 37 58 / .18) 0%, transparent 70%);
    pointer-events: none
}

.wf-cost-hd {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin-bottom: 36px
}

.wf-cost-hd h2 {
    font-family: var(--fd);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-top: 14px
}

.wf-cost-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-cost-hd p {
    font-size: 14.5px;
    color: rgb(255 255 255 / .62);
    line-height: 1.7;
    margin-top: 14px
}

.wf-cost-rows {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 34px
}

.wf-cost-row {
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 10px;
    padding: 24px 22px
}

.wf-cost-amt {
    font-family: var(--fd);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 10px
}

.wf-cost-h {
    font-family: var(--fd);
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -.005em
}

.wf-cost-d {
    font-size: 12.5px;
    color: rgb(255 255 255 / .5);
    line-height: 1.55
}

.wf-cost-cta {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center
}

.wf-sc {
    background: var(--g05);
    padding: var(--py) 0
}

.wf-sc-hd {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px
}

.wf-sc-hd .eyebrow {
    justify-content: center
}

.wf-sc-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.06;
    margin: 18px 0 14px
}

.wf-sc-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-sc-hd p {
    font-size: 15.5px;
    color: var(--g60);
    line-height: 1.7
}

.wf-sc-tool {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgb(0 0 0 / .05)
}

.wf-sc-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 28px;
    background: var(--g02);
    border-bottom: 1px solid var(--g10)
}

.wf-sc-dot {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--g10);
    transition: all 0.3s
}

.wf-sc-dot.done {
    background: rgb(222 37 58 / .4)
}

.wf-sc-dot.active {
    background: var(--red)
}

.wf-sc-counter {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--g40);
    padding-left: 14px
}

.wf-sc-body {
    padding: 42px 48px
}

.wf-sc-screen {
    display: none;
    animation: wfFadeIn 0.35s var(--ease)
}

.wf-sc-screen.active {
    display: block
}

.wf-sc-q-num {
    font-family: var(--fm);
    font-size: 10.5px;
    color: var(--red);
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.wf-sc-q {
    font-family: var(--fd);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.25;
    margin-bottom: 24px
}

.wf-sc-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.wf-sc-opt {
    background: #fff;
    border: 1.5px solid var(--g10);
    border-radius: 10px;
    padding: 16px 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s;
    color: var(--g60);
    font-family: var(--fd);
    font-size: 13.5px;
    font-weight: 600
}

.wf-sc-opt:hover {
    border-color: rgb(222 37 58 / .4);
    background: var(--g02);
    color: var(--ink)
}

.wf-sc-opt.sel {
    border-color: var(--red);
    background: var(--red-tint);
    color: var(--red)
}

.wf-sc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--g10)
}

.wf-sc-back {
    background: #fff0;
    border: 1px solid var(--g10);
    color: var(--g60);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s
}

.wf-sc-back:hover {
    border-color: var(--g40);
    color: var(--ink)
}

.wf-sc-back svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2
}

.wf-sc-result-top {
    background: linear-gradient(135deg, var(--red-tint) 0%, #fff5f7 100%);
    border: 1px solid rgb(222 37 58 / .22);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    text-align: center
}

.wf-sc-verdict {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px
}

.wf-sc-lvl {
    font-family: var(--fd);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.025em;
    line-height: 1.15
}

.wf-sc-lvl em {
    font-style: normal;
    color: var(--red)
}

.wf-sc-score {
    display: inline-block;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 18px;
    font-family: var(--fm);
    font-size: 11px;
    color: var(--g60);
    margin-top: 8px;
    letter-spacing: .04em
}

.wf-sc-gate {
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
    padding: 24px 28px
}

.wf-sc-gate h4 {
    font-family: var(--fd);
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.wf-sc-gate p {
    font-size: 12.5px;
    color: rgb(255 255 255 / .6);
    line-height: 1.6;
    margin-bottom: 14px
}

.wf-sc-gate-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 8px
}

.wf-sc-gate-input {
    height: 42px;
    padding: 0 13px;
    background: rgb(255 255 255 / .07);
    border: 1.5px solid rgb(255 255 255 / .1);
    border-radius: 6px;
    font-family: var(--fb);
    font-size: 13px;
    color: #fff;
    outline: none;
    width: 100%
}

.wf-sc-gate-input:focus {
    border-color: var(--red)
}

.wf-sc-gate-input::placeholder {
    color: rgb(255 255 255 / .3)
}

.wf-sc-gate-btn {
    height: 42px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 22px;
    white-space: nowrap
}

.wf-sc-gate-btn:hover {
    background: var(--red-h)
}

.wf-stats-sec {
    background: #fff;
    padding: var(--py) 0
}

.wf-stats-band {
    background: var(--ink);
    color: #fff;
    border-radius: 18px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.wf-stats-band::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgb(222 37 58 / .12) 0%, transparent 70%);
    pointer-events: none
}

.wf-stats-band-l {
    position: relative;
    z-index: 1
}

.wf-stats-band-l h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.025em;
    line-height: 1.1;
    margin-top: 14px
}

.wf-stats-band-l h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-stats-band-l p {
    font-size: 14px;
    color: rgb(255 255 255 / .6);
    line-height: 1.7;
    margin-top: 14px
}

.wf-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgb(255 255 255 / .08);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 10px;
    overflow: hidden
}

.wf-stats-c {
    background: rgb(0 0 0 / .2);
    padding: 24px
}

.wf-stats-v {
    font-family: var(--fd);
    font-size: 32px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 6px
}

.wf-stats-l {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .48);
    line-height: 1.5
}

.wf-eng {
    background: var(--g05);
    padding: var(--py) 0
}

.wf-eng-hd {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px
}

.wf-eng-hd .eyebrow {
    justify-content: center
}

.wf-eng-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.06;
    margin: 18px 0 14px
}

.wf-eng-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-eng-hd p {
    font-size: 15px;
    color: var(--g60);
    line-height: 1.7
}

.wf-eng-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.wf-eng-card {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 12px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s
}

.wf-eng-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 32px rgb(222 37 58 / .06);
    transform: translateY(-3px)
}

.wf-eng-card.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--red)
}

.wf-eng-card.featured h4 {
    color: #fff
}

.wf-eng-card.featured p {
    color: rgb(255 255 255 / .7)
}

.wf-eng-tag {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    font-weight: 500
}

.wf-eng-card h4 {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.015em;
    margin-bottom: 10px;
    line-height: 1.2
}

.wf-eng-card p {
    font-size: 13px;
    color: var(--g60);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1
}

.wf-eng-meta {
    padding-top: 14px;
    border-top: 1px solid var(--g10);
    font-family: var(--fm);
    font-size: 10.5px;
    color: var(--g40);
    letter-spacing: .04em;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.wf-eng-card.featured .wf-eng-meta {
    border-color: rgb(255 255 255 / .1);
    color: rgb(255 255 255 / .42)
}

.wf-eng-meta-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: start;
    line-height: 1.4
}

.wf-eng-meta-row>span:first-child {
    white-space: nowrap;
    color: var(--g40);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding-top: 1px
}

.wf-eng-meta-row>span:last-child {
    color: var(--ink);
    font-family: var(--fd);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: -.005em
}

.wf-eng-card.featured .wf-eng-meta-row>span:first-child {
    color: rgb(255 255 255 / .5)
}

.wf-eng-card.featured .wf-eng-meta-row>span:last-child {
    color: #fff
}

.wf-eng-meta-row strong {
    color: var(--ink);
    font-family: var(--fd);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: -.005em
}

.wf-eng-card.featured .wf-eng-meta-row strong {
    color: #fff
}

.wf-faq {
    background: #fff;
    padding: var(--py) 0
}

.wf-faq-hd {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px
}

.wf-faq-hd .eyebrow {
    justify-content: center
}

.wf-faq-hd h2 {
    font-family: var(--fd);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.06;
    margin-top: 18px
}

.wf-faq-hd h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--g10);
    border-radius: 12px;
    overflow: hidden
}

.wf-faq-item {
    background: #fff
}

.wf-faq-q {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.005em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    transition: background 0.2s
}

.wf-faq-q:hover {
    background: var(--g02)
}

.wf-faq-q svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform 0.3s, stroke 0.25s;
    color: var(--g40)
}

.wf-faq-item.open .wf-faq-q svg {
    transform: rotate(45deg);
    color: var(--red)
}

.wf-faq-item.open .wf-faq-q {
    color: var(--red)
}

.wf-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease)
}

.wf-faq-item.open .wf-faq-a {
    max-height: 600px
}

.wf-faq-a-inner {
    padding: 0 28px 26px;
    font-size: 14.5px;
    color: var(--g60);
    line-height: 1.78
}

.wf-faq-a-inner p {
    margin-bottom: 10px
}

.wf-faq-a-inner p:last-child {
    margin-bottom: 0
}

.wf-faq-a-inner strong {
    color: var(--ink);
    font-weight: 600
}

.wf-cta {
    background: var(--ink);
    color: #fff;
    padding: var(--py) 0;
    position: relative;
    overflow: hidden
}

.wf-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgb(222 37 58 / .18) 0%, transparent 45%), radial-gradient(circle at 80% 80%, rgb(222 37 58 / .12) 0%, transparent 50%);
    pointer-events: none
}

.wf-cta .wrap {
    position: relative;
    z-index: 1
}

.wf-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.wf-cta-l h2 {
    font-family: var(--fd);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.04;
    margin-top: 18px
}

.wf-cta-l h2 em {
    font-style: normal;
    color: var(--red)
}

.wf-cta-l>p {
    font-size: 15px;
    color: rgb(255 255 255 / .62);
    line-height: 1.7;
    margin: 18px 0 28px
}

.wf-cta-pts {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.wf-cta-pt {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13.5px;
    color: rgb(255 255 255 / .7)
}

.wf-cta-pt svg {
    flex-shrink: 0;
    color: var(--red)
}

.wf-form-box {
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 14px;
    padding: 32px
}

.wf-f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.wf-f-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px
}

.wf-f-label {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .4)
}

.wf-f-input,
.wf-f-input:not(:placeholder-shown) {
    height: 46px;
    padding: 0 14px;
    background: rgb(255 255 255 / .05);
    border: 1.5px solid rgb(255 255 255 / .1);
    border-radius: 5px;
    font-family: var(--fb);
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s
}

.wf-f-input:focus {
    border-color: var(--red)
}

.wf-f-input::placeholder {
    color: rgb(255 255 255 / .18)
}

.wf-f-input:not(:placeholder-shown) {
    background: rgb(255 255 255 / .08);
    border-color: rgb(255 255 255 / .18)
}

select.wf-f-input option {
    background: var(--ink);
    color: #fff
}

textarea.wf-f-input {
    height: 90px;
    padding: 12px 14px;
    resize: vertical
}

.wf-f-btn {
    width: 100%;
    height: 50px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: var(--fd);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    letter-spacing: .01em
}

.wf-f-btn:hover {
    background: var(--red-h);
    transform: translateY(-1px)
}

.wf-f-note {
    font-family: var(--fm);
    font-size: 10px;
    color: rgb(255 255 255 / .32);
    text-align: center;
    margin-top: 10px;
    letter-spacing: .06em
}

.wf-form-box,
.wf-form-box form,
.wf-form-box .wf-f-field,
.wf-form-box .wf-f-row {
    min-width: 0
}

.wf-form-box input,
.wf-form-box textarea {
    width: 100%;
    max-width: 100%
}

.wf-def-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto
}

.wf-def-card {
    margin: 0;
    max-width: none
}

.wf-def-viz {
    position: relative;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 12px 36px rgb(0 0 0 / .04);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.wf-def-viz-h {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--g40);
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--g10)
}

.wf-def-viz-h::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px rgb(222 37 58 / .5);
    animation: wfHbeat 2s ease-in-out infinite
}

.wf-def-flow {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.wf-def-row {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: center;
    padding: 11px 14px;
    background: var(--g05);
    border: 1px solid var(--g10);
    border-radius: 8px;
    position: relative;
    transition: transform 0.35s var(--ease), background 0.25s
}

.wf-def-row:hover {
    background: #fff;
    transform: translateX(3px)
}

.wf-def-row-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--red-tint);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.wf-def-row-l {
    font-family: var(--fm);
    font-size: 9.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--g40);
    margin-bottom: 2px
}

.wf-def-row-t {
    font-family: var(--fd);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.005em
}

.wf-def-row-tag {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--fm);
    font-size: 9.5px;
    letter-spacing: .06em;
    color: var(--g40)
}

.wf-def-arrow {
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g20)
}

.wf-pillar-anim {
    height: 120px;
    background: linear-gradient(180deg, var(--g05) 0%, #fff 100%);
    border: 1px solid var(--g10);
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.wf-pillar-anim::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(0 0 0 / .025) 1px, transparent 1px), linear-gradient(90deg, rgb(0 0 0 / .025) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 90%);
    pointer-events: none
}

.wf-anim-intake {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 84%;
    justify-content: space-between;
    position: relative;
    z-index: 1
}

.wf-anim-doc {
    width: 30px;
    height: 38px;
    background: #fff;
    border: 1.5px solid var(--g20);
    border-radius: 3px;
    position: relative;
    animation: wfDocFlow 2.4s ease-in-out infinite;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgb(0 0 0 / .06)
}

.wf-anim-doc::before,
.wf-anim-doc::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    height: 1.5px;
    background: var(--g20);
    border-radius: 1px
}

.wf-anim-doc::before {
    top: 9px
}

.wf-anim-doc::after {
    top: 14px;
    width: 14px
}

.wf-anim-doc:nth-child(1) {
    animation-delay: 0s
}

.wf-anim-doc:nth-child(2) {
    animation-delay: 0.4s;
    opacity: .7
}

.wf-anim-doc:nth-child(3) {
    animation-delay: 0.8s;
    opacity: .4
}

.wf-anim-funnel {
    flex-shrink: 0;
    width: 40px;
    height: 42px;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 72% 50%, 72% 100%, 28% 100%, 28% 50%);
    box-shadow: 0 4px 12px rgb(222 37 58 / .3)
}

.wf-anim-out {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.wf-anim-out-row {
    height: 5px;
    background: var(--ink);
    border-radius: 1.5px;
    animation: wfRowFill 2.4s ease-in-out infinite
}

.wf-anim-out-row:nth-child(1) {
    width: 46px;
    animation-delay: 0.5s
}

.wf-anim-out-row:nth-child(2) {
    width: 38px;
    animation-delay: 0.7s
}

.wf-anim-out-row:nth-child(3) {
    width: 50px;
    animation-delay: 0.9s
}

@keyframes wfDocFlow {

    0%,
    100% {
        transform: translateX(0) scale(1)
    }

    50% {
        transform: translateX(-3px) scale(.96)
    }
}

@keyframes wfRowFill {

    0%,
    100% {
        opacity: .25
    }

    50% {
        opacity: 1
    }
}

.wf-anim-decide {
    position: relative;
    width: 120px;
    height: 90px;
    z-index: 1
}

.wf-anim-orbit {
    position: absolute;
    inset: 0;
    border: 1px dashed rgb(222 37 58 / .3);
    border-radius: 50%;
    animation: wfOrbitSpin 12s linear infinite
}

.wf-anim-orbit:nth-child(2) {
    inset: 14px;
    animation-duration: 8s;
    animation-direction: reverse
}

.wf-anim-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 18px rgb(222 37 58 / .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    animation: wfPulseCore 1.8s ease-in-out infinite
}

.wf-anim-node {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgb(0 0 0 / .15);
    z-index: 2
}

.wf-anim-node:nth-child(3) {
    top: 6%;
    left: 50%;
    transform: translateX(-50%)
}

.wf-anim-node:nth-child(4) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--red)
}

.wf-anim-node:nth-child(5) {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%)
}

.wf-anim-node:nth-child(6) {
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

@keyframes wfOrbitSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes wfPulseCore {

    0%,
    100% {
        box-shadow: 0 0 18px rgb(222 37 58 / .5)
    }

    50% {
        box-shadow: 0 0 28px rgb(222 37 58 / .8)
    }
}

.wf-anim-act {
    position: relative;
    width: 88%;
    height: 72px;
    z-index: 1
}

.wf-anim-svc {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid var(--g20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g60);
    font-family: var(--fd);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 2px 6px rgb(0 0 0 / .06)
}

.wf-anim-svc:nth-child(1) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--red);
    color: #fff;
    border-color: var(--red)
}

.wf-anim-svc:nth-child(2) {
    top: 0;
    left: 34%;
    transform: translateX(-50%)
}

.wf-anim-svc:nth-child(3) {
    bottom: 0;
    left: 34%;
    transform: translateX(-50%)
}

.wf-anim-svc:nth-child(4) {
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.wf-anim-line {
    position: absolute;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    background-size: 30% 100%;
    background-repeat: no-repeat;
    animation: wfLineMove 1.8s linear infinite;
    z-index: 0
}

.wf-anim-line:nth-child(5) {
    left: 36px;
    width: calc(34% - 36px);
    top: 14px;
    transform: rotate(34deg);
    transform-origin: left center
}

.wf-anim-line:nth-child(6) {
    left: 36px;
    width: calc(34% - 36px);
    bottom: 14px;
    transform: rotate(-34deg);
    transform-origin: left center
}

.wf-anim-line:nth-child(7) {
    left: 34%;
    right: 36px;
    top: 50%
}

@keyframes wfLineMove {
    0% {
        background-position: -30% 0
    }

    100% {
        background-position: 130% 0
    }
}

.wf-pillar-metric {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed var(--g10);
    display: flex;
    align-items: center;
    gap: 14px
}

.wf-pillar-list {
    margin-bottom: 24px
}

.wf-pillar-metric-v {
    font-family: var(--fd);
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.025em;
    line-height: 1;
    flex-shrink: 0
}

.wf-pillar-metric-l {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .06em;
    color: var(--g40);
    text-transform: uppercase;
    line-height: 1.45
}

.wf-fail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.wf-fail-card {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 12px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden
}

.wf-fail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--red);
    transition: height 0.35s var(--ease)
}

.wf-fail-card:hover {
    border-color: rgb(222 37 58 / .25);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgb(0 0 0 / .04)
}

.wf-fail-card:hover::before {
    height: 100%
}

.wf-fail-card-hd {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.wf-fail-card-n {
    font-family: var(--fd);
    font-size: 30px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.04em;
    flex-shrink: 0;
    font-feature-settings: "tnum"
}

.wf-fail-card-t {
    font-family: var(--fd);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.012em;
    line-height: 1.3;
    margin-top: 4px
}

.wf-fail-card-p {
    font-size: 13px;
    color: var(--g60);
    line-height: 1.6
}

.wf-fail-card-ans {
    margin-top: auto;
    padding: 13px 15px;
    background: var(--red-tint);
    border-radius: 8px;
    border-left: 3px solid var(--red);
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.wf-fail-card-ans-l {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    flex-shrink: 0;
    padding-top: 1px
}

.wf-fail-card-ans-p {
    font-size: 12.5px;
    color: var(--ink);
    line-height: 1.55
}

.wf-proc-band {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px
}

.wf-proc-band h2 {
    margin-bottom: 0;
    line-height: 100%
}

.wf-proc-band-r {
    font-size: 15px;
    color: var(--g60);
    line-height: 1.7;
    max-width: 380px;
    justify-self: end;
    text-align: right
}

.wf-proc-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--g10);
    padding-top: 48px;
    position: relative
}

.wf-proc-cell2 {
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.25s
}

.wf-proc-cell2-aster {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--red);
    margin-bottom: 16px;
    animation: wfAsterSpin 14s linear infinite;
    transform-origin: center
}

.wf-proc-cell2:hover .wf-proc-cell2-aster {
    animation-duration: 6s
}

@keyframes wfAsterSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.wf-proc-cell2-illus {
    height: 130px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--g05) 0%, #fff 100%);
    border: 1px solid var(--g10);
    border-radius: 10px;
    overflow: hidden
}

.wf-proc-cell2-meta {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--g40);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 9px
}

.wf-proc-cell2-meta-n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700
}

.wf-proc-cell2-t {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.014em;
    margin-bottom: 9px;
    line-height: 1.25
}

.wf-proc-cell2-p {
    font-size: 13.5px;
    color: var(--g60);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1
}

.wf-proc-cell2-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.005em;
    text-decoration: none;
    padding-top: 12px;
    border-top: 1px solid var(--g10);
    transition: color 0.2s
}

.wf-proc-cell2-cta:hover {
    color: var(--red)
}

.wf-proc-cell2-cta svg {
    transition: transform 0.25s
}

.wf-proc-cell2-cta:hover svg {
    transform: translateX(4px)
}

.wf-proc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px
}

.wf-proc-foot-l {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--g60)
}

.wf-proc-foot-l strong {
    color: var(--ink);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -.01em
}

.wf-prin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.wf-prin-tile {
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 12px;
    padding: 30px 30px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.25s
}

.wf-prin-tile:hover {
    border-color: rgb(222 37 58 / .3);
    box-shadow: 0 12px 28px rgb(0 0 0 / .04)
}

.wf-prin-tile-hd {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px
}

.wf-prin-tile-n {
    font-family: var(--fd);
    font-size: 34px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.04em;
    flex-shrink: 0;
    font-feature-settings: "tnum"
}

.wf-prin-tile-stat {
    margin-left: auto;
    text-align: right;
    padding-left: 12px;
    border-left: 1px solid var(--g10)
}

.wf-prin-tile-stat-v {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.02em;
    line-height: 1
}

.wf-prin-tile-stat-l {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .1em;
    color: var(--g40);
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.4
}

.wf-prin-tile h3 {
    font-family: var(--fd);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.012em;
    margin-bottom: 9px;
    line-height: 1.3
}

.wf-prin-tile p {
    font-size: 13.5px;
    color: var(--g60);
    line-height: 1.65
}

.wf-int-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px
}

.wf-int-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--g10);
    border-radius: 6px;
    padding: 8px 11px;
    font-family: var(--fd);
    font-size: 11.5px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -.005em;
    gap: 7px;
    transition: all 0.2s;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start
}

.wf-int-logo:hover {
    border-color: rgb(222 37 58 / .3);
    background: var(--g02)
}

.wf-int-logo-mark {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-tint);
    color: var(--red);
    border-radius: 4px;
    font-family: var(--fd);
    font-size: 10px;
    font-weight: 700
}

.wf-int-logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.wf-cases2 {
    position: relative;
    height: calc(100vh + 180vh)
}

.wf-cases2-stage {
    position: sticky;
    top: 90px;
    height: calc(100vh - 110px);
    max-height: 680px
}

.wf-cases2-inner {
    position: relative;
    height: 100%;
    width: 100%
}

.wf-case2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e0e0f;
    color: #fff;
    border: 1px solid rgb(255 255 255 / .06);
    border-radius: 20px;
    box-shadow: 0 30px 90px -20px rgb(0 0 0 / .55), 0 1px 0 rgb(255 255 255 / .04) inset;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    will-change: transform;
    transform: translateY(100%)
}

.wf-case2[data-pin="0"] {
    transform: translateY(0)
}

.wf-case2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgb(222 37 58 / .1) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0
}

.wf-case2>* {
    position: relative;
    z-index: 1
}

.wf-case2[data-pin="0"] {
    z-index: 1
}

.wf-case2[data-pin="1"] {
    z-index: 2
}

.wf-case2[data-pin="2"] {
    z-index: 3
}

.wf-case2[data-pin="1"] {
    grid-template-columns: 1.15fr 0.85fr
}

.wf-case2[data-pin="1"] .wf-case2-img {
    order: 2
}

.wf-case2[data-pin="1"] .wf-case2-body {
    order: 1
}

.wf-case2[data-pin="1"]::before {
    background: radial-gradient(ellipse at 20% 20%, rgb(222 37 58 / .1) 0%, transparent 55%)
}

.wf-case2-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0b;
    aspect-ratio: 1.5/1;
    background-size: cover;
    background-position: center
}

.wf-case2-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / .22) 0%, rgb(0 0 0 / .55) 55%, rgb(0 0 0 / .9) 100%);
    pointer-events: none
}

.wf-case2-img-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .18);
    border-radius: 999px;
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500
}

.wf-case2-img-tag::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px rgb(222 37 58 / .6)
}

.wf-case2-img-stats {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    color: #fff
}

.wf-case2-img-stat-v {
    font-family: var(--fd);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 700;
    color: var(--red);
    letter-spacing: -.03em;
    line-height: 1
}

.wf-case2-img-stat-l {
    font-family: var(--fm);
    font-size: 8.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .7);
    margin-top: 5px
}

.wf-case2-num {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 9px
}

.wf-case2-num::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--red)
}

.wf-case2-title {
    font-family: var(--fd);
    font-size: clamp(22px, 2.1vw, 28px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.022em;
    line-height: 1.2;
    margin: 0 0 12px
}

.wf-case2-desc {
    font-size: 14px;
    color: rgb(255 255 255 / .6);
    line-height: 1.65;
    margin: 0 0 20px
}

.wf-case2-flow {
    background: rgb(255 255 255 / .03);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 22px
}

.wf-case2-flow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
}

.wf-case2-flow-col {
    padding: 0 14px;
    border-right: 1px solid rgb(255 255 255 / .08)
}

.wf-case2-flow-col:last-child {
    border-right: none
}

.wf-case2-flow-col:first-child {
    padding-left: 0
}

.wf-case2-flow-l {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px
}

.wf-case2-flow-l-before {
    color: rgb(255 255 255 / .5)
}

.wf-case2-flow-l-before::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(255 255 255 / .3);
    display: inline-block
}

.wf-case2-flow-l-after {
    color: var(--red)
}

.wf-case2-flow-l-after::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 6px rgb(222 37 58 / .6);
    display: inline-block
}

.wf-case2-flow-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.wf-case2-flow-item {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 9px;
    align-items: baseline;
    font-size: 11.5px;
    line-height: 1.4;
    min-height: 34px;
    padding: 6px 0;
    border-bottom: 1px dashed rgb(255 255 255 / .04)
}

.wf-case2-flow-item:last-child {
    border-bottom: none
}

.wf-case2-flow-item-n {
    font-family: var(--fm);
    font-size: 9.5px;
    color: rgb(255 255 255 / .35);
    letter-spacing: .04em
}

.wf-case2-flow-item-t {
    color: rgb(255 255 255 / .6);
    overflow-wrap: anywhere
}

.wf-case2-flow-item-d {
    font-family: var(--fm);
    font-size: 10px;
    color: rgb(255 255 255 / .85);
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
    text-align: right
}

.wf-case2-flow-col:last-child .wf-case2-flow-item-t {
    color: rgb(255 255 255 / .92)
}

.wf-case2-flow-col:last-child .wf-case2-flow-item-n {
    color: var(--red)
}

.wf-case2-flow-col:last-child .wf-case2-flow-item-d {
    color: #fff
}

.wf-case2-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fd);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 11px 18px;
    background: var(--red);
    color: #fff;
    border-radius: 7px;
    transition: gap 0.25s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px -8px rgb(222 37 58 / .45)
}

.wf-case2-cta:hover {
    background: #c41f32;
    gap: 12px;
    box-shadow: 0 10px 28px -8px rgb(222 37 58 / .55)
}

.wf-case2-cta svg {
    transition: transform 0.25s;
    width: 13px;
    height: 13px
}

@media (max-width:1100px) {
    .wf-case2 {
        padding: 30px 32px;
        gap: 32px
    }
}

@media (max-width:900px) {
    .wf-cases2 {
        height: auto
    }

    .wf-cases2-stage {
        position: relative;
        top: auto;
        height: auto;
        max-height: none
    }

    .wf-cases2-inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
        height: auto
    }

    .wf-case2,
    .wf-case2[data-pin="1"] {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none !important;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 22px
    }

    .wf-case2[data-pin="1"] .wf-case2-img {
        order: 0
    }

    .wf-case2[data-pin="1"] .wf-case2-body {
        order: 0
    }

    .wf-case2-img {
        aspect-ratio: 1.4/1
    }

    .wf-case2-flow-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .wf-case2-flow-col {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgb(255 255 255 / .08);
        padding-bottom: 14px
    }

    .wf-case2-flow-col:last-child {
        border-bottom: none;
        padding-bottom: 0
    }
}

.wf-roi-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 8px
}

.wf-roi-fields .wf-roi-gate-input {
    width: 100%
}

.wf-hero-text h1 em {
    color: var(--red);
    font-style: normal;
    background: none
}

.wf-bridge {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.wf-bridge-text {
    font-size: 14.5px;
    color: var(--g60);
    text-align: center;
    line-height: 1.5
}

.wf-bridge-text strong {
    color: var(--ink);
    font-weight: 600
}

.wf-bridge.on-dark .wf-bridge-text {
    color: rgb(255 255 255 / .7)
}

.wf-bridge.on-dark .wf-bridge-text strong {
    color: #fff
}

@media (max-width:640px) {
    .wf-bridge {
        flex-direction: column;
        gap: 14px;
        text-align: center
    }
}

@media (max-width:1100px) {
    :root {
        --px: 48px
    }

    .wf-hero-pill {
        font-size: 10.5px
    }

    .wf-pipeline {
        order: -1
    }

    .wf-pipe-card {
        max-width: 580px;
        margin: 0 auto
    }

    .wf-svc-pillars {
        grid-template-columns: 1fr
    }

    .wf-pillar {
        border-right: none;
        border-bottom: 1px solid var(--g10)
    }

    .wf-pillar:last-child {
        border-bottom: none
    }

    .wf-int-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .wf-eng-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .wf-foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }
}

@media (max-width:900px) {
    :root {
        --px: 36px
    }

    .wf-hero {
        padding: 160px 0 96px;
        min-height: auto
    }

    .wf-hero h1 {
        font-size: 42px
    }

    .wf-stakes-grid {
        grid-template-columns: 1fr
    }

    .wf-stake {
        border-right: none;
        border-bottom: 1px solid var(--g10);
        padding: 32px 0
    }

    .wf-stake:not(:first-child) {
        padding-left: 0
    }

    .wf-stake:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

    .wf-stake-n {
        font-size: 48px
    }

    .wf-fail-row {
        grid-template-columns: 64px 1fr;
        gap: 18px
    }

    .wf-fail-r {
        grid-column: 1/-1;
        margin-top: 8px
    }

    .wf-dept-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .wf-eval-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .wf-roi-grid {
        grid-template-columns: 1fr
    }

    .wf-roi-inputs {
        border-right: none;
        border-bottom: 1px solid var(--g10)
    }

    .wf-roi-gate {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px
    }

    .wf-roi-gate-form {
        justify-content: center;
        flex-wrap: wrap
    }

    .wf-cases-list .wf-case-flows {
        grid-template-columns: 1fr
    }

    .wf-cases-list .wf-case-flow {
        border-right: none;
        border-bottom: 1px solid rgb(255 255 255 / .08)
    }

    .wf-cases-list .wf-case-flow:last-child {
        border-bottom: none
    }

    .wf-prin-block {
        grid-template-columns: 60px 1fr;
        gap: 24px
    }

    .wf-prin-stat {
        grid-column: 2
    }

    .wf-meth-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .wf-stats-band {
        grid-template-columns: 1fr;
        padding: 36px
    }

    .wf-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .wf-int-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .wf-foot-top {
        grid-template-columns: 1fr 1fr
    }

    .wf-est-opts,
    .wf-sc-opts {
        grid-template-columns: 1fr
    }

    .wf-est-recs {
        grid-template-columns: 1fr
    }

    .wf-est-gate-form,
    .wf-sc-gate-form {
        grid-template-columns: 1fr
    }

    .wf-cost-rows {
        grid-template-columns: 1fr
    }

    .wf-def-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .wf-fail-grid {
        grid-template-columns: 1fr
    }

    .wf-proc-grid2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .wf-proc-band {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start
    }

    .wf-proc-band-r {
        justify-self: start;
        text-align: left;
        max-width: none
    }

    .wf-prin-grid {
        grid-template-columns: 1fr
    }

    .wf-roi-fields {
        grid-template-columns: 1fr
    }
}

@media (max-width:640px) {
    :root {
        --px: 22px;
        --py: 64px
    }

    .wf-hero {
        padding: 96px 0 64px;
        min-height: auto
    }

    .wf-hero h1 {
        font-size: 32px;
        line-height: 1.05;
        margin-bottom: 18px
    }

    .wf-hero-lead {
        font-size: 14.5px;
        margin-bottom: 28px
    }

    .wf-hero-pill {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 22px
    }

    .wf-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
        margin-bottom: 36px
    }

    .wf-hero-actions .btn {
        width: 100%
    }

    .wf-trust-strip {
        flex-direction: column;
        gap: 8px;
        padding-top: 18px
    }

    .wf-trust-strip-item {
        padding: 0;
        border: none !important
    }

    .wf-pipe-stages {
        flex-wrap: wrap;
        gap: 8px
    }

    .wf-stage {
        min-width: 46%
    }

    .wf-arrow {
        display: none
    }

    .wf-pulse {
        display: none
    }

    .wf-pipe-meta {
        grid-template-columns: 1fr
    }

    .wf-stakes-hd h2,
    .wf-svc-hd h2,
    .wf-cmp-hd h2,
    .wf-fail-hd h2,
    .wf-proc-hd h2,
    .wf-ind-hd h2,
    .wf-dept-hd h2,
    .wf-eval-hd h2,
    .wf-cases-hd h2,
    .wf-prin-hd h2,
    .wf-faq-hd h2,
    .wf-eng-hd h2,
    .wf-stats-band h2,
    .wf-cta h2,
    .wf-cost-hd h2,
    .wf-int-hd h2 {
        font-size: 28px;
        line-height: 1.1
    }

    .wf-stake-n {
        font-size: 42px
    }

    .wf-stake {
        padding: 28px 0
    }

    .wf-stake:not(:first-child) {
        padding-left: 0;
        padding-top: 28px;
        border-top: 1px solid var(--g10)
    }

    .wf-stake {
        border-right: none
    }

    .wf-stakes-grid {
        grid-template-columns: 1fr;
        border-top: none;
        border-bottom: none
    }

    .wf-def-card {
        padding: 30px 22px
    }

    .wf-def-viz {
        padding: 22px;
        min-height: auto
    }

    .wf-pillar {
        padding: 30px 24px;
        border-right: none;
        border-bottom: 1px solid var(--g10)
    }

    .wf-pillar:last-child {
        border-bottom: none
    }

    .wf-svc-pillars {
        grid-template-columns: 1fr
    }

    .wf-pillar h3 {
        font-size: 20px
    }

    .wf-pillar-anim {
        height: 96px
    }

    .wf-est-body,
    .wf-sc-body {
        padding: 24px 18px
    }

    .wf-est-progress {
        padding: 12px 18px
    }

    .wf-est-q {
        font-size: 20px
    }

    .wf-est-opts {
        grid-template-columns: 1fr
    }

    .wf-est-opt {
        padding: 14px 16px
    }

    .wf-est-opt-t {
        font-size: 14px
    }

    .wf-est-opt-d {
        font-size: 12px
    }

    .wf-est-result-amt {
        font-size: 32px
    }

    .wf-fail-row {
        padding: 24px 22px;
        grid-template-columns: 1fr
    }

    .wf-fail-num {
        font-size: 36px;
        margin-bottom: 8px
    }

    .wf-fail-card {
        padding: 22px 20px
    }

    .wf-fail-card-n {
        font-size: 28px
    }

    .wf-fail-card-t {
        font-size: 14.5px
    }

    .wf-proc-cell2 {
        padding: 22px 0
    }

    .wf-proc-cell2-illus {
        height: 110px
    }

    .wf-proc-cell2-t {
        font-size: 17px
    }

    .wf-proc-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px
    }

    .wf-ind-content {
        padding: 24px 18px
    }

    .wf-ind-panel-grid {
        grid-template-columns: 1fr
    }

    .wf-ind-tab {
        padding: 14px 16px;
        font-size: 12.5px
    }

    .wf-dept-grid {
        grid-template-columns: 1fr
    }

    .wf-dept-img {
        height: 120px
    }

    .wf-dept-body {
        padding: 20px 22px
    }

    .wf-eval-grid {
        grid-template-columns: 1fr
    }

    .wf-eval-pillar {
        padding: 24px 22px
    }

    .wf-int-grid {
        grid-template-columns: 1fr
    }

    .wf-int-col {
        padding: 20px 18px
    }

    .wf-eng-grid {
        grid-template-columns: 1fr
    }

    .wf-eng-card {
        padding: 24px 22px
    }

    .wf-case-meta {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px
    }

    .wf-case-flow {
        padding: 24px
    }

    .wf-prin-block {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 0
    }

    .wf-prin-num {
        font-size: 48px
    }

    .wf-prin-stat {
        grid-column: 1
    }

    .wf-prin-tile {
        padding: 24px 22px
    }

    .wf-prin-tile-n {
        font-size: 28px
    }

    .wf-prin-tile h3 {
        font-size: 16px
    }

    .wf-meth-r {
        padding: 24px 22px
    }

    .wf-meth-l h2 {
        font-size: 26px
    }

    .wf-stats-band {
        padding: 28px 22px
    }

    .wf-stats-grid {
        grid-template-columns: 1fr
    }

    .wf-cost-card {
        padding: 28px 22px
    }

    .wf-cost-amt {
        font-size: 24px
    }

    .wf-foot-top {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .wf-foot-bot {
        flex-direction: column;
        align-items: flex-start;
        text-align: left
    }

    .wf-foot-legal {
        flex-wrap: wrap
    }

    .wf-faq-q {
        padding: 18px 20px;
        font-size: 14px
    }

    .wf-faq-a-inner {
        padding: 0 20px 22px;
        font-size: 13.5px
    }

    .wf-form-box {
        padding: 22px 18px
    }

    .wf-form-box .wf-f-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .wf-roi-inputs,
    .wf-roi-output {
        padding: 24px 20px
    }

    .wf-roi-fields {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .wf-roi-gate {
        padding: 20px
    }

    .wf-roi-gate-input {
        width: 100%
    }

    .wf-cmp-table {
        font-size: 12px
    }

    .wf-cmp-table thead th,
    .wf-cmp-table tbody td {
        padding: 12px 14px
    }

    .wf-est-gate-form,
    .wf-sc-gate-form {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .wf-cta-grid {
        grid-template-columns: 1fr
    }

    .wf-cta-pts {
        margin-top: 14px
    }
}

@media (max-width:425px) {
    .wf-hero h1 {
        font-size: 34px;
        min-height: 135px
    }
}

@media (max-width:380px) {
    :root {
        --px: 16px
    }

    .wf-stake-n {
        font-size: 36px
    }

    .wf-stakes-hd h2,
    .wf-svc-hd h2 {
        font-size: 24px
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01s !important
    }

    [data-r] {
        opacity: 1 !important;
        transform: none !important
    }

    .wf-pulse {
        display: none
    }

    .wf-log-track {
        animation: none
    }
}

@media (hover:none) and (pointer:coarse) {

    .btn,
    .wf-faq-q,
    .wf-est-opt,
    .wf-sc-opt,
    .wf-ind-tab {
        min-height: 44px
    }
}

.ml-cta {
    background: var(--ink);
    color: #fff;
    padding: var(--py) 0;
    position: relative;
    overflow: hidden
}

.ml-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgb(222 37 58 / .18) 0%, transparent 55%), radial-gradient(circle at 15% 100%, rgb(222 37 58 / .1) 0%, transparent 55%);
    pointer-events: none
}

.ml-cta .wrap {
    position: relative;
    z-index: 1
}

.ml-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.ml-cta-l h2 {
    color: #fff
}

.ml-cta-l p {
    color: rgb(255 255 255 / .65);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 18px;
    margin-bottom: 30px;
    max-width: 480px
}

.ml-cta-pts {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ml-cta-pt {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13.5px;
    color: rgb(255 255 255 / .7)
}

.ml-cta-pt svg {
    flex-shrink: 0;
    color: var(--red)
}

.ml-form-box {
    background: rgb(255 255 255 / .04);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 14px;
    padding: 32px
}

.ml-f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ml-f-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px
}

.ml-f-label {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .4)
}

.ml-f-input,
.ml-f-textarea {
    width: 100%;
    background: rgb(255 255 255 / .06);
    border: 1.5px solid rgb(255 255 255 / .1);
    border-radius: 6px;
    color: #fff;
    padding: 0 14px;
    font-family: var(--fb);
    font-size: 14px;
    outline: none;
    height: 46px;
    transition: border-color 0.2s
}

.ml-f-textarea {
    padding: 12px 14px;
    height: auto;
    min-height: 88px;
    resize: vertical
}

.ml-f-input:focus,
.ml-f-textarea:focus {
    border-color: var(--red)
}

.ml-f-btn {
    width: 100%;
    height: 50px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--fd);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    letter-spacing: .01em
}

.ml-f-btn:hover {
    background: #c41f32
}

.ml-f-note {
    font-family: var(--fm);
    font-size: 10px;
    color: rgb(255 255 255 / .32);
    text-align: center;
    margin-top: 10px;
    letter-spacing: .06em
}

.ml-sources {
    margin-top: 42px;
    padding: 20px 24px;
    background: rgb(255 255 255 / .03);
    border: 1px solid rgb(255 255 255 / .06);
    border-radius: 10px
}

.ml-sources-h {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgb(255 255 255 / .5);
    margin-bottom: 9px;
    font-weight: 600
}

.ml-sources-list {
    font-family: var(--fm);
    font-size: 11px;
    color: rgb(255 255 255 / .55);
    line-height: 1.7
}

.ml-sources-list a {
    color: rgb(255 255 255 / .78);
    transition: color 0.2s
}

.ml-sources-list a:hover {
    color: var(--red)
}

.ml-bridge {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.ml-bridge-text {
    font-size: 14.5px;
    color: var(--g60);
    text-align: center;
    line-height: 1.5
}

.ml-bridge-text strong {
    color: var(--ink);
    font-weight: 600
}

.ml-bridge.on-dark .ml-bridge-text {
    color: rgb(255 255 255 / .7)
}

.ml-bridge.on-dark .ml-bridge-text strong {
    color: #fff
}

.wf-roi-fields .wpcf7-form-control-wrap {
    display: block
}

.wf-roi-fields .wpcf7-submit,
.wf-roi-fields .wf-roi-gate-btn {
    grid-column: 1 / -1
}

.wf-roi-fields p {
    margin: 0;
    display: contents
}

.wf-est-opt.selected {
    border-color: var(--red);
    background: rgb(255 0 0 / .08)
}

.wf-est-gate .wpcf7-spinner {
    position: absolute
}

.wf-sc-opt.selected {
    border-color: var(--red);
    background: rgb(255 0 0 / .08)
}

.wf-form-box .wf-f-input,
.wf-form-box input.wf-f-input {
    height: 46px;
    background: rgb(255 255 255 / .06);
    border: 1.5px solid rgb(255 255 255 / .1);
    border-radius: 6px;
    color: #fff;
    padding: 0 14px;
    font-family: var(--fb);
    font-size: 14px;
    outline: none;
    width: 100%;
    box-sizing: border-box
}

.wf-form-box .wf-f-textarea,
.wf-form-box textarea.wf-f-textarea {
    background: rgb(255 255 255 / .06);
    border: 1.5px solid rgb(255 255 255 / .1);
    border-radius: 6px;
    color: #fff;
    padding: 12px 14px;
    font-family: var(--fb);
    font-size: 14px;
    outline: none;
    resize: vertical;
    min-height: 88px;
    width: 100%;
    box-sizing: border-box
}

.wf-form-box .wf-f-input:focus,
.wf-form-box .wf-f-textarea:focus {
    border-color: rgb(255 255 255 / .25)
}

.wf-form-box .wpcf7-form-control-wrap {
    display: block;
    width: 100%
}

.wf-form-box .wpcf7-not-valid-tip {
    font-family: var(--fb);
    font-size: 12px;
    margin-top: 6px
}

.wf-form-box .wpcf7-response-output {
    font-family: var(--fb);
    font-size: 13px;
    color: #fff;
    margin: 14px 0 0
}

.wf-est-result .wf-est-gate {
 cursor: not-allowed;
   pointer-events: none;
}