@font-face {
    font-family: "CF Inter";
    src: url("/fonts/inter/inter-var-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: "CF Sora";
    src: url("/fonts/sora/sora-var-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 100 800;
}

:root {
    --cf-navy-950: #061527;
    --cf-navy-900: #0a2038;
    --cf-navy-800: #0a315d;
    --cf-blue-700: #13569a;
    --cf-blue-600: #1768b5;
    --cf-blue-500: #2386cf;
    --cf-cyan-500: #22b8cf;
    --cf-cyan-100: #dff7fb;
    --cf-green-500: #33a882;
    --cf-green-100: #def5ed;
    --cf-ink: #0d2036;
    --cf-copy: #4d6075;
    --cf-muted: #728095;
    --cf-line: #dbe5ef;
    --cf-soft: #f3f7fb;
    --cf-white: #ffffff;
    --cf-shadow-sm: 0 14px 42px rgba(9, 35, 65, 0.08);
    --cf-shadow-lg: 0 34px 100px rgba(9, 35, 65, 0.16);
    --cf-radius-sm: 14px;
    --cf-radius-md: 22px;
    --cf-radius-lg: 30px;
    --cf-font-body: "CF Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --cf-font-heading: "CF Sora", "CF Inter", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: clip;
    color: var(--cf-ink);
    background: var(--cf-white);
    font-family: var(--cf-font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family: var(--cf-font-body);
}

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

a {
    color: var(--cf-blue-700);
}

#home,
#piattaforma,
#funzionalita,
#destinatari,
#come-funziona,
#contatti {
    scroll-margin-top: 88px;
}

.skip-link {
    position: fixed;
    z-index: 1100;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    color: var(--cf-white);
    background: var(--cf-navy-950);
    box-shadow: var(--cf-shadow-sm);
    font-weight: 750;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    color: var(--cf-white);
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(34, 184, 207, 0.75);
    outline-offset: 3px;
}

.cf-navbar {
    z-index: 1030;
    min-height: 78px;
    border-bottom: 1px solid rgba(10, 32, 56, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 28px rgba(9, 35, 65, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cf-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.cf-brand img {
    display: block;
    width: 202px;
    height: auto;
}

.cf-navbar .navbar-nav {
    gap: 2px;
}

.cf-navbar .nav-link {
    position: relative;
    padding: 10px 13px;
    color: #43566b;
    font-size: 0.92rem;
    font-weight: 680;
    transition: color 160ms ease;
}

.cf-navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 6px;
    left: 13px;
    height: 2px;
    border-radius: 999px;
    background: var(--cf-cyan-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.cf-navbar .nav-link:hover,
.cf-navbar .nav-link:focus-visible {
    color: var(--cf-navy-800);
}

.cf-navbar .nav-link:hover::after,
.cf-navbar .nav-link:focus-visible::after {
    transform: scaleX(1);
}

.cf-navbar-toggler {
    width: 46px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--cf-line);
    border-radius: 12px;
    background: var(--cf-white);
    box-shadow: none;
}

.cf-navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(34, 184, 207, 0.18);
}

.cf-menu-icon,
.cf-menu-icon::before,
.cf-menu-icon::after {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: var(--cf-navy-800);
}

.cf-menu-icon {
    position: relative;
    margin: 0 auto;
}

.cf-menu-icon::before,
.cf-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.cf-menu-icon::before {
    top: -7px;
}

.cf-menu-icon::after {
    top: 7px;
}

.cf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 19px;
    border-radius: 12px;
    font-weight: 760;
    line-height: 1.2;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.cf-btn:hover {
    transform: translateY(-2px);
}

.cf-btn svg,
.cf-text-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--cf-blue-700);
    --bs-btn-border-color: var(--cf-blue-700);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0f4b89;
    --bs-btn-hover-border-color: #0f4b89;
    --bs-btn-focus-shadow-rgb: 34, 184, 207;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0c4177;
    --bs-btn-active-border-color: #0c4177;
    box-shadow: 0 12px 28px rgba(19, 86, 154, 0.22);
}

.cf-btn-ghost {
    --bs-btn-color: var(--cf-navy-800);
    --bs-btn-bg: rgba(255, 255, 255, 0.8);
    --bs-btn-border-color: rgba(13, 32, 54, 0.16);
    --bs-btn-hover-color: var(--cf-navy-800);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: rgba(13, 32, 54, 0.3);
    --bs-btn-active-color: var(--cf-navy-800);
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: rgba(13, 32, 54, 0.3);
}

.cf-btn-lg {
    min-height: 56px;
    padding: 14px 23px;
    border-radius: 14px;
    font-size: 1rem;
}

.cf-hero {
    position: relative;
    display: flex;
    min-height: calc(100svh - 78px);
    padding: 78px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 14%, rgba(34, 184, 207, 0.16), transparent 31%),
        linear-gradient(145deg, #f9fcff 0%, #f1f7fc 56%, #edf7fa 100%);
    isolation: isolate;
}

.cf-hero > .container {
    display: flex;
    align-items: center;
}

.cf-hero-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image:
        linear-gradient(rgba(19, 86, 154, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 86, 154, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 88%);
}

.cf-hero-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.cf-hero-glow-one {
    top: -180px;
    right: -90px;
    width: 520px;
    height: 520px;
    background: rgba(34, 184, 207, 0.11);
}

.cf-hero-glow-two {
    bottom: -280px;
    left: 18%;
    width: 580px;
    height: 580px;
    background: rgba(19, 86, 154, 0.08);
}

.cf-eyebrow,
.cf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cf-blue-700);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cf-eyebrow {
    padding: 9px 13px;
    border: 1px solid rgba(19, 86, 154, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 24px rgba(9, 35, 65, 0.05);
}

.cf-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cf-green-500);
    box-shadow: 0 0 0 5px rgba(51, 168, 130, 0.12);
}

.cf-hero-title,
.cf-section-heading h2,
.cf-section-title,
.cf-process-section .cf-section-heading h2,
.cf-cta-panel h2 {
    margin: 0;
    color: var(--cf-ink);
    font-family: var(--cf-font-heading);
    font-weight: 760;
    letter-spacing: -0.045em;
}

.cf-hero-title {
    max-width: 720px;
    margin-top: 23px;
    font-size: clamp(3.1rem, 5.25vw, 5.45rem);
    line-height: 0.98;
}

.cf-hero-title span {
    display: block;
    color: var(--cf-blue-600);
}

.cf-hero-lead {
    max-width: 655px;
    margin: 27px 0 0;
    color: var(--cf-copy);
    font-size: clamp(1.06rem, 1.35vw, 1.23rem);
    line-height: 1.7;
}

.cf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 33px;
}

.cf-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 21px;
    margin: 27px 0 0;
    padding: 0;
    color: #506277;
    font-size: 0.88rem;
    font-weight: 630;
    list-style: none;
}

.cf-hero-checks li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.cf-hero-checks svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    border-radius: 50%;
    fill: none;
    stroke: var(--cf-green-500);
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    background: var(--cf-green-100);
}

.cf-product-stage {
    position: relative;
    width: calc(100% + 8px);
    margin-left: 0;
    padding: 56px 0 46px;
}

.cf-product-stage::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 2px;
    right: -44px;
    bottom: 0;
    left: 35px;
    border-radius: 48% 52% 43% 57% / 48% 38% 62% 52%;
    background: linear-gradient(145deg, rgba(19, 86, 154, 0.15), rgba(34, 184, 207, 0.12));
}

.cf-product-window {
    overflow: hidden;
    border: 1px solid rgba(9, 35, 65, 0.12);
    border-radius: 22px;
    background: var(--cf-white);
    box-shadow: var(--cf-shadow-lg);
    transform: perspective(1800px) rotateY(-3deg) rotateX(1deg);
    transform-origin: center;
}

.cf-window-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    min-height: 49px;
    padding: 9px 14px;
    border-bottom: 1px solid var(--cf-line);
    background: #f8fafc;
}

.cf-window-dots {
    display: flex;
    gap: 5px;
}

.cf-window-dots span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d4df;
}

.cf-window-dots span:first-child {
    background: #ff8e89;
}

.cf-window-dots span:nth-child(2) {
    background: #f1c565;
}

.cf-window-dots span:last-child {
    background: #6dcda8;
}

.cf-window-address {
    min-width: 0;
    padding: 6px 12px;
    overflow: hidden;
    border: 1px solid #e2e9f0;
    border-radius: 8px;
    color: var(--cf-muted);
    background: var(--cf-white);
    font-size: 0.69rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-window-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #4e6377;
    font-size: 0.64rem;
    font-weight: 700;
}

.cf-window-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cf-green-500);
}

.cf-window-screen {
    padding: 8px;
    background: #eef4f9;
}

.cf-window-screen img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.cf-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 220px;
    padding: 13px 15px;
    border: 1px solid rgba(9, 35, 65, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(9, 35, 65, 0.16);
    backdrop-filter: blur(14px);
}

.cf-float-card-top {
    top: 12px;
    right: -2px;
}

.cf-float-card-bottom {
    bottom: 3px;
    left: -38px;
}

.cf-float-icon {
    display: inline-flex;
    flex: 0 0 41px;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 12px;
}

.cf-float-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-float-icon-cyan {
    color: #0e8da4;
    background: var(--cf-cyan-100);
}

.cf-float-icon-green {
    color: #258767;
    background: var(--cf-green-100);
}

.cf-float-card small,
.cf-float-card strong {
    display: block;
}

.cf-float-card small {
    margin-bottom: 2px;
    color: var(--cf-muted);
    font-size: 0.66rem;
    font-weight: 650;
}

.cf-float-card strong {
    color: var(--cf-ink);
    font-size: 0.78rem;
    line-height: 1.25;
}

.cf-outcomes {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(13, 32, 54, 0.07);
    border-bottom: 1px solid var(--cf-line);
    background: var(--cf-white);
}

.cf-outcome {
    min-height: 114px;
    padding: 28px 27px;
    border-right: 1px solid var(--cf-line);
}

.cf-outcomes [class*="col-"]:last-child .cf-outcome {
    border-right: 0;
}

.cf-outcome strong,
.cf-outcome span {
    display: block;
}

.cf-outcome strong {
    margin-bottom: 6px;
    color: var(--cf-ink);
    font-family: var(--cf-font-heading);
    font-size: 1rem;
    font-weight: 720;
}

.cf-outcome span {
    color: var(--cf-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cf-section {
    padding: 112px 0;
}

.cf-section-soft {
    background: var(--cf-soft);
}

.cf-section-heading {
    max-width: 790px;
}

.cf-section-heading h2,
.cf-section-title {
    margin-top: 15px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
}

.cf-section-heading p,
.cf-section-intro {
    color: var(--cf-copy);
    font-size: 1.05rem;
    line-height: 1.75;
}

.cf-section-heading p {
    max-width: 680px;
    margin: 22px auto 0;
}

.cf-product-section {
    overflow: hidden;
}

.cf-product-tabs {
    width: fit-content;
    max-width: 100%;
    margin: 46px auto 28px;
    padding: 6px;
    border: 1px solid var(--cf-line);
    border-radius: 16px;
    background: var(--cf-soft);
}

.cf-product-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 11px;
    color: var(--cf-copy);
    font-size: 0.88rem;
    font-weight: 720;
}

.cf-product-tabs .nav-link span {
    color: var(--cf-muted);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.cf-product-tabs .nav-link.active {
    color: var(--cf-navy-800);
    background: var(--cf-white);
    box-shadow: 0 8px 24px rgba(9, 35, 65, 0.08);
}

.cf-product-tab-content {
    padding: 26px;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius-lg);
    background: linear-gradient(135deg, #f3f7fb, #eef6f9);
}

.cf-screen-frame {
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(9, 35, 65, 0.12);
    border-radius: 19px;
    background: var(--cf-white);
    box-shadow: 0 24px 70px rgba(9, 35, 65, 0.12);
}

.cf-screen-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.cf-tab-copy {
    padding: 20px 13px 20px 23px;
}

.cf-tab-number {
    color: var(--cf-cyan-500);
    font-family: var(--cf-font-heading);
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.08em;
}

.cf-tab-copy h3 {
    margin: 14px 0 15px;
    color: var(--cf-ink);
    font-family: var(--cf-font-heading);
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    font-weight: 720;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.cf-tab-copy p {
    color: var(--cf-copy);
    line-height: 1.7;
}

.cf-clean-list {
    display: grid;
    gap: 12px;
    margin: 23px 0 0;
    padding: 0;
    color: #40536a;
    font-size: 0.91rem;
    font-weight: 620;
    list-style: none;
}

.cf-clean-list li {
    position: relative;
    padding-left: 25px;
}

.cf-clean-list li::before {
    content: "";
    position: absolute;
    top: 0.42em;
    left: 2px;
    width: 10px;
    height: 6px;
    border-bottom: 2px solid var(--cf-green-500);
    border-left: 2px solid var(--cf-green-500);
    transform: rotate(-45deg);
}

.cf-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.cf-bento-card {
    grid-column: span 4;
    min-height: 255px;
    padding: 27px;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius-md);
    background: var(--cf-white);
    box-shadow: 0 12px 38px rgba(9, 35, 65, 0.045);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.cf-bento-card:hover {
    border-color: rgba(19, 86, 154, 0.24);
    box-shadow: var(--cf-shadow-sm);
    transform: translateY(-4px);
}

.cf-bento-card h3 {
    margin: 24px 0 10px;
    color: var(--cf-ink);
    font-family: var(--cf-font-heading);
    font-size: 1.25rem;
    font-weight: 720;
    letter-spacing: -0.025em;
}

.cf-bento-card p {
    margin: 0;
    color: var(--cf-copy);
    font-size: 0.94rem;
    line-height: 1.7;
}

.cf-bento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(19, 86, 154, 0.1);
    border-radius: 14px;
    color: var(--cf-blue-700);
    background: #eaf3fb;
}

.cf-bento-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-bento-primary {
    position: relative;
    display: grid;
    grid-column: span 8;
    grid-template-columns: minmax(0, 1fr) 205px;
    align-items: center;
    min-height: 310px;
    overflow: hidden;
    color: var(--cf-white);
    border-color: transparent;
    background:
        radial-gradient(circle at 85% 15%, rgba(34, 184, 207, 0.35), transparent 35%),
        linear-gradient(135deg, var(--cf-navy-800), var(--cf-blue-700));
    box-shadow: 0 24px 64px rgba(10, 49, 93, 0.18);
}

.cf-bento-primary:hover {
    border-color: transparent;
    box-shadow: 0 30px 72px rgba(10, 49, 93, 0.22);
}

.cf-bento-primary .cf-bento-icon {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--cf-white);
    background: rgba(255, 255, 255, 0.12);
}

.cf-bento-primary h3 {
    max-width: 510px;
    margin: 13px 0;
    color: var(--cf-white);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.cf-bento-primary p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.74);
}

.cf-card-kicker {
    display: block;
    margin-top: 21px;
    color: #80deed;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cf-brand-preview {
    position: relative;
    width: 180px;
    height: 205px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    transform: rotate(4deg);
    backdrop-filter: blur(10px);
}

.cf-brand-preview::before,
.cf-brand-preview::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.cf-brand-preview::before {
    right: 23px;
    bottom: 25px;
    width: 54px;
    height: 54px;
    background: rgba(34, 184, 207, 0.26);
}

.cf-brand-preview::after {
    right: 48px;
    bottom: 50px;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cf-brand-preview-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 27px;
}

.cf-brand-preview-mark img {
    display: block;
    width: 100%;
}

.cf-brand-preview-line {
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 10px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.55);
}

.cf-brand-preview-line-short {
    width: 63%;
    background: rgba(255, 255, 255, 0.26);
}

.cf-bento-wide {
    display: grid;
    grid-column: span 8;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    min-height: 190px;
}

.cf-bento-wide h3 {
    margin-top: 0;
}

.cf-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.cf-audience-card {
    min-height: 210px;
    padding: 25px;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius-md);
    background: var(--cf-white);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.cf-audience-card:nth-child(2),
.cf-audience-card:nth-child(3) {
    background: var(--cf-soft);
}

.cf-audience-card:hover {
    border-color: rgba(34, 184, 207, 0.45);
    transform: translateY(-3px);
}

.cf-audience-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--cf-blue-700);
    background: #eaf3fb;
    font-size: 0.7rem;
    font-weight: 800;
}

.cf-audience-card h3 {
    margin: 27px 0 10px;
    font-family: var(--cf-font-heading);
    font-size: 1.1rem;
    font-weight: 720;
    letter-spacing: -0.02em;
}

.cf-audience-card p {
    margin: 0;
    color: var(--cf-copy);
    font-size: 0.9rem;
    line-height: 1.65;
}

.cf-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--cf-blue-700);
    font-weight: 760;
    text-decoration: none;
}

.cf-text-link:hover {
    color: var(--cf-navy-800);
}

.cf-process-section {
    position: relative;
    overflow: hidden;
    color: var(--cf-white);
    background:
        radial-gradient(circle at 15% 0, rgba(34, 184, 207, 0.23), transparent 28%),
        radial-gradient(circle at 92% 100%, rgba(23, 104, 181, 0.28), transparent 32%),
        var(--cf-navy-950);
}

.cf-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
}

.cf-process-section .container {
    position: relative;
}

.cf-section-label-light {
    color: #79ddec;
}

.cf-process-section .cf-section-heading h2,
.cf-cta-panel h2 {
    color: var(--cf-white);
}

.cf-process-section .cf-section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.cf-process-row {
    position: relative;
    margin-top: 55px;
}

.cf-process-row::before {
    content: "";
    position: absolute;
    top: 56px;
    right: 16.67%;
    left: 16.67%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(121, 221, 236, 0.45), transparent);
}

.cf-process-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--cf-radius-md);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.cf-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: 1px solid rgba(121, 221, 236, 0.32);
    border-radius: 50%;
    color: #8fe5f1;
    background: var(--cf-navy-900);
    font-family: var(--cf-font-heading);
    font-size: 0.78rem;
    font-weight: 750;
}

.cf-process-card h3 {
    margin: 34px 0 11px;
    color: var(--cf-white);
    font-family: var(--cf-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.cf-process-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.cf-assurance-section {
    overflow: hidden;
}

.cf-assurance-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.cf-assurance-ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 390px;
    max-width: 86vw;
    aspect-ratio: 1;
    border: 1px solid rgba(19, 86, 154, 0.16);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(34, 184, 207, 0.1), transparent 58%),
        var(--cf-soft);
    box-shadow:
        inset 0 0 0 56px rgba(255, 255, 255, 0.58),
        0 28px 80px rgba(9, 35, 65, 0.1);
}

.cf-assurance-ring::before,
.cf-assurance-ring::after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(19, 86, 154, 0.15);
    border-radius: 50%;
}

.cf-assurance-ring::before {
    inset: 54px;
}

.cf-assurance-ring::after {
    inset: 112px;
}

.cf-assurance-core {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(19, 86, 154, 0.11);
    border-radius: 31px;
    background: var(--cf-white);
    box-shadow: 0 22px 55px rgba(9, 35, 65, 0.14);
}

.cf-assurance-core img {
    width: 58px;
}

.cf-orbit-item {
    position: absolute;
    z-index: 3;
    padding: 9px 13px;
    border: 1px solid var(--cf-line);
    border-radius: 999px;
    color: var(--cf-navy-800);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--cf-shadow-sm);
    font-size: 0.76rem;
    font-weight: 730;
}

.cf-orbit-one {
    top: 9%;
    left: 18%;
}

.cf-orbit-two {
    top: 22%;
    right: -1%;
}

.cf-orbit-three {
    bottom: 17%;
    left: 2%;
}

.cf-orbit-four {
    right: 9%;
    bottom: 4%;
}

.cf-assurance-list {
    display: grid;
    gap: 17px;
    margin-top: 31px;
}

.cf-assurance-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--cf-copy);
    line-height: 1.55;
}

.cf-assurance-list svg {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    padding: 5px;
    border-radius: 50%;
    fill: none;
    stroke: var(--cf-green-500);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    background: var(--cf-green-100);
}

.cf-assurance-list strong {
    color: var(--cf-ink);
}

.cf-cta-section {
    padding: 0 0 112px;
}

.cf-cta-panel {
    position: relative;
    padding: 66px;
    overflow: hidden;
    border-radius: 34px;
    color: var(--cf-white);
    background:
        linear-gradient(125deg, rgba(6, 21, 39, 0.98), rgba(10, 49, 93, 0.95)),
        var(--cf-navy-950);
    box-shadow: 0 36px 90px rgba(6, 21, 39, 0.2);
}

.cf-cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
}

.cf-cta-glow {
    position: absolute;
    top: -230px;
    right: -100px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(34, 184, 207, 0.22);
    filter: blur(4px);
}

.cf-cta-panel h2 {
    max-width: 730px;
    margin-top: 16px;
    font-size: clamp(2.35rem, 4.1vw, 4.25rem);
    line-height: 1.06;
}

.cf-cta-panel .col-lg-7 > p {
    max-width: 690px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.04rem;
    line-height: 1.75;
}

.cf-contact-card {
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--cf-radius-md);
    color: var(--cf-ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.16);
}

.cf-contact-kicker {
    color: var(--cf-blue-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cf-contact-card h3 {
    margin: 9px 0 10px;
    font-family: var(--cf-font-heading);
    font-size: 1.55rem;
    font-weight: 730;
}

.cf-contact-card p {
    margin-bottom: 21px;
    color: var(--cf-copy);
    font-size: 0.91rem;
    line-height: 1.65;
}

.cf-demo-form {
    display: grid;
    gap: 14px;
}

.cf-demo-form label {
    display: block;
    margin-bottom: 6px;
    color: #344a61;
    font-size: 0.76rem;
    font-weight: 730;
}

.cf-demo-form label span {
    color: var(--cf-muted);
    font-size: 0.68rem;
    font-weight: 550;
}

.cf-demo-form .form-control,
.cf-demo-form .form-select {
    min-height: 45px;
    border-color: #cfdae5;
    border-radius: 10px;
    color: var(--cf-ink);
    background-color: #fbfdff;
    font-size: 0.88rem;
    box-shadow: none;
}

.cf-demo-form textarea.form-control {
    min-height: 88px;
    resize: vertical;
}

.cf-demo-form .form-control:focus,
.cf-demo-form .form-select:focus {
    border-color: var(--cf-cyan-500);
    background-color: var(--cf-white);
    box-shadow: 0 0 0 4px rgba(34, 184, 207, 0.12);
}

.cf-demo-form .form-control.is-invalid,
.cf-demo-form .form-select.is-invalid,
.cf-demo-form .form-check-input.is-invalid {
    border-color: #c83e4d;
}

.cf-demo-form .invalid-feedback {
    color: #a52f3c;
    font-size: 0.72rem;
}

.cf-consent {
    min-height: 0;
    margin: 1px 0 2px;
    padding-left: 1.65rem;
}

.cf-consent .form-check-input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.15rem;
    border-color: #b9c8d6;
}

.cf-consent .form-check-input:checked {
    border-color: var(--cf-blue-700);
    background-color: var(--cf-blue-700);
}

.cf-consent .form-check-label {
    margin: 0;
    color: var(--cf-copy);
    font-size: 0.73rem;
    font-weight: 560;
    line-height: 1.45;
}

.cf-form-alert {
    margin: 0 0 17px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.79rem;
    line-height: 1.5;
}

.cf-form-alert-success {
    border-color: rgba(51, 168, 130, 0.22);
    color: #166248;
    background: var(--cf-green-100);
}

.cf-form-alert-error {
    border-color: rgba(200, 62, 77, 0.18);
    color: #8c2732;
    background: #fdecef;
}

.cf-contact-card .cf-btn {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-contact-alternative {
    margin-top: 16px;
    color: var(--cf-muted);
    font-size: 0.72rem;
    line-height: 1.55;
    text-align: center;
}

.cf-contact-alternative a {
    color: var(--cf-blue-700);
    font-weight: 680;
    text-decoration: none;
}

.cf-contact-alternative a:hover {
    color: var(--cf-navy-800);
    text-decoration: underline;
}

.cf-phone-link {
    display: block;
    margin-top: 14px;
    color: var(--cf-blue-700);
    font-size: 0.88rem;
    font-weight: 720;
    text-align: center;
    text-decoration: none;
}

.cf-phone-link:hover {
    color: var(--cf-navy-800);
    text-decoration: underline;
}

.cf-contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid var(--cf-line);
    color: var(--cf-muted);
    font-size: 0.78rem;
}

.cf-contact-note svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--cf-green-500);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-faq-section {
    padding-top: 0;
}

.cf-faq {
    display: grid;
    gap: 12px;
}

.cf-faq .accordion-item {
    overflow: hidden;
    border: 1px solid var(--cf-line);
    border-radius: 15px;
    background: var(--cf-white);
}

.cf-faq .accordion-button {
    padding: 20px 22px;
    color: var(--cf-ink);
    background: var(--cf-white);
    box-shadow: none;
    font-family: var(--cf-font-heading);
    font-size: 0.98rem;
    font-weight: 680;
    line-height: 1.45;
}

.cf-faq .accordion-button:not(.collapsed) {
    color: var(--cf-blue-700);
    background: #f7fafc;
}

.cf-faq .accordion-button::after {
    width: 19px;
    height: 19px;
    border: 1px solid var(--cf-line);
    border-radius: 50%;
    background-position: center;
    background-size: 11px;
}

.cf-faq .accordion-body {
    padding: 0 22px 22px;
    color: var(--cf-copy);
    line-height: 1.72;
}

.cf-footer {
    padding: 70px 0 28px;
    color: rgba(255, 255, 255, 0.68);
    background: var(--cf-navy-950);
}

.cf-footer-brand {
    display: inline-flex;
}

.cf-footer-brand img {
    display: block;
    width: 218px;
    height: auto;
}

.cf-footer .col-lg-5 > p {
    max-width: 410px;
    margin: 21px 0 0;
    line-height: 1.7;
}

.cf-footer h2 {
    margin: 0 0 17px;
    color: var(--cf-white);
    font-family: var(--cf-font-heading);
    font-size: 0.84rem;
    font-weight: 720;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cf-footer ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cf-footer a {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
    text-decoration: none;
}

.cf-footer a:hover,
.cf-footer a:focus-visible {
    color: var(--cf-white);
}

.cf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 58px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
}

@media (max-width: 1199.98px) {
    .cf-hero {
        min-height: auto;
    }

    .cf-product-stage {
        width: 100%;
    }

    .cf-float-card-top {
        right: -4px;
    }

    .cf-bento-primary {
        grid-template-columns: minmax(0, 1fr) 165px;
    }

    .cf-brand-preview {
        width: 150px;
        height: 190px;
    }
}

@media (max-width: 991.98px) {
    .cf-navbar {
        min-height: 72px;
    }

    .cf-navbar .navbar-collapse {
        margin: 13px -12px -8px;
        padding: 10px 12px 18px;
        border-top: 1px solid var(--cf-line);
        background: rgba(255, 255, 255, 0.98);
    }

    .cf-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 3px;
    }

    .cf-navbar .nav-link {
        padding: 11px 10px;
    }

    .cf-navbar .nav-link::after {
        display: none;
    }

    .cf-navbar .cf-btn {
        width: 100%;
        margin-top: 6px;
    }

    .cf-hero {
        padding: 68px 0 76px;
    }

    .cf-hero-title {
        max-width: 800px;
        font-size: clamp(3.25rem, 8vw, 5rem);
    }

    .cf-hero-lead {
        max-width: 750px;
    }

    .cf-product-stage {
        width: min(820px, 100%);
        margin: 6px auto 0;
        padding-right: 35px;
        padding-left: 35px;
    }

    .cf-product-stage::before {
        right: 3px;
        left: 60px;
    }

    .cf-float-card-top {
        right: 0;
    }

    .cf-float-card-bottom {
        left: 0;
    }

    .cf-outcome {
        border-bottom: 1px solid var(--cf-line);
    }

    .cf-outcomes [class*="col-"]:nth-child(2) .cf-outcome {
        border-right: 0;
    }

    .cf-outcomes [class*="col-"]:nth-child(n+3) .cf-outcome {
        border-bottom: 0;
    }

    .cf-section {
        padding: 88px 0;
    }

    .cf-product-tab-content {
        padding: 20px;
    }

    .cf-tab-copy {
        padding: 13px 4px 6px;
    }

    .cf-bento-card,
    .cf-bento-primary,
    .cf-bento-wide {
        grid-column: span 6;
    }

    .cf-bento-primary {
        display: block;
    }

    .cf-brand-preview {
        display: none;
    }

    .cf-bento-wide {
        display: block;
        min-height: 255px;
    }

    .cf-bento-wide h3 {
        margin-top: 24px;
    }

    .cf-assurance-visual {
        min-height: 430px;
    }

    .cf-cta-section {
        padding-bottom: 88px;
    }

    .cf-cta-panel {
        padding: 48px;
    }

    .cf-faq-section {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .cf-brand img {
        width: 180px;
    }

    .cf-hero {
        padding: 54px 0 64px;
    }

    .cf-hero-title {
        font-size: clamp(2.7rem, 12.5vw, 4.25rem);
    }

    .cf-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cf-hero-actions .cf-btn {
        width: 100%;
    }

    .cf-hero-checks {
        display: none;
    }

    .cf-product-stage {
        padding: 26px 0 34px;
    }

    .cf-product-stage::before {
        inset: 0 10px 4px 26px;
    }

    .cf-product-window {
        border-radius: 16px;
        transform: none;
    }

    .cf-window-bar {
        grid-template-columns: auto 1fr;
    }

    .cf-window-status {
        display: none;
    }

    .cf-float-card {
        display: none;
    }

    .cf-outcome {
        min-height: 124px;
        padding: 24px 17px;
    }

    .cf-section {
        padding: 74px 0;
    }

    .cf-section-heading h2,
    .cf-section-title {
        font-size: clamp(2rem, 9.5vw, 3.15rem);
    }

    .cf-product-tabs {
        display: grid;
        width: 100%;
        border-radius: 15px;
    }

    .cf-product-tabs .nav-item {
        width: 100%;
    }

    .cf-product-tabs .nav-link {
        justify-content: flex-start;
        width: 100%;
    }

    .cf-product-tab-content {
        padding: 12px;
        border-radius: 20px;
    }

    .cf-screen-frame {
        padding: 5px;
        border-radius: 13px;
    }

    .cf-tab-copy {
        padding: 10px 5px 7px;
    }

    .cf-bento-grid {
        grid-template-columns: 1fr;
    }

    .cf-bento-card,
    .cf-bento-primary,
    .cf-bento-wide {
        grid-column: auto;
    }

    .cf-bento-primary {
        min-height: 320px;
    }

    .cf-audience-grid {
        grid-template-columns: 1fr;
    }

    .cf-audience-card,
    .cf-audience-card:nth-child(2),
    .cf-audience-card:nth-child(3) {
        min-height: 0;
        background: var(--cf-white);
    }

    .cf-process-row::before {
        display: none;
    }

    .cf-process-card {
        min-height: 0;
    }

    .cf-assurance-visual {
        min-height: 365px;
    }

    .cf-assurance-ring {
        width: 320px;
        box-shadow:
            inset 0 0 0 42px rgba(255, 255, 255, 0.58),
            0 24px 65px rgba(9, 35, 65, 0.1);
    }

    .cf-assurance-ring::before {
        inset: 45px;
    }

    .cf-assurance-ring::after {
        inset: 95px;
    }

    .cf-orbit-item {
        font-size: 0.68rem;
    }

    .cf-cta-section {
        padding-bottom: 74px;
    }

    .cf-cta-panel {
        margin: 0 -1px;
        padding: 37px 22px 22px;
        border-radius: 25px;
    }

    .cf-cta-panel h2 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .cf-contact-card {
        padding: 23px;
    }

    .cf-faq-section {
        padding-top: 0;
    }

    .cf-footer {
        padding-top: 58px;
    }

    .cf-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 42px;
    }
}

@media (max-width: 419.98px) {
    .cf-brand img {
        width: 162px;
    }

    .cf-navbar-toggler {
        width: 43px;
        height: 41px;
    }

    .cf-eyebrow {
        align-items: flex-start;
        border-radius: 14px;
        line-height: 1.45;
    }

    .cf-hero-title {
        font-size: clamp(2.5rem, 12.2vw, 3.1rem);
    }

    .cf-hero-lead {
        font-size: 1rem;
    }

    .cf-outcome strong {
        font-size: 0.93rem;
    }

    .cf-outcome span {
        font-size: 0.78rem;
    }

    .cf-assurance-ring {
        width: 278px;
    }

    .cf-assurance-core {
        width: 92px;
        height: 92px;
        border-radius: 26px;
    }

    .cf-assurance-core img {
        width: 49px;
    }

    .cf-orbit-two {
        right: -5%;
    }

    .cf-orbit-three {
        left: -4%;
    }

    .cf-contact-card .cf-btn {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 0.88rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
