:root {
    --bg: #080b24;
    --card: #10163a;
    --purple: #24164a;
    --orange: #ff7a00;
    --orange-light: #ff9a3d;
    --white: #fff;
    --text: #d9ddf2;
    --muted: #9ea6c7;
    --glow: #625bff;
    --border: rgba(255, 255, 255, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(
        135deg,
        #080b24 0%,
        #17113c 50%,
        #28134a 100%
    );
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.zfin-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.zfin-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.zfin-grid {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image:
        linear-gradient(rgba(98,91,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(98,91,255,.04) 1px, transparent 1px);
    background-size: 68px 68px;
}

.zfin-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.zfin-orb-one {
    width: 720px;
    height: 720px;
    top: -220px;
    left: -150px;
    background: radial-gradient(
        circle,
        rgba(98,91,255,.22),
        transparent 67%
    );
    animation: orb-one 15s ease-in-out infinite;
}

.zfin-orb-two {
    width: 620px;
    height: 620px;
    top: 18%;
    right: -180px;
    background: radial-gradient(
        circle,
        rgba(255,122,0,.13),
        transparent 68%
    );
    animation: orb-two 19s ease-in-out infinite;
}

.zfin-orb-three {
    width: 560px;
    height: 560px;
    bottom: -220px;
    left: 35%;
    background: radial-gradient(
        circle,
        rgba(98,91,255,.18),
        transparent 68%
    );
}

.zfin-page,
.zfin-header {
    position: relative;
    z-index: 2;
}

.zfin-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(8,11,36,.68);
    backdrop-filter: blur(20px);
}

.zfin-header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zfin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 21px;
    font-weight: 750;
    text-decoration: none;
}

.zfin-logo strong {
    color: var(--orange);
}

.zfin-logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--glow));
    box-shadow: 0 8px 24px rgba(255,122,0,.3);
}

.zfin-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
}

.zfin-navigation a,
.zfin-login-link {
    position: relative;
    color: var(--muted);
    font-size: 14px;
    font-weight: 550;
    text-decoration: none;
    transition: color .2s ease;
}

.zfin-navigation a:hover,
.zfin-login-link:hover {
    color: var(--white);
}

.zfin-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.zfin-navigation a:hover::after {
    transform: scaleX(1);
}

.zfin-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.zfin-header-cta {
    padding: 11px 19px;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
    );
    color: var(--white);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(255,122,0,.24);
}

.zfin-mobile-menu {
    display: none;
}

.zfin-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 118px 0 64px;
}

.zfin-hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.zfin-hero-content {
    animation: rise .7s ease both;
}

.zfin-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 15px;
    border: 1px solid rgba(255,122,0,.3);
    border-radius: 999px;
    background: rgba(255,122,0,.1);
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 700;
}

.zfin-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px var(--orange);
}

h1 {
    margin: 0;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -.048em;
}

h1 span {
    display: block;
    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
    );
    -webkit-background-clip: text;
    color: transparent;
}

.zfin-lead {
    max-width: 560px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.zfin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.zfin-button {
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 740;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.zfin-button:hover {
    transform: translateY(-2px);
}

.zfin-button-primary {
    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
    );
    box-shadow: 0 10px 32px rgba(255,122,0,.3);
    animation: pulse 2.8s ease-in-out infinite;
}

.zfin-button-secondary {
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(12px);
}

.zfin-play {
    font-size: 11px;
}

.zfin-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 12px;
}

.zfin-benefits span::first-letter {
    color: var(--orange);
}

.zfin-visual {
    position: relative;
    min-width: 0;
    padding: 58px 20px;
}

.zfin-dashboard-glow {
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    background: rgba(98,91,255,.25);
    filter: blur(70px);
}

.zfin-dashboard {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border: 1px solid rgba(98,91,255,.22);
    border-radius: 18px;
    background: var(--card);
    box-shadow: 0 32px 100px rgba(0,0,0,.6);
    animation: dashboard-float 5.5s ease-in-out infinite;
}

.zfin-window-bar {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.025);
}

.zfin-window-dots {
    display: flex;
    gap: 6px;
}

.zfin-window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.zfin-window-dots span:nth-child(1) { background: #ff5f57; }
.zfin-window-dots span:nth-child(2) { background: #febc2e; }
.zfin-window-dots span:nth-child(3) { background: #28c840; }

.zfin-window-address {
    flex: 1;
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: auto;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: rgba(255,255,255,.035);
    color: var(--muted);
    font-size: 9px;
}

.zfin-window-address span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glow);
}

.zfin-window-user {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--glow), var(--orange));
}

.zfin-dashboard-body {
    min-height: 392px;
    display: flex;
}

.zfin-dashboard-sidebar {
    width: 52px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px 7px;
    border-right: 1px solid var(--border);
    background: rgba(255,255,255,.018);
}

.zfin-dashboard-sidebar span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--muted);
    font-size: 14px;
}

.zfin-dashboard-sidebar .active {
    border: 1px solid rgba(255,122,0,.26);
    background: rgba(255,122,0,.12);
    color: var(--orange);
}

.zfin-dashboard-content {
    flex: 1;
    min-width: 0;
    padding: 15px;
}

.zfin-dashboard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.zfin-dashboard-title span {
    display: flex;
    flex-direction: column;
}

.zfin-dashboard-title small {
    color: var(--muted);
    font-size: 8px;
}

.zfin-dashboard-title strong {
    margin-top: 2px;
    font-size: 13px;
}

.zfin-dashboard-title button {
    border: 0;
    border-radius: 7px;
    padding: 7px 9px;
    background: var(--orange);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
}

.zfin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.zfin-stat-grid article {
    padding: 9px 8px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255,255,255,.035);
}

.zfin-stat-grid small,
.zfin-stat-grid strong,
.zfin-stat-grid em {
    display: block;
}

.zfin-stat-grid small {
    color: var(--muted);
    font-size: 7px;
}

.zfin-stat-grid strong {
    margin: 3px 0;
    font-size: 14px;
}

.zfin-stat-grid em {
    color: #22c55e;
    font-size: 7px;
    font-style: normal;
}

.zfin-dashboard-panels {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 9px;
    margin-top: 10px;
}

.zfin-chart-panel,
.zfin-activity-panel,
.zfin-pipeline {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255,255,255,.028);
}

.zfin-chart-panel > strong,
.zfin-activity-panel > strong,
.zfin-pipeline > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 8px;
}

.zfin-chart {
    height: 75px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.zfin-chart span {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: rgba(98,91,255,.45);
}

.zfin-chart span:last-child {
    background: linear-gradient(to top, var(--orange), var(--orange-light));
}

.zfin-months {
    display: flex;
    gap: 6px;
    margin-top: 5px;
}

.zfin-months span {
    flex: 1;
    color: var(--muted);
    font-size: 6px;
    text-align: center;
}

.zfin-activity-panel p {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 7px;
}

.zfin-activity-panel p:last-child {
    border-bottom: 0;
}

.zfin-activity-panel i {
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--orange);
}

.zfin-pipeline {
    margin-top: 10px;
}

.zfin-pipeline > div {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-top: 1px solid var(--border);
}

.zfin-pipeline span,
.zfin-pipeline b,
.zfin-pipeline small {
    display: block;
}

.zfin-pipeline b {
    font-size: 8px;
}

.zfin-pipeline small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 7px;
}

.zfin-pipeline em {
    align-self: center;
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(255,122,0,.12);
    color: var(--orange-light);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.zfin-floating-card {
    position: absolute;
    z-index: 8;
    min-width: 145px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 13px;
    background: rgba(16,22,58,.92);
    box-shadow: 0 12px 34px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
}

.zfin-floating-card strong,
.zfin-floating-card small {
    display: block;
}

.zfin-floating-card strong {
    font-size: 10px;
}

.zfin-floating-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 8px;
}

.zfin-floating-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,122,0,.14);
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
}

.zfin-icon-green {
    background: rgba(34,197,94,.14);
    color: #22c55e;
}

.zfin-icon-purple {
    background: rgba(98,91,255,.15);
    color: var(--glow);
}

.zfin-card-client {
    top: 1%;
    left: -2%;
    animation: card-one 4.2s ease-in-out infinite;
}

.zfin-card-success {
    top: 10%;
    right: -8%;
    animation: card-two 5.4s ease-in-out infinite;
}

.zfin-card-meeting {
    bottom: 20%;
    left: -8%;
    animation: card-two 5s ease-in-out infinite reverse;
}

.zfin-card-performance {
    right: -7%;
    bottom: 7%;
    animation: card-one 5.8s ease-in-out infinite reverse;
}

.zfin-scroll-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.zfin-scroll-hint span {
    width: 20px;
    height: 31px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
}

.zfin-scroll-hint span::after {
    content: "";
    width: 3px;
    height: 6px;
    display: block;
    margin: 6px auto;
    border-radius: 3px;
    background: var(--orange);
    animation: scroll-dot 1.7s ease infinite;
}

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

@keyframes pulse {
    50% {
        box-shadow:
            0 0 0 12px rgba(255,122,0,.07),
            0 12px 38px rgba(255,122,0,.38);
    }
}

@keyframes dashboard-float {
    50% { transform: translateY(-12px); }
}

@keyframes card-one {
    50% { transform: translate(4px, -9px); }
}

@keyframes card-two {
    50% { transform: translate(-4px, 8px); }
}

@keyframes orb-one {
    50% { transform: translate(30px, 20px) scale(1.04); }
}

@keyframes orb-two {
    50% { transform: translate(-25px, -20px) scale(.96); }
}

@keyframes scroll-dot {
    50% { transform: translateY(10px); opacity: .3; }
}

@media (max-width: 1100px) {
    .zfin-navigation {
        gap: 15px;
    }

    .zfin-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .zfin-hero-content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .zfin-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .zfin-actions,
    .zfin-benefits {
        justify-content: center;
    }

    .zfin-visual {
        width: min(760px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 850px) {
    .zfin-navigation,
    .zfin-header-actions {
        display: none;
    }

    .zfin-mobile-menu {
        position: relative;
        display: block;
    }

    .zfin-mobile-menu summary {
        width: 42px;
        height: 42px;
        display: grid;
        align-content: center;
        gap: 5px;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: rgba(255,255,255,.04);
        cursor: pointer;
        list-style: none;
    }

    .zfin-mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .zfin-mobile-menu summary span {
        height: 2px;
        border-radius: 2px;
        background: var(--white);
    }

    .zfin-mobile-panel {
        position: absolute;
        top: 52px;
        right: 0;
        width: 240px;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: rgba(8,11,36,.98);
        box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

    .zfin-mobile-panel a {
        display: block;
        padding: 11px;
        border-bottom: 1px solid var(--border);
        color: var(--text);
        font-size: 14px;
        text-decoration: none;
    }

    .zfin-mobile-panel .zfin-mobile-cta {
        margin-top: 8px;
        border: 0;
        border-radius: 9px;
        background: var(--orange);
        color: var(--white);
        text-align: center;
        font-weight: 700;
    }
}

@media (max-width: 620px) {
    .zfin-container {
        width: min(100% - 28px, 1280px);
    }

    .zfin-header-inner {
        height: 65px;
    }

    .zfin-hero {
        padding-top: 104px;
    }

    h1 {
        font-size: clamp(42px, 14vw, 62px);
    }

    .zfin-lead {
        font-size: 16px;
    }

    .zfin-actions {
        flex-direction: column;
    }

    .zfin-button {
        width: 100%;
    }

    .zfin-benefits {
        flex-direction: column;
        gap: 8px;
    }

    .zfin-visual {
        padding: 55px 0;
    }

    .zfin-dashboard-body {
        min-height: 320px;
    }

    .zfin-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zfin-dashboard-panels {
        grid-template-columns: 1fr;
    }

    .zfin-activity-panel {
        display: none;
    }

    .zfin-floating-card {
        transform: scale(.82);
    }

    .zfin-card-client {
        left: -7%;
    }

    .zfin-card-success,
    .zfin-card-performance {
        right: -8%;
    }

    .zfin-card-meeting {
        display: none;
    }

    .zfin-scroll-hint {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

/* Landing step 3: trust section */

.zfin-trust-section {
    position: relative;
    padding: 105px 0 115px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 36, 0.2),
            rgba(8, 11, 36, 0.86)
        );
}

.zfin-trust-section::before {
    content: "";
    position: absolute;
    top: -140px;
    left: 50%;
    width: min(900px, 80vw);
    height: 280px;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(98, 91, 255, 0.15),
            transparent 70%
        );
    pointer-events: none;
}

.zfin-trust-heading {
    position: relative;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.zfin-section-label {
    margin: 0 0 14px;
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.zfin-trust-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4.5vw, 57px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-trust-heading h2 span {
    color: var(--orange);
}

.zfin-segments {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 23px;
}

.zfin-segments article {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    color: var(--muted);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        background 180ms ease;
}

.zfin-segments article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.3);
    background: rgba(255, 122, 0, 0.07);
    color: var(--white);
}

.zfin-segment-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 122, 0, 0.11);
    color: var(--orange);
    font-size: 16px;
    font-weight: 800;
}

.zfin-segments strong {
    font-size: 12px;
}

.zfin-trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(16, 22, 58, 0.88),
            rgba(36, 22, 74, 0.76)
        );
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}

.zfin-trust-metrics article {
    min-height: 205px;
    padding: 33px 29px;
    border-right: 1px solid rgba(255, 255, 255, 0.075);
}

.zfin-trust-metrics article:last-child {
    border-right: 0;
}

.zfin-metric-number,
.zfin-metric-symbol {
    min-height: 49px;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    color: var(--orange);
    font-size: 37px;
    font-weight: 820;
    letter-spacing: -0.045em;
}

.zfin-metric-symbol {
    font-size: 42px;
}

.zfin-trust-metrics strong {
    display: block;
    margin-bottom: 9px;
    font-size: 15px;
}

.zfin-trust-metrics p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 1050px) {
    .zfin-segments {
        grid-template-columns: repeat(3, 1fr);
    }

    .zfin-trust-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .zfin-trust-metrics article:nth-child(2) {
        border-right: 0;
    }

    .zfin-trust-metrics article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }
}

@media (max-width: 620px) {
    .zfin-trust-section {
        padding: 78px 0 82px;
    }

    .zfin-trust-heading {
        margin-bottom: 34px;
    }

    .zfin-segments {
        grid-template-columns: repeat(2, 1fr);
    }

    .zfin-trust-metrics {
        grid-template-columns: 1fr;
    }

    .zfin-trust-metrics article {
        min-height: auto;
        padding: 26px 23px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }

    .zfin-trust-metrics article:last-child {
        border-bottom: 0;
    }
}

/* Landing step 4: main features */

.zfin-features-section {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 36, 0.88),
            rgba(16, 22, 58, 0.34)
        );
}

.zfin-features-section::before {
    content: "";
    position: absolute;
    top: 18%;
    left: -180px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(98, 91, 255, 0.13),
            transparent 70%
        );
    pointer-events: none;
}

.zfin-features-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: 5%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 122, 0, 0.1),
            transparent 70%
        );
    pointer-events: none;
}

.zfin-features-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.zfin-features-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-features-heading h2 span {
    display: block;
    color: var(--orange);
}

.zfin-features-heading > p:last-child {
    max-width: 590px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.zfin-features-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.zfin-feature-card {
    position: relative;
    min-height: 295px;
    overflow: hidden;
    padding: 29px 25px 25px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 22, 58, 0.86),
            rgba(16, 22, 58, 0.48)
        );
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.zfin-feature-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 122, 0, 0.13),
            transparent 70%
        );
    opacity: 0;
    transition: opacity 220ms ease;
}

.zfin-feature-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            transparent
        );
    opacity: 0;
    transform: scaleX(0.3);
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.zfin-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 122, 0, 0.3);
    background:
        linear-gradient(
            145deg,
            rgba(16, 22, 58, 0.97),
            rgba(36, 22, 74, 0.78)
        );
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(255, 122, 0, 0.07);
}

.zfin-feature-card:hover::before,
.zfin-feature-card:hover::after {
    opacity: 1;
}

.zfin-feature-card:hover::after {
    transform: scaleX(1);
}

.zfin-feature-number {
    position: absolute;
    top: 22px;
    right: 23px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 29px;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.zfin-feature-icon {
    position: relative;
    z-index: 2;
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 122, 0, 0.22);
    border-radius: 14px;
    background: rgba(255, 122, 0, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.zfin-feature-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zfin-feature-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.015em;
}

.zfin-feature-card > p {
    position: relative;
    z-index: 2;
    min-height: 70px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.zfin-feature-card > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 200ms ease,
        transform 200ms ease,
        gap 200ms ease;
}

.zfin-feature-card:hover > a {
    gap: 11px;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 970px) {
    .zfin-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .zfin-features-section {
        padding: 82px 0 88px;
    }

    .zfin-features-heading {
        margin-bottom: 38px;
    }

    .zfin-features-heading > p:last-child {
        font-size: 16px;
    }

    .zfin-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .zfin-feature-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .zfin-feature-card > p {
        min-height: auto;
    }

    .zfin-feature-card > a {
        opacity: 1;
        transform: none;
    }
}

/* Landing step 5: interactive demo */

.zfin-demo-section {
    position: relative;
    padding: 112px 0 122px;
    overflow: hidden;
    background: rgba(16, 22, 58, 0.28);
}

.zfin-demo-section::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 50%;
    width: 900px;
    height: 500px;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse,
            rgba(98, 91, 255, 0.12),
            transparent 70%
        );
    pointer-events: none;
}

.zfin-demo-heading {
    position: relative;
    z-index: 2;
    max-width: 790px;
    margin: 0 auto 45px;
    text-align: center;
}

.zfin-demo-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4.7vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-demo-heading h2 span {
    display: block;
    color: var(--orange);
}

.zfin-demo-heading > p:last-child {
    max-width: 690px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.zfin-demo-tabs {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.zfin-demo-tabs button {
    min-height: 43px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 680;
    cursor: pointer;
    transition:
        transform 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.zfin-demo-tabs button:hover {
    color: var(--white);
    border-color: rgba(255, 122, 0, 0.25);
}

.zfin-demo-tabs button.active {
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );
    color: var(--white);
    box-shadow: 0 7px 25px rgba(255, 122, 0, 0.28);
    transform: translateY(-2px);
}

.zfin-demo-shell {
    position: relative;
    z-index: 2;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid rgba(98, 91, 255, 0.17);
    border-radius: 23px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 22, 58, 0.94),
            rgba(23, 17, 60, 0.88)
        );
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.zfin-demo-panel {
    min-height: 470px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
    padding: 48px 52px;
}

.zfin-demo-panel[hidden] {
    display: none;
}

.zfin-demo-panel.active {
    animation: zfin-demo-change 380ms ease both;
}

.zfin-demo-copy {
    min-width: 0;
}

.zfin-demo-index {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: 0.12em;
}

.zfin-demo-copy h3 {
    margin: 0 0 15px;
    font-size: clamp(25px, 3vw, 35px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.zfin-demo-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.zfin-demo-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 31px;
}

.zfin-demo-stats div {
    min-width: 95px;
}

.zfin-demo-stats strong,
.zfin-demo-stats span {
    display: block;
}

.zfin-demo-stats strong {
    color: var(--orange);
    font-size: 28px;
    letter-spacing: -0.035em;
}

.zfin-demo-stats span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.zfin-demo-preview {
    min-height: 300px;
    padding: 21px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    background: rgba(8, 11, 36, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 15px 45px rgba(0, 0, 0, 0.22);
}

.zfin-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
}

.zfin-preview-top button {
    padding: 6px 9px;
    border: 0;
    border-radius: 6px;
    background: var(--orange);
    color: var(--white);
    font-size: 8px;
    font-weight: 750;
}

.zfin-preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.zfin-preview-cards article {
    padding: 11px 9px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.zfin-preview-cards small,
.zfin-preview-cards strong,
.zfin-preview-cards em {
    display: block;
}

.zfin-preview-cards small {
    color: var(--muted);
    font-size: 8px;
}

.zfin-preview-cards strong {
    margin: 4px 0;
    font-size: 19px;
}

.zfin-preview-cards em {
    color: #22c55e;
    font-size: 8px;
    font-style: normal;
}

.zfin-preview-activities {
    margin-top: 11px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.zfin-preview-activities > strong {
    display: block;
    margin-bottom: 7px;
    font-size: 9px;
}

.zfin-preview-activities p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 9px;
}

.zfin-preview-activities p:last-child {
    border-bottom: 0;
}

.zfin-preview-activities i {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
}

.zfin-client-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-size: 10px;
}

.zfin-client-row,
.zfin-file-row {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.zfin-client-row:last-child,
.zfin-file-row:last-child {
    border-bottom: 0;
}

.zfin-client-row > b {
    width: 32px;
    height: 32px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(98, 91, 255, 0.18);
    color: #8f89ff;
    font-size: 9px;
}

.zfin-client-row > span,
.zfin-file-row > span {
    flex: 1;
    min-width: 0;
}

.zfin-client-row strong,
.zfin-client-row small,
.zfin-file-row strong,
.zfin-file-row small {
    display: block;
}

.zfin-client-row strong,
.zfin-file-row strong {
    overflow: hidden;
    color: var(--text);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zfin-client-row small,
.zfin-file-row small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
}

.zfin-client-row > em {
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(98, 91, 255, 0.14);
    color: #8f89ff;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.zfin-client-row > em.orange {
    background: rgba(255, 122, 0, 0.13);
    color: var(--orange);
}

.zfin-kanban {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.zfin-kanban header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 8px;
}

.zfin-kanban header b {
    color: var(--orange);
}

.zfin-kanban article {
    margin-bottom: 6px;
    padding: 9px 7px;
    border: 1px solid rgba(98, 91, 255, 0.17);
    border-radius: 8px;
    background: rgba(98, 91, 255, 0.08);
}

.zfin-kanban article.done {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.08);
}

.zfin-kanban strong,
.zfin-kanban small {
    display: block;
}

.zfin-kanban strong {
    color: var(--text);
    font-size: 8px;
}

.zfin-kanban small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 7px;
}

.zfin-calendar-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
}

.zfin-calendar-header strong {
    flex: 1;
    font-size: 13px;
}

.zfin-calendar-header span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    color: var(--muted);
}

.zfin-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.zfin-calendar-grid b,
.zfin-calendar-grid span {
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 9px;
}

.zfin-calendar-grid b {
    height: 22px;
    color: var(--muted);
}

.zfin-calendar-grid span {
    color: var(--muted);
}

.zfin-calendar-grid span.event {
    background: rgba(98, 91, 255, 0.16);
    color: #9994ff;
}

.zfin-calendar-grid span.today {
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 5px 16px rgba(255, 122, 0, 0.28);
}

.zfin-file-row > b {
    width: 36px;
    height: 34px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    font-size: 7px;
}

.zfin-file-row > b.pdf {
    background: rgba(239, 68, 68, 0.13);
    color: #ef4444;
}

.zfin-file-row > b.doc {
    background: rgba(98, 91, 255, 0.15);
    color: #8f89ff;
}

.zfin-file-row > b.xls {
    background: rgba(34, 197, 94, 0.13);
    color: #22c55e;
}

.zfin-file-row > em {
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
}

@keyframes zfin-demo-change {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

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

@media (max-width: 900px) {
    .zfin-demo-panel {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 30px;
    }

    .zfin-demo-shell,
    .zfin-demo-panel {
        min-height: auto;
    }
}

@media (max-width: 620px) {
    .zfin-demo-section {
        padding: 82px 0 90px;
    }

    .zfin-demo-heading > p:last-child {
        font-size: 16px;
    }

    .zfin-demo-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .zfin-demo-tabs button {
        flex: 0 0 auto;
    }

    .zfin-demo-panel {
        padding: 27px 20px;
    }

    .zfin-demo-stats {
        gap: 18px;
    }

    .zfin-demo-stats strong {
        font-size: 24px;
    }

    .zfin-demo-preview {
        min-height: auto;
        padding: 14px;
    }

    .zfin-kanban {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landing step 6: target audiences */

.zfin-audience-section {
    position: relative;
    padding: 112px 0 122px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 36, 0.82),
            rgba(36, 22, 74, 0.22)
        );
}

.zfin-audience-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1050px, 90vw);
    height: 420px;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(98, 91, 255, 0.11),
            transparent 70%
        );
    pointer-events: none;
}

.zfin-audience-heading {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 56px;
    text-align: center;
}

.zfin-audience-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4.7vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-audience-heading h2 span {
    display: block;
    color: var(--orange);
}

.zfin-audience-heading > p:last-child {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.zfin-audience-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.zfin-audience-card {
    position: relative;
    min-height: 475px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 22, 58, 0.88),
            rgba(16, 22, 58, 0.56)
        );
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.22);
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.zfin-audience-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.38);
}

.zfin-audience-finance:hover {
    border-color: rgba(255, 122, 0, 0.34);
}

.zfin-audience-reality:hover {
    border-color: rgba(98, 91, 255, 0.4);
}

.zfin-audience-sales:hover {
    border-color: rgba(34, 197, 94, 0.34);
}

.zfin-audience-glow {
    position: absolute;
    top: -130px;
    right: -130px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 240ms ease;
}

.zfin-audience-finance .zfin-audience-glow {
    background:
        radial-gradient(
            circle,
            rgba(255, 122, 0, 0.2),
            transparent 68%
        );
}

.zfin-audience-reality .zfin-audience-glow {
    background:
        radial-gradient(
            circle,
            rgba(98, 91, 255, 0.22),
            transparent 68%
        );
}

.zfin-audience-sales .zfin-audience-glow {
    background:
        radial-gradient(
            circle,
            rgba(34, 197, 94, 0.18),
            transparent 68%
        );
}

.zfin-audience-card:hover .zfin-audience-glow {
    opacity: 1;
}

.zfin-audience-content {
    position: relative;
    z-index: 2;
    padding: 34px 31px 30px;
}

.zfin-audience-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 16px;
}

.zfin-audience-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zfin-audience-finance .zfin-audience-icon {
    border: 1px solid rgba(255, 122, 0, 0.3);
    background: rgba(255, 122, 0, 0.12);
}

.zfin-audience-finance .zfin-audience-icon svg {
    stroke: var(--orange);
}

.zfin-audience-reality .zfin-audience-icon {
    border: 1px solid rgba(98, 91, 255, 0.32);
    background: rgba(98, 91, 255, 0.13);
}

.zfin-audience-reality .zfin-audience-icon svg {
    stroke: #8f89ff;
}

.zfin-audience-sales .zfin-audience-icon {
    border: 1px solid rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.11);
}

.zfin-audience-sales .zfin-audience-icon svg {
    stroke: #22c55e;
}

.zfin-audience-label {
    display: inline-block;
    margin-bottom: 9px;
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.zfin-audience-finance .zfin-audience-label {
    color: var(--orange);
}

.zfin-audience-reality .zfin-audience-label {
    color: #8f89ff;
}

.zfin-audience-sales .zfin-audience-label {
    color: #22c55e;
}

.zfin-audience-card h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.zfin-audience-card p {
    min-height: 72px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.zfin-audience-card ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zfin-audience-card li {
    position: relative;
    padding-left: 27px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.45;
}

.zfin-audience-card li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 850;
}

.zfin-audience-finance li::before {
    background: rgba(255, 122, 0, 0.14);
    color: var(--orange);
}

.zfin-audience-reality li::before {
    background: rgba(98, 91, 255, 0.16);
    color: #8f89ff;
}

.zfin-audience-sales li::before {
    background: rgba(34, 197, 94, 0.14);
    color: #22c55e;
}

.zfin-audience-card a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 27px;
    padding: 0 15px;
    border: 1px solid;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    opacity: 0;
    transform: translateY(7px);
    transition:
        opacity 200ms ease,
        transform 200ms ease,
        gap 200ms ease,
        background 200ms ease;
}

.zfin-audience-card:hover a {
    gap: 12px;
    opacity: 1;
    transform: translateY(0);
}

.zfin-audience-finance a {
    border-color: rgba(255, 122, 0, 0.3);
    color: var(--orange);
}

.zfin-audience-reality a {
    border-color: rgba(98, 91, 255, 0.34);
    color: #8f89ff;
}

.zfin-audience-sales a {
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.zfin-audience-finance a:hover {
    background: rgba(255, 122, 0, 0.1);
}

.zfin-audience-reality a:hover {
    background: rgba(98, 91, 255, 0.1);
}

.zfin-audience-sales a:hover {
    background: rgba(34, 197, 94, 0.09);
}

@media (max-width: 970px) {
    .zfin-audience-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .zfin-audience-card {
        min-height: auto;
    }

    .zfin-audience-card p {
        min-height: auto;
    }

    .zfin-audience-card a {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 620px) {
    .zfin-audience-section {
        padding: 82px 0 90px;
    }

    .zfin-audience-heading {
        margin-bottom: 38px;
    }

    .zfin-audience-heading > p:last-child {
        font-size: 16px;
    }

    .zfin-audience-content {
        padding: 27px 22px 25px;
    }
}

/* Landing step 7: business process */

.zfin-process-section {
    position: relative;
    padding: 112px 0 122px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(36, 22, 74, 0.22),
            rgba(8, 11, 36, 0.92)
        );
}

.zfin-process-section::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 50%;
    width: 1000px;
    height: 480px;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(255, 122, 0, 0.08),
            transparent 70%
        );
    pointer-events: none;
}

.zfin-process-heading {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto 62px;
    text-align: center;
}

.zfin-process-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4.7vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-process-heading h2 span {
    display: block;
    color: var(--orange);
}

.zfin-process-heading > p:last-child {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.zfin-process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px 24px;
}

.zfin-process-grid::before {
    content: "";
    position: absolute;
    top: 53px;
    right: 15%;
    left: 15%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 122, 0, 0.4),
            rgba(98, 91, 255, 0.4),
            transparent
        );
}

.zfin-process-card {
    position: relative;
    min-height: 225px;
    padding: 28px 25px 25px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 22, 58, 0.9),
            rgba(16, 22, 58, 0.5)
        );
    box-shadow: 0 17px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.zfin-process-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 122, 0, 0.28);
    box-shadow:
        0 27px 65px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(255, 122, 0, 0.05);
}

.zfin-process-number {
    position: absolute;
    top: 25px;
    right: 23px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 28px;
    font-weight: 850;
}

.zfin-process-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.14),
            rgba(98, 91, 255, 0.08)
        );
    box-shadow:
        0 9px 25px rgba(255, 122, 0, 0.08);
}

.zfin-process-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zfin-process-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.zfin-process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.zfin-process-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 62px;
    padding: 30px 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 0, 0.11),
            rgba(98, 91, 255, 0.09)
        );
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.zfin-process-cta::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 122, 0, 0.2),
            transparent 70%
        );
}

.zfin-process-cta > div,
.zfin-process-cta > a {
    position: relative;
    z-index: 2;
}

.zfin-process-cta span,
.zfin-process-cta strong {
    display: block;
}

.zfin-process-cta > div > span {
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.zfin-process-cta strong {
    max-width: 590px;
    font-size: 21px;
    line-height: 1.35;
}

.zfin-process-cta > a {
    min-height: 50px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    padding: 0 21px;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );
    color: var(--white);
    font-size: 13px;
    font-weight: 780;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.28);
    transition:
        transform 180ms ease,
        gap 180ms ease;
}

.zfin-process-cta > a:hover {
    gap: 13px;
    transform: translateY(-2px);
}

@media (max-width: 950px) {
    .zfin-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zfin-process-grid::before {
        display: none;
    }

    .zfin-process-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .zfin-process-section {
        padding: 82px 0 90px;
    }

    .zfin-process-heading {
        margin-bottom: 40px;
    }

    .zfin-process-heading > p:last-child {
        font-size: 16px;
    }

    .zfin-process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .zfin-process-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .zfin-process-cta {
        margin-top: 35px;
        padding: 25px 22px;
    }

    .zfin-process-cta strong {
        font-size: 18px;
    }

    .zfin-process-cta > a {
        width: 100%;
        justify-content: center;
    }
}

/* Menu anchor adjustment */
#ako-to-funguje {
    scroll-margin-top: 85px;
}

/* Landing step 8: security and devices */

#bezpecnost {
    scroll-margin-top: 85px;
}

.zfin-security-section {
    position: relative;
    padding: 115px 0 120px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 36, 0.94),
            rgba(23, 17, 60, 0.7)
        );
}

.zfin-security-section::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -240px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(98, 91, 255, 0.16),
            transparent 68%
        );
    pointer-events: none;
}

.zfin-security-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 75px;
    align-items: center;
}

.zfin-security-content h2 {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 57px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-security-content h2 span {
    display: block;
    color: var(--orange);
}

.zfin-security-lead {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.zfin-security-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 31px;
}

.zfin-security-list article {
    display: flex;
    gap: 12px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.032);
}

.zfin-security-icon {
    width: 39px;
    height: 39px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 122, 0, 0.24);
    border-radius: 11px;
    background: rgba(255, 122, 0, 0.1);
}

.zfin-security-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zfin-security-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.zfin-security-list p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.zfin-devices {
    position: relative;
    min-height: 520px;
}

.zfin-device-glow {
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: rgba(98, 91, 255, 0.24);
    filter: blur(80px);
}

.zfin-device-desktop {
    position: absolute;
    top: 30px;
    right: 0;
    left: 20px;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(98, 91, 255, 0.25);
    border-radius: 17px;
    background: #10163a;
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.46);
    transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}

.zfin-device-bar {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.zfin-device-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.zfin-device-bar span:nth-child(1) {
    background: #ff5f57;
}

.zfin-device-bar span:nth-child(2) {
    background: #febc2e;
}

.zfin-device-bar span:nth-child(3) {
    background: #28c840;
}

.zfin-device-bar i {
    min-width: 180px;
    margin: 0 auto;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 7px;
    font-style: normal;
    text-align: center;
}

.zfin-device-dashboard {
    min-height: 320px;
    display: flex;
}

.zfin-device-dashboard aside {
    width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    padding: 13px 7px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.zfin-device-dashboard aside b {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--glow));
    font-size: 11px;
}

.zfin-device-dashboard aside span {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.07);
}

.zfin-device-dashboard > div {
    flex: 1;
    padding: 16px;
}

.zfin-device-dashboard header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zfin-device-dashboard header span,
.zfin-device-dashboard header small,
.zfin-device-dashboard header strong {
    display: block;
}

.zfin-device-dashboard header small {
    color: var(--muted);
    font-size: 7px;
}

.zfin-device-dashboard header strong {
    margin-top: 2px;
    font-size: 12px;
}

.zfin-device-dashboard header button {
    border: 0;
    border-radius: 6px;
    padding: 6px 8px;
    background: var(--orange);
    color: white;
    font-size: 7px;
    font-weight: 700;
}

.zfin-device-dashboard section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.zfin-device-dashboard section article {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
}

.zfin-device-dashboard section small,
.zfin-device-dashboard section strong,
.zfin-device-dashboard section em {
    display: block;
}

.zfin-device-dashboard section small {
    color: var(--muted);
    font-size: 7px;
}

.zfin-device-dashboard section strong {
    margin: 3px 0;
    font-size: 15px;
}

.zfin-device-dashboard section em {
    color: #22c55e;
    font-size: 7px;
    font-style: normal;
}

.zfin-device-chart {
    height: 155px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.zfin-device-chart span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(98, 91, 255, 0.48);
}

.zfin-device-chart span:last-child {
    background: linear-gradient(to top, var(--orange), var(--orange-light));
}

.zfin-device-tablet {
    position: absolute;
    right: -15px;
    bottom: 15px;
    z-index: 5;
    width: 245px;
    padding: 23px 16px 17px;
    border: 5px solid #171d45;
    border-radius: 18px;
    background: #0c102f;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.5);
    transform: rotate(3deg);
}

.zfin-tablet-speaker {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 35px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-50%);
}

.zfin-device-tablet > strong {
    display: block;
    margin-bottom: 9px;
    font-size: 11px;
}

.zfin-device-tablet article {
    margin-top: 7px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    color: var(--text);
    font-size: 8px;
}

.zfin-device-tablet article span {
    display: inline-block;
    margin-right: 6px;
    color: var(--orange);
    font-weight: 700;
}

.zfin-device-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 6;
    width: 145px;
    padding: 28px 15px 16px;
    border: 5px solid #171d45;
    border-radius: 24px;
    background: #0c102f;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.55);
    transform: rotate(-4deg);
}

.zfin-mobile-speaker {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 37px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-50%);
}

.zfin-device-mobile small {
    color: var(--muted);
    font-size: 8px;
}

.zfin-device-mobile > strong {
    display: block;
    margin: 4px 0 12px;
    font-size: 29px;
}

.zfin-mobile-progress {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.zfin-mobile-progress span {
    width: 84%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--glow), var(--orange));
}

.zfin-device-mobile p {
    margin: 7px 0 13px;
    color: var(--muted);
    font-size: 7px;
}

.zfin-device-mobile button {
    width: 100%;
    padding: 8px 4px;
    border: 0;
    border-radius: 7px;
    background: var(--orange);
    color: white;
    font-size: 7px;
    font-weight: 700;
}

.zfin-device-badge {
    position: absolute;
    top: 0;
    left: -15px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 13px;
    background: rgba(16, 22, 58, 0.94);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.zfin-device-badge > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.13);
    color: #22c55e;
    font-weight: 800;
}

.zfin-device-badge strong,
.zfin-device-badge small {
    display: block;
}

.zfin-device-badge strong {
    font-size: 10px;
}

.zfin-device-badge small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 8px;
}

.zfin-security-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 75px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.027);
}

.zfin-security-strip article {
    padding: 23px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.zfin-security-strip article:last-child {
    border-right: 0;
}

.zfin-security-strip strong,
.zfin-security-strip span {
    display: block;
}

.zfin-security-strip strong {
    margin-bottom: 6px;
    color: var(--orange);
    font-size: 14px;
}

.zfin-security-strip span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .zfin-security-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .zfin-devices {
        width: min(720px, 100%);
        margin: 0 auto;
    }

    .zfin-security-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .zfin-security-strip article:nth-child(2) {
        border-right: 0;
    }

    .zfin-security-strip article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
}

@media (max-width: 620px) {
    .zfin-security-section {
        padding: 82px 0 90px;
    }

    .zfin-security-list {
        grid-template-columns: 1fr;
    }

    .zfin-devices {
        min-height: 440px;
    }

    .zfin-device-desktop {
        right: 0;
        left: 0;
    }

    .zfin-device-dashboard {
        min-height: 260px;
    }

    .zfin-device-chart {
        height: 105px;
    }

    .zfin-device-tablet {
        right: -15px;
        width: 205px;
    }

    .zfin-device-mobile {
        left: -5px;
        width: 125px;
    }

    .zfin-device-badge {
        left: 5px;
        transform: scale(0.88);
        transform-origin: left top;
    }

    .zfin-security-strip {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .zfin-security-strip article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .zfin-security-strip article:last-child {
        border-bottom: 0;
    }
}

/* Landing step 9: pricing */

#cennik {
    scroll-margin-top: 85px;
}

.zfin-pricing-section {
    position: relative;
    padding: 115px 0 120px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(23, 17, 60, 0.7),
            rgba(8, 11, 36, 0.95)
        );
}

.zfin-pricing-section::before {
    content: "";
    position: absolute;
    top: 4%;
    left: 50%;
    width: min(1050px, 95vw);
    height: 520px;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse,
            rgba(98, 91, 255, 0.13),
            transparent 70%
        );
    pointer-events: none;
}

.zfin-pricing-heading {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 53px;
    text-align: center;
}

.zfin-pricing-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4.7vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-pricing-heading h2 span {
    display: block;
    color: var(--orange);
}

.zfin-pricing-heading > p:not(.zfin-section-label) {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.zfin-billing-switch {
    display: inline-flex;
    gap: 4px;
    margin-top: 27px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
}

.zfin-billing-switch button {
    min-height: 41px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.zfin-billing-switch button.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.22);
}

.zfin-billing-switch button span {
    padding: 3px 7px;
    border-radius: 6px;
    background: rgba(255, 122, 0, 0.14);
    color: var(--orange);
    font-size: 10px;
}

.zfin-billing-note {
    margin-top: 10px !important;
    color: var(--orange) !important;
    font-size: 12px !important;
}

.zfin-pricing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: stretch;
}

.zfin-price-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 29px 21px 23px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 22, 58, 0.9),
            rgba(16, 22, 58, 0.56)
        );
    box-shadow: 0 17px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.zfin-price-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 122, 0, 0.28);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.zfin-price-card.popular {
    border: 2px solid rgba(255, 122, 0, 0.48);
    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.11),
            rgba(36, 22, 74, 0.75)
        );
    box-shadow:
        0 25px 70px rgba(255, 122, 0, 0.12);
    transform: translateY(-9px);
}

.zfin-price-card.popular:hover {
    transform: translateY(-14px);
}

.zfin-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    padding: 5px 13px;
    border-radius: 999px;
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    transform: translateX(-50%);
}

.zfin-price-card h3 {
    margin: 0 0 13px;
    font-size: 18px;
}

.zfin-plan-price {
    min-height: 44px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.zfin-plan-price strong {
    font-size: 27px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.zfin-price-card:first-child .zfin-plan-price strong {
    color: #22c55e;
}

.zfin-plan-price small {
    color: var(--muted);
    font-size: 10px;
}

.zfin-plan-limit {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 11px;
}

.zfin-price-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 25px;
    padding: 0;
    list-style: none;
    flex: 1;
}

.zfin-price-card li {
    display: flex;
    gap: 8px;
    color: var(--text);
    font-size: 11px;
    line-height: 1.45;
}

.zfin-price-card li span {
    color: #22c55e;
    font-weight: 850;
}

.zfin-price-card.popular li span {
    color: var(--orange);
}

.zfin-price-card > a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.065);
    color: var(--white);
    font-size: 12px;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background 180ms ease;
}

.zfin-price-card > a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.zfin-price-card.popular > a {
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );
    box-shadow: 0 9px 27px rgba(255, 122, 0, 0.27);
}

.zfin-enterprise-line {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
    padding: 27px 31px;
    border: 1px solid rgba(98, 91, 255, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(98, 91, 255, 0.1),
            rgba(255, 122, 0, 0.06)
        );
}

.zfin-enterprise-line strong,
.zfin-enterprise-line span {
    display: block;
}

.zfin-enterprise-line strong {
    margin-bottom: 6px;
    font-size: 17px;
}

.zfin-enterprise-line > div > span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.zfin-enterprise-line > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .zfin-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .zfin-price-card.popular {
        transform: none;
    }

    .zfin-price-card.popular:hover {
        transform: translateY(-7px);
    }
}

@media (max-width: 760px) {
    .zfin-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .zfin-pricing-section {
        padding: 82px 0 90px;
    }

    .zfin-pricing-heading {
        margin-bottom: 40px;
    }

    .zfin-pricing-heading > p:not(.zfin-section-label) {
        font-size: 16px;
    }

    .zfin-pricing-grid {
        grid-template-columns: 1fr;
    }

    .zfin-price-card {
        padding: 27px 23px 23px;
    }

    .zfin-enterprise-line {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px 22px;
    }
}

/* Landing step 10: about and FAQ */

#o-nas,
#faq {
    scroll-margin-top: 85px;
}

.zfin-about-section {
    position: relative;
    padding: 115px 0 120px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 36, 0.95),
            rgba(36, 22, 74, 0.34)
        );
}

.zfin-about-section::before {
    content: "";
    position: absolute;
    top: 5%;
    left: -220px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(98, 91, 255, 0.15),
            transparent 70%
        );
}

.zfin-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 75px;
    align-items: center;
}

.zfin-about-content h2 {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 57px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-about-content h2 span {
    display: block;
    color: var(--orange);
}

.zfin-about-content > p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.zfin-about-content .zfin-about-lead {
    margin-top: 22px;
    color: var(--text);
    font-size: 17px;
}

.zfin-about-values {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.zfin-about-values article {
    display: flex;
    gap: 15px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.032);
}

.zfin-about-values article > span {
    width: 36px;
    height: 36px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 122, 0, 0.11);
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
}

.zfin-about-values strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.zfin-about-values p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.zfin-about-panel {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(98, 91, 255, 0.22);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 22, 58, 0.95),
            rgba(36, 22, 74, 0.82)
        );
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.35);
}

.zfin-about-glow {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 122, 0, 0.2),
            transparent 70%
        );
}

.zfin-about-logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.zfin-about-logo > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--glow)
        );
    font-size: 25px;
    font-weight: 850;
    box-shadow: 0 12px 34px rgba(255, 122, 0, 0.26);
}

.zfin-about-logo strong,
.zfin-about-logo small {
    display: block;
}

.zfin-about-logo strong {
    font-size: 21px;
}

.zfin-about-logo small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.zfin-about-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-top: 31px;
}

.zfin-about-metrics article {
    padding: 20px 17px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.zfin-about-metrics strong,
.zfin-about-metrics span {
    display: block;
}

.zfin-about-metrics strong {
    margin-bottom: 5px;
    color: var(--orange);
    font-size: 25px;
}

.zfin-about-metrics span {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.zfin-about-quote {
    position: relative;
    z-index: 2;
    margin-top: 19px;
    padding: 20px 20px 20px 53px;
    border: 1px solid rgba(255, 122, 0, 0.17);
    border-radius: 14px;
    background: rgba(255, 122, 0, 0.065);
}

.zfin-about-quote > span {
    position: absolute;
    top: 8px;
    left: 17px;
    color: var(--orange);
    font-size: 45px;
    line-height: 1;
}

.zfin-about-quote p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.6;
}

.zfin-faq-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        linear-gradient(
            180deg,
            rgba(36, 22, 74, 0.34),
            rgba(8, 11, 36, 0.97)
        );
}

.zfin-faq-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.zfin-faq-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4.7vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.zfin-faq-heading h2 span {
    display: block;
    color: var(--orange);
}

.zfin-faq-heading > p:last-child {
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.zfin-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    max-width: 1050px;
    margin: 0 auto;
}

.zfin-faq-grid details {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 15px;
    background: rgba(16, 22, 58, 0.68);
    transition:
        border-color 180ms ease,
        background 180ms ease;
}

.zfin-faq-grid details[open] {
    border-color: rgba(255, 122, 0, 0.25);
    background: rgba(16, 22, 58, 0.94);
}

.zfin-faq-grid summary {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 21px;
    color: var(--white);
    font-size: 14px;
    font-weight: 720;
    cursor: pointer;
    list-style: none;
}

.zfin-faq-grid summary::-webkit-details-marker {
    display: none;
}

.zfin-faq-grid summary span {
    width: 27px;
    height: 27px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 122, 0, 0.11);
    color: var(--orange);
    font-size: 18px;
    transition: transform 180ms ease;
}

.zfin-faq-grid details[open] summary span {
    transform: rotate(45deg);
}

.zfin-faq-grid details > p {
    margin: 0;
    padding: 0 21px 21px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 950px) {
    .zfin-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 700px) {
    .zfin-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .zfin-about-section,
    .zfin-faq-section {
        padding: 82px 0 90px;
    }

    .zfin-about-panel {
        padding: 27px 22px;
    }

    .zfin-about-metrics {
        grid-template-columns: 1fr;
    }

    .zfin-faq-heading {
        margin-bottom: 36px;
    }

    .zfin-faq-heading > p:last-child {
        font-size: 16px;
    }
}

/* Landing step 11: final CTA, contact and footer */

#kontakt {
    scroll-margin-top: 85px;
}

.zfin-final-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 36, 0.97),
            rgba(16, 22, 58, 0.96)
        );
}

.zfin-final-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 55px;
    align-items: center;
    overflow: hidden;
    padding: 62px;
    border: 1px solid rgba(255, 122, 0, 0.23);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(36, 22, 74, 0.96),
            rgba(16, 22, 58, 0.98)
        );
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.zfin-final-glow {
    position: absolute;
    top: -220px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 122, 0, 0.24),
            transparent 68%
        );
}

.zfin-final-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

.zfin-final-content,
.zfin-contact-card {
    position: relative;
    z-index: 2;
}

.zfin-final-content h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.zfin-final-content h2 span {
    display: block;
    color: var(--orange);
}

.zfin-final-content > p:not(.zfin-section-label) {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.zfin-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.zfin-final-actions a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.zfin-final-actions a:hover {
    transform: translateY(-3px);
}

.zfin-final-primary {
    gap: 9px;
    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.3);
}

.zfin-final-secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
}

.zfin-final-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 12px;
}

.zfin-final-benefits span::first-letter {
    color: var(--orange);
}

.zfin-contact-card {
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(8, 11, 36, 0.57);
    backdrop-filter: blur(16px);
}

.zfin-contact-label {
    color: var(--orange);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.zfin-contact-card h3 {
    margin: 10px 0 10px;
    font-size: 25px;
    letter-spacing: -0.025em;
}

.zfin-contact-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.zfin-contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 23px;
    padding: 14px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 13px;
    background: rgba(255, 122, 0, 0.07);
    text-decoration: none;
}

.zfin-contact-email > span {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 122, 0, 0.14);
    color: var(--orange);
    font-size: 19px;
    font-weight: 800;
}

.zfin-contact-email small,
.zfin-contact-email strong {
    display: block;
}

.zfin-contact-email small {
    color: var(--muted);
    font-size: 9px;
}

.zfin-contact-email strong {
    margin-top: 3px;
    color: var(--white);
    font-size: 13px;
}

.zfin-contact-info {
    display: grid;
    gap: 7px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 10px;
}

.zfin-contact-info span::before {
    content: "✓";
    margin-right: 7px;
    color: #22c55e;
}

.zfin-footer {
    position: relative;
    padding: 68px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    background: #080b24;
}

.zfin-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 0.7fr);
    gap: 55px;
}

.zfin-footer-brand p {
    max-width: 360px;
    margin: 20px 0 13px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.zfin-footer-email {
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.zfin-footer nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zfin-footer nav strong {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 13px;
}

.zfin-footer nav a {
    color: var(--muted);
    font-size: 12px;
    text-decoration: none;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.zfin-footer nav a:hover {
    color: var(--orange);
    transform: translateX(3px);
}

.zfin-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    color: var(--muted);
    font-size: 10px;
}

@media (max-width: 950px) {
    .zfin-final-card {
        grid-template-columns: 1fr;
        padding: 45px;
    }

    .zfin-contact-card {
        max-width: 620px;
    }

    .zfin-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .zfin-final-section {
        padding: 80px 0;
    }

    .zfin-final-card {
        gap: 35px;
        padding: 31px 22px;
        border-radius: 21px;
    }

    .zfin-final-actions {
        flex-direction: column;
    }

    .zfin-final-actions a {
        width: 100%;
    }

    .zfin-final-benefits {
        flex-direction: column;
        gap: 8px;
    }

    .zfin-contact-card {
        padding: 23px 19px;
    }

    .zfin-footer {
        padding-top: 55px;
    }

    .zfin-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .zfin-footer-bottom {
        flex-direction: column;
        margin-top: 40px;
    }
}

/* Google verification: legal pages and cookie consent */

[hidden] {
    display: none !important;
}

.zfin-legal-body {
    min-height: 100vh;
    background: #080b24;
    color: var(--white);
}

.zfin-legal-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(8, 11, 36, 0.94);
    backdrop-filter: blur(18px);
}

.zfin-legal-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.zfin-legal-back {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.zfin-legal-back:hover {
    color: var(--orange);
}

.zfin-legal-main {
    padding: 75px 0 95px;
}

.zfin-legal-document {
    max-width: 920px;
    margin: 0 auto;
    padding: 52px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 24px;
    background: rgba(16, 22, 58, 0.76);
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
}

.zfin-legal-document h1 {
    margin: 0;
    font-size: clamp(37px, 5vw, 58px);
    letter-spacing: -0.045em;
}

.zfin-legal-document h2 {
    margin: 43px 0 13px;
    color: var(--white);
    font-size: 23px;
}

.zfin-legal-document h3 {
    margin: 29px 0 11px;
    color: var(--orange-light);
    font-size: 17px;
}

.zfin-legal-document p,
.zfin-legal-document li {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.zfin-legal-document a {
    color: var(--orange-light);
}

.zfin-legal-updated {
    margin: 13px 0 34px !important;
    font-size: 12px !important;
}

.zfin-legal-highlight,
.zfin-legal-scope {
    margin: 23px 0;
    padding: 20px;
    border: 1px solid rgba(255, 122, 0, 0.19);
    border-radius: 14px;
    background: rgba(255, 122, 0, 0.06);
}

.zfin-legal-highlight strong {
    color: var(--orange);
}

.zfin-legal-highlight p,
.zfin-legal-scope p {
    margin-bottom: 0;
}

.zfin-legal-scope code {
    display: block;
    overflow-wrap: anywhere;
    color: var(--orange-light);
    font-size: 12px;
}

.zfin-cookie-table {
    display: grid;
    gap: 13px;
    margin: 23px 0;
}

.zfin-cookie-table > div {
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.027);
}

.zfin-cookie-table strong,
.zfin-cookie-table span {
    display: block;
}

.zfin-cookie-table span {
    margin-top: 4px;
    color: var(--orange);
    font-size: 11px;
}

.zfin-cookie-table p {
    margin-bottom: 0;
}

.zfin-cookie-page-button {
    min-height: 47px;
    margin-top: 15px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: var(--orange);
    color: white;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.zfin-legal-footer {
    padding: 31px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    background: #080b24;
    text-align: center;
}

.zfin-legal-footer-links,
.zfin-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.zfin-legal-footer-links a,
.zfin-legal-footer-links button,
.zfin-footer-legal-links a,
.zfin-footer-legal-links button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 11px;
    text-decoration: none;
    cursor: pointer;
}

.zfin-legal-footer-links a:hover,
.zfin-legal-footer-links button:hover,
.zfin-footer-legal-links a:hover,
.zfin-footer-legal-links button:hover {
    color: var(--orange);
}

.zfin-legal-footer p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.zfin-footer-legal-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.zfin-cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 1180px;
    margin: 0 auto;
    padding: 19px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 18px;
    background: rgba(16, 22, 58, 0.97);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(20px);
}

.zfin-cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.zfin-cookie-banner strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.zfin-cookie-banner p {
    max-width: 710px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.zfin-cookie-banner a,
.zfin-cookie-policy-link a {
    color: var(--orange-light);
}

.zfin-cookie-banner-actions,
.zfin-cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zfin-cookie-banner-actions {
    flex: 0 0 auto;
}

.zfin-cookie-button-primary,
.zfin-cookie-button-secondary {
    min-height: 41px;
    padding: 0 15px;
    border-radius: 9px;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.zfin-cookie-button-primary {
    border: 0;
    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
    );
    color: white;
}

.zfin-cookie-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.055);
    color: white;
}

.zfin-cookie-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(3, 5, 20, 0.73);
    backdrop-filter: blur(6px);
}

.zfin-cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1002;
    width: min(620px, calc(100vw - 30px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 33px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    border-radius: 21px;
    background: #10163a;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65);
    transform: translate(-50%, -50%);
}

.zfin-cookie-modal h2 {
    margin: 0;
    font-size: 30px;
}

.zfin-cookie-modal-lead {
    margin: 13px 0 22px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.zfin-cookie-close {
    position: absolute;
    top: 15px;
    right: 16px;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.055);
    color: white;
    font-size: 21px;
    cursor: pointer;
}

.zfin-cookie-options {
    display: grid;
    gap: 10px;
}

.zfin-cookie-options label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.03);
}

.zfin-cookie-options strong,
.zfin-cookie-options small {
    display: block;
}

.zfin-cookie-options strong {
    font-size: 13px;
}

.zfin-cookie-options small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.zfin-cookie-options input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    accent-color: var(--orange);
}

.zfin-cookie-modal-actions {
    justify-content: flex-end;
    margin-top: 22px;
}

.zfin-cookie-policy-link {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

@media (max-width: 800px) {
    .zfin-cookie-banner-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .zfin-cookie-banner-actions {
        width: 100%;
    }

    .zfin-cookie-banner-actions button {
        flex: 1;
    }
}

@media (max-width: 620px) {
    .zfin-legal-header-inner {
        min-height: 67px;
    }

    .zfin-legal-back {
        font-size: 10px;
    }

    .zfin-legal-main {
        padding: 35px 0 70px;
    }

    .zfin-legal-document {
        padding: 28px 21px;
        border-radius: 18px;
    }

    .zfin-cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 16px;
    }

    .zfin-cookie-banner-actions,
    .zfin-cookie-modal-actions {
        flex-direction: column;
    }

    .zfin-cookie-banner-actions button,
    .zfin-cookie-modal-actions button {
        width: 100%;
    }

    .zfin-cookie-modal {
        padding: 28px 19px 21px;
    }
}
