/*
  FactoringWerkstatt 2026 Design Layer
  Zentraler Look für Startseite und bestehende Unterseiten.
*/

:root {
    --fw-ink: #071b33;
    --fw-navy: #0b2a4d;
    --fw-blue: #075fae;
    --fw-blue-2: #0b7dcc;
    --fw-cyan: #48c7ee;
    --fw-ice: #eef9ff;
    --fw-mist: #f6fbff;
    --fw-line: rgba(7, 95, 174, 0.14);
    --fw-muted: #5f7185;
    --fw-shadow: 0 20px 60px rgba(7, 47, 88, 0.12);
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--fw-mist);
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    color: var(--fw-ink);
    background:
        radial-gradient(circle at 18% 8%, rgba(72, 199, 238, 0.18), transparent 28rem),
        linear-gradient(180deg, #f7fcff 0%, #eef8ff 46%, #ffffff 100%) !important;
    letter-spacing: 0;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe,
svg,
canvas {
    max-width: 100%;
}

table {
    max-width: 100%;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url("../images/factoringwerkstatt-blue-background.jpg");
    background-size: cover;
    background-position: center top;
    opacity: 0.16;
    pointer-events: none;
    transform-origin: center top;
    animation: fwBackgroundDrift 34s ease-in-out infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(247, 252, 255, 0.88), rgba(255, 255, 255, 0.96) 54%, rgba(244, 250, 255, 0.98));
    pointer-events: none;
}

.reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.fade-in,
.fade-in-delay {
    opacity: 1 !important;
    animation: fwSoftEntrance 540ms ease-out both !important;
}

.fade-in-delay {
    animation-delay: 90ms !important;
}

.bg-white {
    background-color: rgba(255, 255, 255, 0.86) !important;
}

.bg-bg,
.bg-slate-50,
.bg-gray-50 {
    background: linear-gradient(180deg, rgba(238, 249, 255, 0.78), rgba(255, 255, 255, 0.92)) !important;
}

.bg-navy,
.bg-slate-900,
.bg-blue,
.bg-primary,
.fw-bg-primary {
    background:
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(7, 95, 174, 0.94)) !important;
}

.bg-navy,
.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy .text-navy,
.bg-navy .fw-text-primary,
.bg-blue,
.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue .text-navy,
.bg-blue .fw-text-primary,
.bg-primary,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary .text-navy,
.bg-primary .fw-text-primary,
.bg-slate-900,
.bg-slate-900 h1,
.bg-slate-900 h2,
.bg-slate-900 h3,
.bg-slate-900 h4 {
    color: #ffffff !important;
}

.bg-navy p,
.bg-navy li,
.bg-navy .text-slate-400,
.bg-navy .text-slate-500,
.bg-navy .text-slate-600,
.bg-navy .text-gray-500,
.bg-navy .text-gray-600,
.bg-blue p,
.bg-blue li,
.bg-blue .text-slate-400,
.bg-blue .text-slate-500,
.bg-blue .text-slate-600,
.bg-blue .text-gray-500,
.bg-blue .text-gray-600,
.bg-primary p,
.bg-primary li,
.bg-primary .text-slate-400,
.bg-primary .text-slate-500,
.bg-primary .text-slate-600,
.bg-primary .text-gray-500,
.bg-primary .text-gray-600,
.bg-slate-900 p,
.bg-slate-900 li,
.bg-slate-900 .text-slate-300,
.bg-slate-900 .text-slate-400,
.bg-slate-900 .text-slate-500,
.bg-slate-900 .text-gray-400,
.bg-slate-900 .text-gray-500,
footer.bg-slate-900,
footer.bg-slate-900 p,
footer.bg-slate-900 li,
footer.bg-slate-900 span,
footer.bg-slate-900 a {
    color: rgba(235, 244, 255, 0.92) !important;
}

footer.bg-slate-900 .border-slate-800 {
    border-color: rgba(235, 244, 255, 0.18) !important;
}

.bg-navy .text-blue,
.bg-navy .text-primary,
.bg-navy .text-blue-100,
.bg-blue .text-blue,
.bg-blue .text-primary,
.bg-blue .text-blue-100,
.bg-primary .text-blue,
.bg-primary .text-primary,
.bg-primary .text-blue-100,
.bg-slate-900 .text-blue,
.bg-slate-900 .text-primary {
    color: #bfeeff !important;
}

.text-navy,
.fw-text-primary {
    color: var(--fw-navy) !important;
}

.text-blue,
.text-primary {
    color: var(--fw-blue) !important;
}

.text-gold,
.text-yellow-300,
.text-yellow-400,
.text-yellow-500,
.text-yellow-600,
.text-yellow-700,
.text-yellow-800,
.text-green-300,
.text-green-400,
.text-green-500,
.text-green-600,
.text-green-700,
.text-green-800,
.text-red-300,
.text-red-400,
.text-red-500,
.text-red-600,
.text-red-700,
.text-red-800,
.text-purple-500,
.text-purple-600,
.text-purple-700,
.text-orange-500,
.text-orange-600,
.text-orange-700 {
    color: var(--fw-blue) !important;
}

.bg-gold,
.bg-success,
.bg-secondary,
.bg-green-50,
.bg-green-100,
.bg-green-500,
.bg-green-600,
.bg-yellow-50,
.bg-yellow-100,
.bg-yellow-500,
.bg-yellow-600,
.bg-red-50,
.bg-red-100,
.bg-red-500,
.bg-red-600,
.bg-orange-50,
.bg-purple-50 {
    background: rgba(72, 199, 238, 0.1) !important;
    color: var(--fw-navy) !important;
}

.from-red-50,
.from-orange-50,
.from-yellow-50,
.from-purple-50,
.from-green-50,
.via-orange-50,
.via-yellow-50,
.to-yellow-50,
.to-green-50,
.to-purple-50 {
    --tw-gradient-from: rgba(238, 249, 255, 0.92) var(--tw-gradient-from-position) !important;
    --tw-gradient-via: rgba(246, 251, 255, 0.94) var(--tw-gradient-via-position) !important;
    --tw-gradient-to: rgba(255, 255, 255, 0.96) var(--tw-gradient-to-position) !important;
}

.border-green-200,
.border-green-400,
.border-green-500,
.border-yellow-200,
.border-yellow-400,
.border-red-200,
.border-red-400,
.border-red-500,
.border-orange-200,
.border-orange-500,
.border-purple-200 {
    border-color: var(--fw-line) !important;
}

header,
.fw-nav {
    background: rgba(247, 252, 255, 0.9) !important;
    border-bottom: 1px solid var(--fw-line) !important;
    box-shadow: 0 14px 45px rgba(7, 47, 88, 0.08);
}

header img[src*="logo-factoringwerkstatt"] {
    height: 3.25rem !important;
    object-fit: contain;
}

section {
    position: relative;
    max-width: 100%;
}

section > .max-w-6xl,
section > .max-w-5xl,
section > .max-w-3xl,
section > .max-w-2xl,
.container {
    position: relative;
}

h1, h2, h3, h4,
.fw-heading-1,
.fw-heading-2,
.fw-heading-3 {
    color: var(--fw-ink);
    letter-spacing: 0 !important;
}

p,
li,
.text-slate-500,
.text-slate-600,
.text-gray-600,
.text-gray-700 {
    color: var(--fw-muted);
}

.rounded-2xl,
.rounded-3xl,
.fw-card,
.content-card {
    border-radius: 8px !important;
}

.shadow-sm,
.shadow-md,
.shadow-lg,
.shadow-xl,
.shadow-2xl {
    box-shadow: var(--fw-shadow) !important;
}

.border,
.border-slate-100,
.border-gray-100,
.border-gray-200 {
    border-color: var(--fw-line) !important;
}

.bg-light,
.hover\:bg-light:hover {
    background-color: rgba(72, 199, 238, 0.1) !important;
}

.cta-primary,
a[href*="outlook.office.com"],
.fw-button-primary,
button[type="submit"] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue)) !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 36px rgba(7, 95, 174, 0.22) !important;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta-primary::after,
a[href*="outlook.office.com"]::after,
.fw-button-primary::after,
button[type="submit"]::after {
    content: "";
    position: absolute;
    top: -45%;
    bottom: -45%;
    left: -70%;
    width: 44%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-18deg);
    transition: left 520ms ease;
    pointer-events: none;
}

.cta-primary:hover,
a[href*="outlook.office.com"]:hover,
.fw-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(7, 95, 174, 0.28) !important;
}

.cta-primary:hover::after,
a[href*="outlook.office.com"]:hover::after,
.fw-button-primary:hover::after,
button[type="submit"]:hover::after {
    left: 126%;
}

.fw-section-eyebrow {
    color: var(--fw-blue);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em !important;
}

.fw-logo-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.85rem;
}

.fw-logo-marquee {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    contain: paint;
    padding: 0.25rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.fw-logo-marquee::before,
.fw-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5rem;
    z-index: 2;
    pointer-events: none;
}

.fw-logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(238, 249, 255, 0.98), transparent);
}

.fw-logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(238, 249, 255, 0.98), transparent);
}

.fw-logo-wall--marquee {
    display: flex;
    gap: 0.85rem;
    width: max-content;
    max-width: none;
    animation: fwLogoMarquee 42s linear infinite;
    will-change: transform;
}

.fw-logo-wall--partners {
    animation-duration: 34s;
}

.fw-logo-marquee:hover .fw-logo-wall--marquee {
    animation-play-state: paused;
}

.fw-logo-tile {
    width: 190px;
    height: 132px;
    min-height: 132px;
    padding: 1rem;
    border: 1px solid var(--fw-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(7, 47, 88, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 190px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fw-logo-wall--marquee .fw-logo-tile {
    width: 190px;
    height: 132px;
    flex: 0 0 190px;
}

.fw-logo-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(72, 199, 238, 0.52);
    box-shadow: 0 20px 42px rgba(7, 95, 174, 0.14);
}

.fw-logo-tile img {
    display: block;
    max-width: 100%;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
}

.fw-logo-tile--original {
    padding: 1.15rem;
}

.fw-logo-tile--original img {
    max-height: 86px;
}

.fw-branch-marquee {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    contain: paint;
    padding: 0.25rem 0.1rem 0.9rem;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.fw-branch-marquee::before,
.fw-branch-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4.5rem;
    z-index: 2;
    pointer-events: none;
}

.fw-branch-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), transparent);
}

.fw-branch-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), transparent);
}

.fw-branch-track {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    width: max-content;
    max-width: none;
    animation: fwBranchMarquee 46s linear infinite;
    will-change: transform;
}

.fw-branch-marquee:hover .fw-branch-track {
    animation-play-state: paused;
}

.fw-branch-track > a,
.fw-branch-track > div {
    width: 224px;
    min-height: 76px;
    flex: 0 0 224px;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(7, 47, 88, 0.07);
}

.fw-risk-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    flex: 0 0 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #d93025, #9f1d18);
    border: 2px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    font-size: 0.82rem;
}

.fw-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.fw-problem-card {
    min-height: 100%;
    padding: 1.15rem;
    border: 1px solid var(--fw-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--fw-shadow);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.fw-problem-card:hover {
    transform: translateY(-3px);
    border-color: rgba(72, 199, 238, 0.46);
    box-shadow: 0 24px 58px rgba(7, 47, 88, 0.15);
}

.fw-problem-visual {
    min-height: 9.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.05rem;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid rgba(7, 95, 174, 0.12);
    border-radius: 8px;
    background:
        radial-gradient(circle at 16% 18%, rgba(72, 199, 238, 0.28), transparent 7rem),
        linear-gradient(135deg, rgba(238, 249, 255, 0.94), rgba(255, 255, 255, 0.96));
}

.fw-mini-caption {
    color: var(--fw-blue);
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fw-ui-window {
    width: min(100%, 16rem);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(7, 95, 174, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(7, 47, 88, 0.1);
}

.fw-ui-window__bar {
    display: flex;
    gap: 0.28rem;
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid rgba(7, 95, 174, 0.1);
    background: rgba(238, 249, 255, 0.85);
}

.fw-ui-window__bar span {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: rgba(7, 95, 174, 0.28);
}

.fw-cashgap-flow {
    display: grid;
    grid-template-columns: 4.3rem 1fr 4.3rem;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 0.9rem;
}

.fw-cashgap-stack,
.fw-cashgap-invoice {
    min-height: 3.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.55rem;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue));
    box-shadow: 0 14px 30px rgba(7, 95, 174, 0.18);
}

.fw-cashgap-invoice {
    color: var(--fw-navy);
    background: rgba(238, 249, 255, 0.95);
    border: 1px solid rgba(7, 95, 174, 0.12);
}

.fw-cashgap-stack span,
.fw-cashgap-invoice span {
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fw-cashgap-stack strong,
.fw-cashgap-invoice strong {
    font-size: 0.82rem;
    line-height: 1.1;
}

.fw-cashgap-line {
    position: relative;
    height: 0.34rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(7, 95, 174, 0.12);
}

.fw-cashgap-line i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 44%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fw-cyan), var(--fw-blue));
    animation: fwCashgapMove 2.8s ease-in-out infinite alternate;
}

.fw-payroll-board {
    width: min(100%, 16rem);
    margin: 0 auto;
    padding: 0.85rem;
    border: 1px solid rgba(7, 95, 174, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(7, 47, 88, 0.1);
}

.fw-payroll-calendar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.fw-payroll-calendar span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    border-radius: 8px;
    color: rgba(7, 47, 88, 0.62);
    background: rgba(238, 249, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 900;
}

.fw-payroll-calendar .is-due {
    color: #fff;
    background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue));
}

.fw-payroll-calendar .is-late {
    color: #fff;
    background: linear-gradient(135deg, #d93025, #9f1d18);
}

.fw-payroll-meter {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
    color: var(--fw-muted);
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fw-payroll-meter i {
    height: 0.34rem;
    overflow: hidden;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fw-blue) 0 56%, rgba(217, 48, 37, 0.74) 56% 100%);
}

.fw-risk-radar {
    position: relative;
    width: 9.2rem;
    height: 9.2rem;
    margin: 0 auto;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 19%, transparent 20%),
        radial-gradient(circle, transparent 0 37%, rgba(7, 95, 174, 0.1) 38% 39%, transparent 40% 100%),
        radial-gradient(circle, rgba(72, 199, 238, 0.14), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(7, 95, 174, 0.14);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(7, 47, 88, 0.1);
}

.fw-risk-radar__ring {
    position: absolute;
    inset: 1.45rem;
    border: 1px solid rgba(7, 95, 174, 0.14);
    border-radius: inherit;
}

.fw-risk-radar__ring--two {
    inset: 3rem;
}

.fw-risk-radar__sweep {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 50%;
    height: 50%;
    transform-origin: 0 0;
    background: linear-gradient(45deg, rgba(72, 199, 238, 0.34), transparent 62%);
    animation: fwRadarSweep 5.2s linear infinite;
}

.fw-risk-radar__debtor {
    position: absolute;
    width: 1.82rem;
    height: 1.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(7, 47, 88, 0.16);
}

.fw-risk-radar__debtor--safe {
    left: 21%;
    top: 28%;
    background: linear-gradient(135deg, var(--fw-blue), var(--fw-cyan));
}

.fw-risk-radar__debtor--watch {
    right: 18%;
    top: 42%;
    background: linear-gradient(135deg, #0b7dcc, #075fae);
}

.fw-risk-radar__debtor--risk {
    right: 26%;
    bottom: 14%;
    background: linear-gradient(135deg, #d93025, #9f1d18);
    animation: fwRiskPulse 2.2s ease-in-out infinite;
}

.fw-problem-note {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--fw-line);
    color: var(--fw-blue);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.35;
}

.fw-escalation-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 1.25rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(72, 199, 238, 0.34);
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 0%, rgba(72, 199, 238, 0.2), transparent 14rem),
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(7, 95, 174, 0.94));
    box-shadow: 0 22px 58px rgba(7, 47, 88, 0.18);
}

.fw-escalation-copy {
    padding: 1rem;
}

.fw-escalation-copy h3 {
    color: #fff;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 0.8rem;
}

.fw-escalation-copy p:not(.text-cyan) {
    color: rgba(235, 244, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
}

.fw-escalation-visual {
    min-width: 0;
}

.fw-pressure-chart {
    position: relative;
    min-height: 16rem;
    margin-bottom: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(191, 238, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 4.2rem 100%,
        linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 100% 4.2rem,
        radial-gradient(circle at 78% 18%, rgba(72, 199, 238, 0.2), transparent 13rem),
        rgba(255, 255, 255, 0.08);
}

.fw-pressure-chart svg {
    position: absolute;
    inset: 0.65rem 0.4rem 0.2rem;
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.85rem);
}

.fw-pressure-gridline {
    fill: none;
    stroke: rgba(235, 244, 255, 0.14);
    stroke-width: 1;
}

.fw-pressure-fill {
    fill: url(#fwPressureFill);
}

.fw-pressure-line {
    fill: none;
    stroke: url(#fwPressureLine);
    stroke-linecap: round;
    stroke-width: 7;
    filter: drop-shadow(0 10px 18px rgba(72, 199, 238, 0.16));
}

.fw-pressure-point {
    fill: #fff;
    stroke: var(--fw-cyan);
    stroke-width: 5;
}

.fw-pressure-point--risk {
    stroke: #f15a4a;
}

.fw-pressure-label {
    position: absolute;
    min-width: 7.8rem;
    padding: 0.62rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(7, 27, 51, 0.74);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.fw-pressure-label span,
.fw-pressure-label strong {
    display: block;
}

.fw-pressure-label span {
    color: var(--fw-cyan);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.fw-pressure-label strong {
    color: #fff;
    font-size: 0.74rem;
    line-height: 1.15;
    margin-top: 0.15rem;
}

.fw-pressure-label--one {
    left: 4%;
    bottom: 8%;
}

.fw-pressure-label--two {
    left: 31%;
    bottom: 31%;
}

.fw-pressure-label--three {
    right: 23%;
    top: 23%;
}

.fw-pressure-label--four {
    right: 4%;
    top: 8%;
}

.fw-escalation-outcomes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.fw-escalation-outcomes article {
    min-height: 100%;
    padding: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fw-escalation-outcomes span,
.fw-escalation-outcomes strong,
.fw-escalation-outcomes p {
    display: block;
}

.fw-escalation-outcomes span {
    color: var(--fw-cyan);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 0.38rem;
}

.fw-escalation-outcomes strong {
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.18;
    margin-bottom: 0.3rem;
}

.fw-escalation-outcomes p {
    color: rgba(235, 244, 255, 0.7);
    font-size: 0.68rem;
    line-height: 1.38;
    margin: 0;
}

.fw-proof-card,
.fw-social-card {
    border: 1px solid var(--fw-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--fw-shadow);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.fw-proof-card:hover,
.fw-social-card:hover {
    transform: translateY(-3px);
    border-color: rgba(72, 199, 238, 0.42);
    box-shadow: 0 24px 58px rgba(7, 47, 88, 0.15);
}

.fw-positioning-compact {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: center;
}

.fw-positioning-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 0 1.35rem;
}

.fw-positioning-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.72rem;
    border: 1px solid rgba(7, 95, 174, 0.12);
    border-radius: 8px;
    color: var(--fw-blue);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 26px rgba(7, 47, 88, 0.06);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.15;
}

.fw-positioning-points i {
    color: var(--fw-blue);
    font-size: 0.78rem;
    flex: 0 0 auto;
}

.fw-cashflow-visual {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
    gap: 1.2rem;
    align-items: stretch;
    margin: -1.5rem 0 3rem;
    padding: 1.1rem;
    border: 1px solid var(--fw-line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 86% 14%, rgba(72, 199, 238, 0.26), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 255, 0.9));
    box-shadow: var(--fw-shadow);
}

.fw-cashflow-copy {
    padding: 1.35rem;
}

.fw-cashflow-copy h3 {
    color: var(--fw-navy);
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 0.8rem;
}

.fw-cashflow-copy p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--fw-muted);
}

.fw-compare-table {
    overflow: hidden;
    border: 1px solid rgba(7, 95, 174, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(7, 47, 88, 0.08);
}

.fw-compare-head,
.fw-compare-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fw-compare-head {
    background: linear-gradient(90deg, rgba(238, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
    border-bottom: 1px solid var(--fw-line);
}

.fw-compare-head > div {
    padding: 1rem 1.1rem;
    color: var(--fw-muted);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fw-compare-head > div + div,
.fw-compare-row > div + div {
    border-left: 1px solid var(--fw-line);
}

.fw-compare-head--highlight {
    color: var(--fw-blue) !important;
    background: rgba(72, 199, 238, 0.1);
}

.fw-compare-row {
    border-bottom: 1px solid var(--fw-line);
}

.fw-compare-row:last-child {
    border-bottom: 0;
}

.fw-compare-row > div {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    min-height: 6.3rem;
}

.fw-compare-row > div:nth-child(2) {
    background: linear-gradient(90deg, rgba(72, 199, 238, 0.08), rgba(255, 255, 255, 0.92));
}

.fw-compare-row p {
    margin: 0;
    color: var(--fw-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.fw-compare-row strong {
    color: var(--fw-navy);
}

.fw-compare-icon {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 999px;
    flex: 0 0 1.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    margin-top: 0.1rem;
}

.fw-compare-icon--bad {
    color: #8aa2b8;
    background: rgba(138, 162, 184, 0.12);
}

.fw-compare-icon--good {
    color: #fff;
    background: linear-gradient(135deg, var(--fw-cyan), var(--fw-blue));
    box-shadow: 0 10px 22px rgba(7, 95, 174, 0.22);
}

.fw-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.fw-process-card {
    position: relative;
    overflow: hidden;
    min-height: 318px;
    padding: 1.15rem;
    border: 1px solid var(--fw-line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 12%, rgba(72, 199, 238, 0.16), transparent 8.5rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.92));
    box-shadow: 0 16px 42px rgba(7, 47, 88, 0.08);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fw-process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(72, 199, 238, 0.45);
    box-shadow: 0 26px 58px rgba(7, 47, 88, 0.14);
}

.fw-process-card--highlight {
    background:
        radial-gradient(circle at 88% 12%, rgba(72, 199, 238, 0.24), transparent 9rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 249, 255, 0.96));
}

.fw-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.fw-process-number {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue));
    box-shadow: 0 14px 30px rgba(7, 95, 174, 0.22);
    font-size: 1.05rem;
    font-weight: 900;
}

.fw-process-label {
    color: var(--fw-blue);
    background: rgba(72, 199, 238, 0.1);
    border: 1px solid rgba(72, 199, 238, 0.24);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fw-process-visual {
    position: relative;
    height: 132px;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(7, 95, 174, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(7, 95, 174, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 174, 0.05) 1px, transparent 1px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 249, 255, 0.82));
    background-size: 22px 22px, 22px 22px, auto;
}

.fw-process-card h3 {
    color: var(--fw-navy);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.fw-process-card p {
    color: var(--fw-muted);
    font-size: 0.84rem;
    line-height: 1.62;
    margin: 0;
}

.fw-process-arrow {
    position: absolute;
    right: -0.82rem;
    top: 50%;
    z-index: 3;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fw-blue);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(7, 95, 174, 0.18);
    box-shadow: 0 10px 24px rgba(7, 47, 88, 0.11);
    font-size: 0.78rem;
}

.fw-visual-sheet {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    width: 5.7rem;
    height: 6.25rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(7, 95, 174, 0.16);
    box-shadow: 0 18px 34px rgba(7, 47, 88, 0.12);
    padding: 1.15rem 0.7rem 0;
}

.fw-visual-sheet::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-top: 1.05rem solid rgba(72, 199, 238, 0.22);
    border-left: 1.05rem solid transparent;
}

.fw-visual-sheet span {
    display: block;
    height: 0.42rem;
    border-radius: 999px;
    background: rgba(7, 95, 174, 0.16);
    margin-bottom: 0.55rem;
}

.fw-visual-sheet span:nth-child(2) {
    width: 72%;
}

.fw-visual-sheet span:nth-child(3) {
    width: 48%;
}

.fw-visual-sheet strong {
    position: absolute;
    left: 0.7rem;
    bottom: 0.7rem;
    color: var(--fw-blue);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.fw-visual-stamp,
.fw-visual-upload,
.fw-visual-provider,
.fw-visual-euro {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--fw-cyan), var(--fw-blue));
    box-shadow: 0 16px 30px rgba(7, 95, 174, 0.22);
}

.fw-visual-stamp {
    right: 1.5rem;
    bottom: 1.25rem;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.84);
}

.fw-visual-upload,
.fw-visual-provider {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 8px;
}

.fw-visual-upload {
    left: 1.05rem;
    top: 2.1rem;
}

.fw-visual-provider {
    right: 1.05rem;
    top: 2.1rem;
    background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue));
}

.fw-visual-path {
    position: absolute;
    left: 5.25rem;
    right: 5.25rem;
    top: 3.9rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(7, 95, 174, 0.12);
}

.fw-visual-path::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 48%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fw-cyan), var(--fw-blue));
    animation: fwProcessMove 2.8s ease-in-out infinite;
}

.fw-visual-account {
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    top: 1.25rem;
    min-height: 5.9rem;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(7, 95, 174, 0.14);
    box-shadow: 0 18px 34px rgba(7, 47, 88, 0.1);
}

.fw-visual-account span {
    display: block;
    color: var(--fw-muted);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.fw-visual-account strong {
    display: block;
    color: var(--fw-navy);
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1;
}

.fw-visual-account div {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fw-cyan), var(--fw-blue));
}

.fw-visual-euro {
    right: 1.7rem;
    top: 2.25rem;
    width: 3.05rem;
    height: 3.05rem;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.88);
}

.fw-cashflow-panels {
    display: grid;
    gap: 0.85rem;
}

.fw-cashflow-panel {
    position: relative;
    overflow: hidden;
    min-height: 154px;
    padding: 1rem;
    border: 1px solid rgba(7, 95, 174, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
}

.fw-cashflow-panel::before {
    content: "";
    position: absolute;
    inset: auto 1rem 1.1rem 1rem;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(7, 95, 174, 0.12);
}

.fw-cashflow-panel::after {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 1.1rem;
    height: 0.5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fw-cyan), var(--fw-blue));
    box-shadow: 0 12px 26px rgba(7, 95, 174, 0.22);
}

.fw-cashflow-panel--slow::after {
    width: 86%;
    background: linear-gradient(90deg, #dbe7f2, #8aa2b8);
}

.fw-cashflow-panel--fast::after {
    width: 48%;
    animation: fwFlowGlow 2.8s ease-in-out infinite;
}

.fw-cashflow-panel span {
    display: block;
    color: var(--fw-blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.fw-cashflow-panel strong {
    display: block;
    color: var(--fw-navy);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    line-height: 1.15;
    margin-bottom: 2.4rem;
}

.fw-cashflow-line {
    position: absolute;
    inset: auto 1rem 2.25rem 1rem;
    height: 2rem;
}

.fw-cashflow-line i {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.4rem;
    padding: 0.38rem 0.5rem;
    border: 1px solid rgba(7, 95, 174, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--fw-muted);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(7, 47, 88, 0.08);
}

.fw-match-visual {
    position: relative;
    min-height: 332px;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(72, 199, 238, 0.3);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 45%, rgba(72, 199, 238, 0.26), transparent 12rem),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 12rem),
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(7, 95, 174, 0.95)) !important;
    box-shadow: var(--fw-shadow);
}

.fw-match-visual::before,
.fw-match-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.fw-match-visual::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(191, 238, 255, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(191, 238, 255, 0.07) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.42;
}

.fw-match-visual::after {
    width: 22rem;
    height: 22rem;
    left: 50%;
    top: 50%;
    border: 1px dashed rgba(191, 238, 255, 0.2);
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.fw-match-header,
.fw-match-flow,
.fw-match-result {
    position: relative;
    z-index: 2;
}

.fw-match-header {
    max-width: 33rem;
    margin-bottom: 1.15rem;
}

.fw-match-header span {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: var(--fw-cyan);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fw-match-header strong {
    display: block;
    color: #fff;
    font-size: clamp(1.25rem, 2.2vw, 1.85rem);
    line-height: 1.12;
}

.fw-match-flow {
    display: grid;
    grid-template-columns: minmax(8rem, 1fr) minmax(12rem, 1.05fr) minmax(8rem, 1fr);
    gap: 1rem;
    align-items: center;
}

.fw-match-column {
    display: grid;
    gap: 0.7rem;
}

.fw-match-chip {
    min-height: 3.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(191, 238, 255, 0.24);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.fw-match-chip i {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fw-navy);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    flex: 0 0 2rem;
}

.fw-match-chip span {
    font-size: 0.86rem;
    font-weight: 900;
}

.fw-match-chip--right {
    background: rgba(72, 199, 238, 0.16);
}

.fw-match-engine {
    position: relative;
    min-height: 10.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-match-engine::before,
.fw-match-engine::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 6rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 238, 255, 0.58), transparent);
}

.fw-match-engine::before {
    right: calc(50% + 4.7rem);
}

.fw-match-engine::after {
    left: calc(50% + 4.7rem);
}

.fw-match-engine-ring {
    position: absolute;
    width: 10.6rem;
    height: 10.6rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 238, 255, 0.24);
    background: radial-gradient(circle, rgba(72, 199, 238, 0.14), transparent 68%);
    animation: fwPulseRing 3.6s ease-in-out infinite;
}

.fw-match-engine-ring::before,
.fw-match-engine-ring::after {
    content: "";
    position: absolute;
    inset: 1.15rem;
    border: 1px dashed rgba(191, 238, 255, 0.3);
    border-radius: 999px;
}

.fw-match-engine-ring::after {
    inset: 2.35rem;
    border-style: solid;
    opacity: 0.48;
}

.fw-match-engine-core {
    position: relative;
    z-index: 3;
    width: 9.4rem;
    min-height: 7.3rem;
    padding: 1rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.fw-match-engine-core i {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    color: #fff;
    background: linear-gradient(135deg, var(--fw-cyan), var(--fw-blue));
}

.fw-match-engine-core span {
    color: var(--fw-blue);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.fw-match-engine-core strong {
    color: var(--fw-navy);
    font-size: 1.02rem;
    line-height: 1.1;
    margin-top: 0.2rem;
}

.fw-match-result {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1.15rem;
    max-width: 46rem;
    color: rgba(235, 244, 255, 0.9) !important;
}

.fw-match-result i {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fw-navy);
    background: var(--fw-cyan);
    font-size: 0.72rem;
    flex: 0 0 1.55rem;
    margin-top: 0.08rem;
}

.fw-match-result p {
    margin: 0;
    color: rgba(235, 244, 255, 0.9) !important;
    font-size: 0.86rem;
    line-height: 1.6;
}

@keyframes fwPulseRing {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.84;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.fw-video-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    align-items: stretch;
    gap: 1rem;
}

.fw-practice-proof {
    margin: 0 0 3rem;
    padding: 1.35rem;
    border: 1px solid rgba(72, 199, 238, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 80% 8%, rgba(72, 199, 238, 0.2), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 249, 255, 0.88));
    box-shadow: var(--fw-shadow);
}

.fw-video-feature {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 1rem;
    min-width: 0;
}

.fw-video-feature .fw-proof-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fw-video-feature .fw-proof-card > a {
    width: max-content;
    max-width: 100%;
    margin-top: auto;
}

.fw-video-link--short {
    aspect-ratio: 16 / 9;
    max-height: none;
    background:
        radial-gradient(circle at 50% 18%, rgba(72, 199, 238, 0.28), transparent 16rem),
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(7, 95, 174, 0.94));
}

.fw-video-link--short img {
    object-fit: cover;
    object-position: center center;
    padding: 0;
    opacity: 0.82;
}

.fw-social-compact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid var(--fw-line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 94% 18%, rgba(72, 199, 238, 0.16), transparent 12rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 255, 0.78));
    box-shadow: 0 16px 40px rgba(7, 47, 88, 0.08);
}

.fw-social-compact h2 {
    color: var(--fw-navy);
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
    font-weight: 950;
    line-height: 1.12;
    margin: 0 0 0.45rem;
}

.fw-social-compact p {
    color: var(--fw-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    max-width: 42rem;
}

.fw-social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.fw-social-actions a {
    min-width: 8.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.78rem 0.9rem;
    border: 1px solid rgba(7, 95, 174, 0.14);
    border-radius: 8px;
    color: var(--fw-navy);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 900;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.fw-social-actions a:hover {
    transform: translateY(-2px);
    border-color: rgba(72, 199, 238, 0.48);
    background: #fff;
    box-shadow: 0 14px 30px rgba(7, 47, 88, 0.11);
}

.fw-social-actions i {
    color: var(--fw-blue);
    font-size: 1rem;
}

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

@keyframes fwLogoMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 0.425rem)); }
}

@keyframes fwBranchMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 0.375rem)); }
}

@keyframes fwBackgroundDrift {
    from { transform: scale(1) translate3d(0, 0, 0); }
    to { transform: scale(1.035) translate3d(-8px, 10px, 0); }
}

@keyframes fwFlowGlow {
    0%, 100% { box-shadow: 0 12px 26px rgba(7, 95, 174, 0.18); }
    50% { box-shadow: 0 16px 38px rgba(72, 199, 238, 0.36); }
}

@keyframes fwProcessMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(108%); }
}

@keyframes fwCashgapMove {
    from { transform: translateX(0); width: 34%; }
    to { transform: translateX(64%); width: 22%; }
}

@keyframes fwRadarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fwRiskPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 26px rgba(7, 47, 88, 0.16); }
    50% { transform: scale(1.08); box-shadow: 0 0 0 0.42rem rgba(217, 48, 37, 0.14), 0 16px 34px rgba(7, 47, 88, 0.2); }
}

@keyframes fwOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fwSoftEntrance {
    from {
        opacity: 0.96;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fw-video-frame {
    aspect-ratio: 16 / 9;
    border: 1px solid var(--fw-line);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue));
    box-shadow: var(--fw-shadow);
}

.fw-video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.fw-video-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(7, 95, 174, 0.45);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fw-navy), var(--fw-blue));
    box-shadow: var(--fw-shadow);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fw-video-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.82;
    transition: transform 420ms ease, opacity 220ms ease;
}

.fw-video-link__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(7, 27, 51, 0.58), rgba(7, 95, 174, 0.38));
}

.fw-video-link__button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    background: rgba(7, 27, 51, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    padding: 0.95rem 1.25rem;
    font-weight: 800;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.fw-video-link:hover {
    transform: translateY(-3px);
    border-color: rgba(72, 199, 238, 0.72);
    box-shadow: 0 26px 62px rgba(7, 95, 174, 0.2);
}

.fw-video-link:hover img {
    opacity: 0.9;
    transform: scale(1.035);
}

.fw-video-link:hover .fw-video-link__button {
    background: var(--fw-blue);
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

/* Final contrast guard for older subpages with dark blue/black sections. */
.bg-dark,
.bg-black,
.bg-gray-900,
.bg-slate-900,
.bg-primary,
.bg-secondary,
.from-primary,
.to-primary,
.from-secondary,
.to-secondary,
.from-blue,
.to-blue,
.from-dark,
.to-dark,
.from-slate-900,
.to-slate-900,
.from-gray-900,
.to-gray-900 {
    color: #fff !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4,
.bg-gray-900 h1, .bg-gray-900 h2, .bg-gray-900 h3, .bg-gray-900 h4,
.bg-slate-900 h1, .bg-slate-900 h2, .bg-slate-900 h3, .bg-slate-900 h4,
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4,
.bg-secondary h1, .bg-secondary h2, .bg-secondary h3, .bg-secondary h4,
.from-primary h1, .from-primary h2, .from-primary h3, .from-primary h4,
.to-primary h1, .to-primary h2, .to-primary h3, .to-primary h4,
.from-secondary h1, .from-secondary h2, .from-secondary h3, .from-secondary h4,
.to-secondary h1, .to-secondary h2, .to-secondary h3, .to-secondary h4,
.from-blue h1, .from-blue h2, .from-blue h3, .from-blue h4,
.to-blue h1, .to-blue h2, .to-blue h3, .to-blue h4,
.from-dark h1, .from-dark h2, .from-dark h3, .from-dark h4,
.to-dark h1, .to-dark h2, .to-dark h3, .to-dark h4,
.from-slate-900 h1, .from-slate-900 h2, .from-slate-900 h3, .from-slate-900 h4,
.to-slate-900 h1, .to-slate-900 h2, .to-slate-900 h3, .to-slate-900 h4 {
    color: #fff !important;
}

.bg-dark p, .bg-dark li, .bg-dark span,
.bg-black p, .bg-black li, .bg-black span,
.bg-gray-900 p, .bg-gray-900 li, .bg-gray-900 span,
.bg-slate-900 p, .bg-slate-900 li, .bg-slate-900 span,
.bg-primary p, .bg-primary li, .bg-primary span,
.bg-secondary p, .bg-secondary li, .bg-secondary span,
.from-primary p, .from-primary li, .from-primary span,
.to-primary p, .to-primary li, .to-primary span,
.from-secondary p, .from-secondary li, .from-secondary span,
.to-secondary p, .to-secondary li, .to-secondary span,
.from-blue p, .from-blue li, .from-blue span,
.to-blue p, .to-blue li, .to-blue span,
.from-dark p, .from-dark li, .from-dark span,
.to-dark p, .to-dark li, .to-dark span,
.from-slate-900 p, .from-slate-900 li, .from-slate-900 span,
.to-slate-900 p, .to-slate-900 li, .to-slate-900 span {
    color: rgba(235, 244, 255, 0.92) !important;
}

.bg-dark a, .bg-dark i,
.bg-black a, .bg-black i,
.bg-gray-900 a, .bg-gray-900 i,
.bg-slate-900 a, .bg-slate-900 i,
.bg-primary a, .bg-primary i,
.bg-secondary a, .bg-secondary i,
.from-primary a, .from-primary i,
.to-primary a, .to-primary i,
.from-secondary a, .from-secondary i,
.to-secondary a, .to-secondary i,
.from-blue a, .from-blue i,
.to-blue a, .to-blue i,
.from-dark a, .from-dark i,
.to-dark a, .to-dark i,
.from-slate-900 a, .from-slate-900 i,
.to-slate-900 a, .to-slate-900 i {
    color: #fff !important;
}

.bg-dark .fa-times,
.bg-black .fa-times,
.bg-gray-900 .fa-times,
.bg-slate-900 .fa-times,
.bg-primary .fa-times,
.bg-secondary .fa-times,
.from-primary .fa-times,
.to-primary .fa-times,
.from-secondary .fa-times,
.to-secondary .fa-times,
.from-blue .fa-times,
.to-blue .fa-times,
.from-dark .fa-times,
.to-dark .fa-times,
.from-slate-900 .fa-times,
.to-slate-900 .fa-times {
    color: #bfeeff !important;
}

a.bg-primary,
a.bg-secondary,
a.bg-navy,
a.bg-blue,
button.bg-primary,
button.bg-secondary,
button.bg-navy,
button.bg-blue,
.bg-primary.text-white,
.bg-secondary.text-white,
.bg-navy.text-white,
.bg-blue.text-white {
    color: #fff !important;
}

.bg-dark .text-primary,
.bg-dark .text-blue,
.bg-black .text-primary,
.bg-black .text-blue,
.bg-gray-900 .text-primary,
.bg-gray-900 .text-blue,
.bg-slate-900 .text-primary,
.bg-slate-900 .text-blue,
.bg-primary .text-primary,
.bg-primary .text-blue,
.bg-secondary .text-primary,
.bg-secondary .text-blue,
.from-primary .text-primary,
.from-primary .text-blue,
.to-primary .text-primary,
.to-primary .text-blue,
.from-secondary .text-primary,
.from-secondary .text-blue,
.to-secondary .text-primary,
.to-secondary .text-blue,
.from-blue .text-primary,
.from-blue .text-blue,
.to-blue .text-primary,
.to-blue .text-blue {
    color: #bfeeff !important;
}

footer img[src*="logo-factoringwerkstatt"] {
    height: 4.2rem !important;
}

.fw-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.fw-hero-stats > div {
    min-width: 0;
}

.fw-hero-stats .w-10 {
    width: 2.35rem !important;
    height: 2.35rem !important;
}

.fw-hero-stats .text-lg {
    font-size: 1.05rem !important;
}

.fw-hero-stats .text-xs {
    white-space: nowrap;
}

.fw-trust-strip {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 0;
}

.fw-trust-strip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-width: 0;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.fw-trust-strip span + span::before {
    content: "";
    width: 0.22rem;
    height: 0.22rem;
    margin-right: 0.18rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.fw-trust-strip i {
    color: var(--fw-cyan);
    font-size: 0.72rem;
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    html,
    body {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    @supports (overflow: clip) {
        html,
        body {
            overflow-x: clip !important;
        }
    }

    body::before {
        inset: -16px;
        transform: none;
        animation: none;
    }

    header,
    nav,
    main,
    section,
    footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    @supports (overflow: clip) {
        header,
        nav,
        main,
        section,
        footer {
            overflow-x: clip;
        }
    }

    .max-w-7xl,
    .max-w-6xl,
    .max-w-5xl,
    .max-w-4xl,
    .max-w-3xl,
    .container {
        max-width: 100% !important;
    }

    h1,
    h2,
    h3,
    p,
    a,
    li,
    span,
    div {
        overflow-wrap: anywhere;
    }

    .fw-logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fw-logo-wall--marquee {
        display: flex;
    }

    .fw-logo-wall--marquee .fw-logo-tile {
        width: min(160px, 44vw);
        height: 108px;
        min-height: 108px;
        flex-basis: min(160px, 44vw);
    }

    .fw-branch-track > a,
    .fw-branch-track > div {
        width: min(190px, 76vw);
        flex-basis: min(190px, 76vw);
        min-height: 72px;
    }

    .fw-cashflow-visual,
    .fw-process-grid,
    .fw-video-feature-grid,
    .fw-problem-grid,
    .fw-escalation-panel,
    .fw-escalation-outcomes,
    .fw-positioning-compact {
        grid-template-columns: 1fr;
    }

    .fw-problem-visual {
        min-height: 7.4rem;
    }

    .fw-escalation-panel {
        padding: 1rem;
    }

    .fw-practice-proof {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .fw-escalation-copy {
        padding: 0.25rem;
    }

    .fw-pressure-chart {
        min-height: 18.5rem;
    }

    .fw-pressure-label {
        min-width: 6.7rem;
        padding: 0.52rem 0.58rem;
    }

    .fw-pressure-label strong {
        font-size: 0.68rem;
    }

    .fw-pressure-label--one {
        left: 4%;
        bottom: 8%;
    }

    .fw-pressure-label--two {
        left: 9%;
        bottom: 39%;
    }

    .fw-pressure-label--three {
        right: 9%;
        top: 28%;
    }

    .fw-pressure-label--four {
        right: 4%;
        top: 6%;
    }

    .fw-process-card {
        min-height: auto;
    }

    .fw-process-arrow {
        left: 50%;
        right: auto;
        top: auto;
        bottom: -0.9rem;
        transform: translateX(-50%) rotate(90deg);
    }

    .fw-compare-head,
    .fw-compare-row {
        grid-template-columns: 1fr;
    }

    .fw-compare-head > div + div,
    .fw-compare-row > div + div {
        border-left: 0;
        border-top: 1px solid var(--fw-line);
    }

    .fw-cashflow-copy {
        padding: 0.75rem;
    }

    .fw-cashflow-panel {
        min-height: 168px;
    }

    .fw-cashflow-line i {
        min-width: 3.8rem;
        font-size: 0.62rem;
    }

    .fw-match-visual {
        min-height: auto;
    }

    .fw-match-flow {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .fw-match-column {
        grid-template-columns: 1fr;
    }

    .fw-match-engine {
        min-height: 8.6rem;
    }

    .fw-match-engine::before,
    .fw-match-engine::after {
        display: none;
    }

    .fw-match-result p {
        font-size: 0.78rem;
    }

    .fw-social-compact {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .fw-social-actions {
        justify-content: stretch;
    }

    .fw-social-actions a {
        min-width: min(100%, 10rem);
        flex: 1 1 9rem;
    }

    .fw-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.75rem;
    }

    .fw-hero-stats .text-xs {
        white-space: normal;
    }

    .fw-trust-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .fw-trust-strip span {
        justify-content: flex-start;
        white-space: normal;
        padding: 0.45rem 0.55rem;
        border: 1px solid rgba(191, 238, 255, 0.16);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        font-size: 0.72rem;
    }

    .fw-trust-strip span + span::before {
        display: none;
    }

    .absolute.pointer-events-none[class*="translate-x-1/2"],
    .absolute.pointer-events-none[class*="-translate-x-1/2"],
    .absolute.pointer-events-none[class*="blur-2xl"],
    .absolute.pointer-events-none[class*="blur-3xl"] {
        display: none !important;
    }

    .absolute[class*="-right-"],
    .absolute[class*="-left-"] {
        max-width: calc(100vw - 2rem);
    }

    .cta-primary::after,
    a[href*="outlook.office.com"]::after,
    .fw-button-primary::after,
    button[type="submit"]::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before,
    .fade-in,
    .fade-in-delay,
    .fw-logo-wall--marquee,
    .fw-branch-track,
    .fw-social-track,
    .fw-cashflow-panel--fast::after,
    .fw-visual-path::after,
    .fw-match-engine-ring,
    .fw-match-visual::after,
    .fw-cashgap-line i,
    .fw-risk-radar__sweep,
    .fw-risk-radar__debtor--risk {
        animation: none !important;
    }

    .cta-primary::after,
    a[href*="outlook.office.com"]::after,
    .fw-button-primary::after,
    button[type="submit"]::after {
        display: none;
    }
}
