:root {
    --fw-page: #ffffff;
    --fw-soft: #f6f7fb;
    --fw-card: #ffffff;
    --fw-text: #1E1545;
    --fw-muted: #6b6780;
    --fw-faint: #9a96ab;
    --fw-navy: #1E1545;
    --fw-purple: #4F3A9B;
    --fw-purple-hover: #6350B3;
    --fw-lavender: #ede9f5;
    --fw-accent: #4F3A9B;
    --fw-accent-dk: #1E1545;
    --fw-teal: #0d9488;
    --fw-line: #eceaf3;
    --fw-accent-lt: #ede9f5;
    --fw-teal-lt: #ccfbf1;
    --fw-radius: 16px;
    --fw-shadow: 0 1px 3px rgba(30, 21, 69, 0.06), 0 1px 2px rgba(30, 21, 69, 0.04);
    --fw-shadow-md: 0 18px 48px rgba(30, 21, 69, 0.10);
    --fw-shadow-btn: 0 8px 20px rgba(79, 58, 155, 0.22);
    --fw-wrap: 1440px;
    --fw-hero-wrap: 1440px;
    --fw-gutter: clamp(20px, 4vw, 56px);
    --fw-display: clamp(1.25rem, 0.8vw + 0.98rem, 1.5625rem);
    --fw-title: clamp(1.0625rem, 0.3vw + 0.96rem, 1.25rem);
    --fw-title-lg: clamp(1.125rem, 0.4vw + 0.98rem, 1.3125rem);
    --fw-lead: clamp(0.8125rem, 0.12vw + 0.78rem, 0.9375rem);
    --fw-lead-lh: 1.7;
    --fw-body: clamp(0.8125rem, 0.1vw + 0.79rem, 0.875rem);
    --fw-small: 0.75rem;
    --fw-kicker: clamp(0.6875rem, 0.1vw + 0.67rem, 0.75rem);
    --fw-card-title: 0.875rem;
    --fw-price: clamp(1.25rem, 0.55vw + 1.05rem, 1.5rem);
    --fw-nav: clamp(0.8125rem, 0.08vw + 0.79rem, 0.875rem);
    --fw-copy: clamp(0.8125rem, 0.08vw + 0.78rem, 0.875rem);
    --fw-btn: 0.8125rem;
    --fw-section-y: clamp(28px, 3.2vw, 36px);
    --fw-section-gap: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body.fino-site {
    font-family: Satoshi, Inter, system-ui, sans-serif;
    background: var(--fw-page);
    color: var(--fw-text);
    font-size: var(--fw-body);
    line-height: 1.65;
    overflow-x: clip;
}
body.fino-site.fino-nav-open { overflow: hidden; }
.fino-visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
body.fino-site.is-rtl {
    font-family: 'IBM Plex Sans Arabic', Cairo, Satoshi, Inter, system-ui, sans-serif;
    letter-spacing: 0;
    --fw-display: clamp(1.1875rem, 0.7vw + 0.96rem, 1.4375rem);
    --fw-title: clamp(1.0625rem, 0.25vw + 0.96rem, 1.1875rem);
    --fw-title-lg: clamp(1.0625rem, 0.32vw + 0.96rem, 1.25rem);
}
body.fino-site.is-rtl h1,
body.fino-site.is-rtl h2,
body.fino-site.is-rtl h3,
body.fino-site.is-rtl p,
body.fino-site.is-rtl a,
body.fino-site.is-rtl li,
body.fino-site.is-rtl span,
body.fino-site.is-rtl button,
body.fino-site.is-rtl .fino-kicker,
body.fino-site.is-rtl .fino-hero-trust,
body.fino-site.is-rtl .fino-hero--home h1,
body.fino-site.is-rtl .fino-site-links a {
    letter-spacing: 0;
}
.fino-site-wrap { width: min(var(--fw-wrap), calc(100% - (var(--fw-gutter) * 2))); margin: 0 auto; }
.fino-site-wrap--hero { width: min(var(--fw-hero-wrap), calc(100% - (var(--fw-gutter) * 2))); }

.fino-site-header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid #f0eef6;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.fino-site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(232, 228, 244, 0.9);
    box-shadow: 0 10px 30px rgba(30, 21, 69, 0.06);
}
.fino-site-nav {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 28px; min-height: 76px;
}
.fino-site-logo {
    justify-self: start;
    animation: fino-nav-in 0.55s cubic-bezier(.22, 1, .36, 1) both;
}
.fino-site-logo img {
    height: 48px; display: block;
    transition: transform 0.3s cubic-bezier(.22, 1, .36, 1);
}
.fino-site-logo:hover img { transform: scale(1.05); }
.fino-site-links { display: flex; align-items: center; justify-content: flex-start; gap: 22px; }
.fino-site-links-extra { display: none; }
.fino-site-toggle {
    display: none; align-items: center; justify-content: center;
    width: 40px; height: 40px; padding: 0; border: 1px solid var(--fw-line);
    border-radius: 10px; background: #fff; color: var(--fw-navy);
    cursor: pointer; font-size: 22px;
}
.fino-site-toggle [data-close] { display: none; }
.fino-site-header.is-open .fino-site-toggle [data-open] { display: none; }
.fino-site-header.is-open .fino-site-toggle [data-close] { display: inline; }
.fino-site-links a, .fino-site-ghost {
    color: var(--fw-navy); text-decoration: none;
    font-weight: 800; font-size: var(--fw-nav); letter-spacing: -0.01em;
    font-family: Satoshi, Inter, system-ui, sans-serif;
}
body.fino-site.is-rtl .fino-site-links a,
body.fino-site.is-rtl .fino-site-ghost,
body.fino-site.is-rtl .fino-site-signin,
body.fino-site.is-rtl .fino-site-cta {
    font-family: Cairo, 'IBM Plex Sans Arabic', Satoshi, sans-serif;
}
.fino-site-links a {
    position: relative;
    transition: color 0.22s ease;
    animation: fino-nav-in 0.55s cubic-bezier(.22, 1, .36, 1) both;
}
.fino-site-links a:nth-child(1) { animation-delay: 0.06s; }
.fino-site-links a:nth-child(2) { animation-delay: 0.11s; }
.fino-site-links a:nth-child(3) { animation-delay: 0.16s; }
.fino-site-links a:nth-child(4) { animation-delay: 0.21s; }
.fino-site-links a:nth-child(5) { animation-delay: 0.26s; }
.fino-site-links a::after {
    content: ''; position: absolute; inset-inline: 0; bottom: -9px;
    height: 2.5px; background: var(--fw-purple); border-radius: 2px;
    transform: scaleX(0); transform-origin: center;
    transition: transform 0.28s cubic-bezier(.22, 1, .36, 1);
}
.fino-site-links a.is-active, .fino-site-links a:hover { color: var(--fw-purple); }
.fino-site-links a.is-active::after,
.fino-site-links a:hover::after { transform: scaleX(1); }
.fino-site-actions { display: flex; align-items: center; justify-self: end; gap: 12px; }
.fino-site-header .fino-site-cta {
    min-width: 0;
    min-height: 42px;
    padding: 10px 20px;
}
.fino-site-actions > * {
    animation: fino-nav-in 0.55s cubic-bezier(.22, 1, .36, 1) both;
}
.fino-site-actions > *:nth-child(1) { animation-delay: 0.22s; }
.fino-site-actions > *:nth-child(2) { animation-delay: 0.28s; }
.fino-site-actions > *:nth-child(3) { animation-delay: 0.34s; }
.fino-lang-switch {
    display: inline-flex; align-items: center; gap: 8px;
    height: 42px; padding: 4px 5px 4px 10px;
    border-radius: 999px; text-decoration: none;
    background: #EBEAF4; color: #3F3D89;
    box-sizing: border-box; flex: none; direction: ltr;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.fino-lang-switch i {
    display: flex; align-items: center; justify-content: center;
    width: 20px; height: 34px; flex: none;
    font-size: 18px; line-height: 1; color: #4F3A9B;
}
.fino-lang-switch-opts {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 34px;
    min-width: 92px;
    background: #fff;
    border-radius: 999px;
    padding: 2px;
    box-shadow: inset 0 0 0 1px rgba(79, 58, 155, 0.08);
    isolation: isolate;
}
.fino-lang-switch-opts::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 2px; bottom: 2px; left: 2px;
    width: calc(50% - 2px);
    border-radius: 999px;
    background: var(--fw-purple);
    box-shadow: 0 4px 10px rgba(79, 58, 155, 0.22);
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(.22, 1, .36, 1);
}
.fino-lang-switch-opts.is-en::before {
    transform: translateX(100%);
}
.fino-lang-switch-opt {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #6b6780;
    line-height: 1;
    font-family: Satoshi, Inter, system-ui, sans-serif;
    transition: color 0.22s ease;
}
.fino-lang-switch-opts.is-ar .fino-lang-switch-opt:first-child,
.fino-lang-switch-opts.is-en .fino-lang-switch-opt:last-child {
    color: #fff;
}
.fino-lang-switch:hover {
    background: #e0def0; transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(30, 21, 69, 0.08);
}
.fino-lang-switch:hover .fino-lang-switch-opts::before {
    box-shadow: 0 6px 14px rgba(79, 58, 155, 0.28);
}
.fino-site-signin {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 8px;
    height: 42px; padding: 4px 16px 4px 5px;
    border-radius: 999px; text-decoration: none; flex: none;
    background: #fff; color: var(--fw-navy);
    border: 1.5px solid #d8d2ee;
    box-shadow: 0 6px 16px rgba(79, 58, 155, 0.10);
    font-weight: 800; font-size: var(--fw-btn); letter-spacing: 0;
    box-sizing: border-box;
    transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}
body.fino-site.is-rtl .fino-site-signin { padding: 4px 5px 4px 16px; }
.fino-site-signin-ico {
    width: 30px; height: 30px; border-radius: 50%; flex: none;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, #7a66e8 0%, #4F3A9B 100%);
    color: #fff; box-shadow: 0 4px 10px rgba(79, 58, 155, 0.28);
}
.fino-site-signin-ico i { font-size: 16px; line-height: 1; }
.fino-site-signin::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: fino-shimmer 3.8s ease-in-out 0.8s infinite;
    pointer-events: none;
}
.fino-site-signin:hover {
    transform: translateY(-2px);
    border-color: #4F3A9B;
    background: #faf8ff;
    box-shadow: 0 12px 26px rgba(79, 58, 155, 0.18);
    color: var(--fw-navy);
}
.fino-site-cta, .fino-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--fw-purple);
    color: #fff; text-decoration: none; font-weight: 800; border-radius: 999px;
    min-width: 168px; min-height: 46px; padding: 12px 28px;
    border: 0; cursor: pointer; box-shadow: none; box-sizing: border-box;
    text-align: center; font-size: var(--fw-btn);
}
.fino-site-cta {
    position: relative; overflow: hidden;
    box-shadow: 0 8px 18px rgba(79, 58, 155, 0.20);
    transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}
.fino-site-cta::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: fino-shimmer 3.6s ease-in-out 1.2s infinite;
}
.fino-site-cta:hover, .fino-btn:hover { background: var(--fw-purple-hover); }
.fino-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(.22, 1, .36, 1), background 0.2s ease, box-shadow 0.25s ease;
}
.fino-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 26px rgba(79, 58, 155, 0.28);
}
.fino-btn:active { transform: scale(0.98); }
.fino-site-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(79, 58, 155, 0.28);
}
.fino-btn-ghost, .fino-site-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    color: #3F3D89; text-decoration: none;
    border: 0; border-radius: 999px;
    min-width: 168px; min-height: 46px; padding: 12px 28px;
    font-weight: 700; background: #EBEAF4; box-shadow: none;
    box-sizing: border-box;     text-align: center; font-size: var(--fw-btn);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.fino-btn-ghost:hover, .fino-site-ghost:hover {
    background: #e0def0; color: #3F3D89; border: 0; transform: translateY(-1px);
}
body.fino-site.is-rtl .fino-btn .ti-arrow-right,
body.fino-site.is-rtl .fino-feature a .ti-arrow-right { transform: scaleX(-1); }

.fino-kicker {
    color: var(--fw-accent); font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; font-size: var(--fw-kicker); line-height: 1.4; margin: 0 0 10px;
}
.fino-kicker a { color: inherit; text-decoration: none; }
.fino-kicker a:hover { text-decoration: underline; }
body.fino-site.is-rtl .fino-kicker {
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--fw-kicker);
    line-height: 1.5;
}
body.fino-site.is-rtl .fino-section h2,
body.fino-site.is-rtl .fino-center h2,
body.fino-site.is-rtl .fino-ask-grid h2,
body.fino-site.is-rtl .fino-problem-grid h2,
body.fino-site.is-rtl .fino-faq-home h2,
body.fino-site.is-rtl .fino-intel-grid h2,
body.fino-site.is-rtl .fino-hub-intro h2,
body.fino-site.is-rtl .fino-cta-band h2,
body.fino-site.is-rtl .fino-cta-purple h2,
body.fino-site.is-rtl .fino-cta-dark-box h2 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
    line-height: 1.5;
}
body.fino-site.is-rtl .fino-center h2.fino-title-oneline {
    white-space: normal;
    max-width: none;
}
body.fino-site.is-rtl .fino-section-lead,
body.fino-site.is-rtl .fino-faq-home > div:first-child p,
body.fino-site.is-rtl .fino-hero--home .fino-hero-copy > p:not(.fino-hero-trust):not(.fino-hero-badge) {
    font-size: var(--fw-lead);
    line-height: 1.8;
}
.fino-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 56px;
    background: linear-gradient(145deg, #eff6ff 0%, #e0f2fe 48%, #ccfbf1 100%);
}
.fino-hero--home {
    padding: 28px 0 12px;
    background: #fff;
    overflow: visible;
}
body.fino-page-home .fino-hero--home .fino-site-wrap--hero {
    width: min(1220px, calc(100% - 40px));
}
.fino-hero--home .fino-hero-grid {
    gap: 24px 28px;
    align-items: start;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}
.fino-hero-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 0; min-height: 42px; margin: 0 0 22px; padding: 10px 28px;
    background: #EBEAF4; color: #3F3D89;
    border-radius: 999px; font-size: var(--fw-kicker); font-weight: 700;
    letter-spacing: 0; text-transform: none;
    text-align: center; white-space: nowrap; box-sizing: border-box;
    border: 0; box-shadow: none;
}
.fino-section--plans .fino-hero-badge {
    min-height: 0;
    margin: 0 0 10px;
    padding: 8px 18px;
    font-size: var(--fw-kicker);
    font-weight: 800;
    color: #2F2C6E;
    line-height: 1.35;
}
body.fino-site.is-rtl .fino-hero-badge,
body.fino-site.is-rtl .fino-btn-ghost,
body.fino-site.is-rtl .fino-site-ghost {
    font-family: Cairo, 'IBM Plex Sans Arabic', Satoshi, sans-serif;
}
body.fino-site.is-rtl .fino-section--plans .fino-hero-badge {
    font-size: var(--fw-kicker);
    line-height: 1.5;
    padding: 8px 18px;
}
.fino-hero-copy {
    min-width: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    gap: 10px;
}
.fino-hero--home .fino-hero-copy {
    padding-top: 6px;
    gap: 10px;
}
.fino-hero--home h1 {
    font-size: var(--fw-display); line-height: 1.35; margin: 0;
    letter-spacing: -0.03em; color: var(--fw-navy); font-weight: 700;
    max-width: none; white-space: normal; overflow-wrap: normal; word-break: normal;
}
body.fino-site.is-rtl .fino-hero--home h1 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
    max-width: none;
    white-space: normal;
    font-size: var(--fw-display);
    line-height: 1.5;
}
.fino-hero--home .fino-hero-badge { margin: 0; }
body.fino-page-home .fino-section h2,
body.fino-page-home .fino-center h2,
body.fino-page-home .fino-ask-grid h2,
body.fino-page-home .fino-problem-grid h2,
body.fino-page-home .fino-faq-home h2,
body.fino-page-home .fino-cta-purple h2,
body.fino-page-home .fino-cta-dark-box h2,
body.fino-page-home .fino-kicker,
body.fino-page-home .fino-center h2.fino-title-oneline {
    max-width: none;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}
body.fino-page-home:not(.is-rtl) .fino-hero--home h1 {
    font-size: var(--fw-display);
    letter-spacing: -0.02em;
}
body.fino-page-home:not(.is-rtl) .fino-cta-purple h2 {
    font-size: var(--fw-title-lg);
    white-space: normal;
}
.fino-hero--home .fino-hero-copy > p:not(.fino-hero-trust):not(.fino-hero-badge) {
    max-width: none; font-size: var(--fw-lead); line-height: var(--fw-lead-lh); color: #5a5670; margin: 0;
}
.fino-hero--home .fino-hero-actions {
    position: relative;
    z-index: 1;
    margin: 4px 0 0;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.fino-hero--home .fino-btn {
    min-width: 0;
    width: auto;
    flex: none;
}
.fino-hero-textlink {
    color: var(--fw-navy); text-decoration: none; font-weight: 700; font-size: var(--fw-body);
    white-space: nowrap; line-height: 1;
}
.fino-hero-textlink:hover { color: var(--fw-purple); }
.fino-hero--home .fino-hero-trust {
    position: relative;
    z-index: 0;
    margin: 2px 0 0;
    max-width: 42em;
    color: #8b87a0;
    font-size: var(--fw-small);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0;
    text-transform: none;
}
.fino-hero-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.fino-hero-orb--tr {
    top: -140px; inset-inline-end: -80px; width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.12) 0%, transparent 70%);
}
.fino-hero-orb--bl {
    bottom: -100px; inset-inline-start: -60px; width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.14) 0%, transparent 70%);
}
.fino-hero-dots {
    position: absolute; top: 0; inset-inline-end: 0; width: 220px; height: 220px;
    opacity: 0.16; pointer-events: none;
}
.fino-hero-wave {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 72px;
    opacity: 0.14; pointer-events: none;
}
.fino-hero-wave path { fill: #0d9488; }
.fino-hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr); gap: 48px; align-items: center;
}
.fino-hero h1 {
    font-size: var(--fw-display); line-height: 1.25; margin: 0 0 16px;
    letter-spacing: -0.03em;
}
.fino-hero h1 em {
    font-style: normal;
    color: var(--fw-purple);
}
.fino-hero p:not(.fino-hero-badge):not(.fino-hero-trust) { max-width: 560px; color: var(--fw-muted); font-size: var(--fw-lead); margin: 0; }
.fino-proof {
    display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px;
    margin: 0 0 14px; padding: 6px 12px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(186, 230, 253, 0.8);
    color: var(--fw-accent-dk); font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
}
.fino-hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.fino-hero-actions-center { justify-content: center; }
.fino-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 0; margin-top: 28px; color: var(--fw-muted); font-size: 13px; }
.fino-trust span { display: inline-flex; align-items: center; gap: 6px; }
.fino-trust i { color: var(--fw-accent); }
.fino-trust-sep { margin: 0 12px; color: #cbd5e1; }

.fino-dash {
    min-width: 0;
    background: #fff;
    border: 1px solid #efeef6;
    border-radius: 20px;
    padding: 16px 16px 14px;
    box-shadow: 0 24px 60px rgba(22, 14, 61, 0.10), 0 0 0 1px rgba(91, 71, 212, 0.04);
}
.fino-dash-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    margin-bottom: 14px; padding: 2px 4px 12px;
    border-bottom: 1px solid #f1f0f6;
    font-size: 13px; font-weight: 600; color: #8b87a0;
}
.fino-dash-brand {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--fw-navy); font-weight: 800; letter-spacing: 0.02em;
}
.fino-dash-tabs { display: flex; gap: 16px; }
.fino-dash-mark {
    width: 22px; height: 22px; border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--fw-purple); color: #fff; font-size: 11px; font-weight: 800;
}
.fino-dash-tab.is-on { color: var(--fw-purple); }
.fino-dash-kpis {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.fino-dash-kpi {
    background: #f7f6fb; border-radius: 12px; padding: 12px 12px 10px;
}
.fino-dash-kpi span {
    display: block; color: #9a96ab; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.fino-dash-kpi strong {
    display: block; margin-top: 6px; color: var(--fw-navy);
    font-size: clamp(14px, 1.6vw, 18px); letter-spacing: -0.03em;
    overflow-wrap: normal; white-space: nowrap;
}
.fino-dash-body {
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 12px; margin-top: 12px;
}
.fino-dash-chart, .fino-dash-txns {
    background: #faf9fd; border-radius: 12px; padding: 14px;
}
.fino-dash-chart-head {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: 600; color: var(--fw-navy);
}
.fino-dash-chart-head em {
    font-style: normal; color: #16a34a; background: #e9f9ef;
    border-radius: 6px; padding: 2px 7px; font-size: 11px; font-weight: 700;
}
.fino-dash-bars {
    display: flex; align-items: flex-end; gap: 8px; height: 118px; margin-top: 16px;
}
.fino-dash-bars span {
    flex: 1; border-radius: 6px 6px 3px 3px; background: #dcd8ea;
}
.fino-dash-bars span.is-accent { background: var(--fw-purple); }
.fino-dash-txns ul { list-style: none; margin: 10px 0 0; padding: 0; }
.fino-dash-txns li {
    display: flex; justify-content: space-between; gap: 10px;
    padding: 9px 0; border-top: 1px solid #eeeaf6; font-size: 12px;
}
.fino-dash-txns li:first-child { border-top: 0; }
.fino-dash-txns b { display: block; font-weight: 600; color: var(--fw-navy); }
.fino-dash-txns small { display: block; color: #9a96ab; font-size: 11px; font-weight: 500; }
.fino-dash-txns em { font-style: normal; font-weight: 700; white-space: nowrap; }
.fino-dash-txns em.is-neg { color: #dc2626; }
.fino-dash-txns em.is-pos { color: #16a34a; }
.fino-dash-ask {
    display: flex; align-items: center; gap: 10px;
    margin-top: 12px; padding: 12px 14px;
    background: var(--fw-lavender); border-radius: 12px;
    color: #6b5fad; font-size: 13px; font-weight: 500;
}
.fino-dash-ask i { color: var(--fw-purple); font-size: 16px; }
.fino-logos {
    background: #f7f6fb; padding: 14px 0;
    border-block: 1px solid #efeaf6;
}
.fino-logos-row {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 10px 36px; color: #5a5670;
}
body.fino-page-home .fino-logos .fino-site-wrap--hero {
    width: min(1080px, calc(100% - 40px));
}

body.fino-page-home {
    --fw-section-y: clamp(18px, 2vw, 26px);
    --fw-section-gap: 12px;
    --fw-wrap: 1200px;
    --fw-gutter: clamp(16px, 3vw, 32px);
}
body.fino-page-home .fino-problem-grid,
body.fino-page-home .fino-ask-grid {
    gap: 20px 24px;
    align-items: start;
}
body.fino-page-home .fino-section-lead,
body.fino-page-home .fino-ask-grid .fino-section-lead,
body.fino-page-home .fino-problem-grid .fino-section-lead,
body.fino-page-home .fino-faq-home > div:first-child p,
body.fino-page-home .fino-center .fino-section-lead {
    max-width: none;
}
body.fino-page-home .fino-grid { gap: 14px; }
body.fino-page-home .fino-feature { padding: 18px 16px; }
body.fino-page-home .fino-feature p { margin-bottom: 10px; }
body.fino-page-home .fino-icon { margin-bottom: 10px; }
body.fino-page-home .fino-module { padding: 16px 14px; }
body.fino-page-home .fino-module-grid { gap: 12px; }
body.fino-page-home .fino-problem-visual { padding: 20px 18px; }
body.fino-page-home .fino-steps { gap: 16px; margin-top: 16px; }
body.fino-page-home .fino-faq-home { gap: 18px 24px; }
body.fino-page-home .fino-price-card { padding: 22px 20px; }
body.fino-page-home .fino-price-card.is-featured { padding-top: 42px; }
body.fino-page-home .fino-price-card .fino-price { margin: 12px 0; }
body.fino-page-home .fino-price-list { margin-bottom: 16px; }
body.fino-page-home .fino-section h2,
body.fino-page-home .fino-center h2 { margin-bottom: 8px; }
body.fino-page-home .fino-cta-purple { padding: 28px 0; }
body.fino-page-home .fino-cta-purple p { margin-bottom: 14px; }
body.fino-page-home .fino-demo-form { margin-bottom: 16px; }
body.fino-page-home .fino-cta-actions { margin-bottom: 16px; }
body.fino-page-home .fino-site-footer { padding: 32px 0 18px; }
body.fino-page-home .fino-site-footer-grid { gap: 24px 20px; }
body.fino-page-home .fino-site-copy { margin-top: 20px; padding-top: 14px; }
.fino-logo-mark {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 700; letter-spacing: 0; color: #5a5670;
}
.fino-logo-mark i {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--fw-purple); display: inline-block;
}
.fino-logos-row .fino-logo-mark:nth-child(2) i { border-radius: 4px; }
.fino-logos-row .fino-logo-mark:nth-child(3) i { transform: rotate(45deg); border-radius: 3px; }
.fino-logos-row .fino-logo-mark:nth-child(4) i { border-radius: 4px 4px 8px 8px; }
.fino-logos-row .fino-logo-mark:nth-child(5) i { clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); border-radius: 0; }

.fino-preview, .fino-app {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--fw-shadow-md);
    backdrop-filter: blur(12px);
}
.fino-app { padding: 14px; }
.fino-app-bar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    margin-bottom: 12px; padding: 8px 10px; border-radius: 12px;
    background: #0f172a; color: #e2e8f0; font-size: 12px; font-weight: 600;
}
.fino-app-brand {
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    color: #fff; border-radius: 8px; padding: 3px 8px; letter-spacing: 0.04em;
}
.fino-app-tab { color: #94a3b8; }
.fino-app-tab.is-on { color: #fff; }
.fino-app-live {
    margin-inline-start: auto; color: #6ee7b7; font-size: 11px;
}
.fino-app-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 12px; margin-top: 12px; }
.fino-feed, .fino-app .fino-preview-chart {
    background: #fff; border: 1px solid var(--fw-line); border-radius: 14px; padding: 14px 16px 10px;
}
.fino-feed-head, .fino-preview-chart-head {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: 600; color: #475569;
}
.fino-feed-list { list-style: none; margin: 10px 0 0; padding: 0; }
.fino-feed-list li {
    display: grid; grid-template-columns: 72px 1fr auto; gap: 8px; align-items: center;
    padding: 8px 0; border-top: 1px solid var(--fw-line); font-size: 12px;
}
.fino-feed-list li:first-child { border-top: 0; }
.fino-feed-list span { font-weight: 700; color: var(--fw-text); }
.fino-feed-list em { font-style: normal; color: var(--fw-muted); }
.fino-feed-list b { font-weight: 600; color: #059669; }
.fino-metrics {
    background: #0f172a; color: #e2e8f0; padding: 28px 0;
}
.fino-metrics-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.fino-metrics strong { display: block; font-size: 16px; margin-bottom: 4px; color: #fff; }
.fino-metrics span { color: #94a3b8; font-size: 13px; }
.fino-marquee {
    overflow: hidden; border-bottom: 1px solid var(--fw-line);
    background: #fff; padding: 16px 0;
}
.fino-marquee-track {
    display: flex; gap: 28px; width: max-content;
    animation: fino-marquee 36s linear infinite;
}
.fino-marquee-track span {
    color: var(--fw-muted); font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
    text-transform: uppercase; white-space: nowrap;
}
body.fino-site.is-rtl .fino-marquee-track { animation-name: fino-marquee-rtl; }
@keyframes fino-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes fino-marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}
.fino-flow {
    margin-top: 28px; background: #fff; border: 1px solid var(--fw-line);
    border-radius: var(--fw-radius); padding: 22px 24px; box-shadow: var(--fw-shadow);
}
.fino-flow-label {
    margin: 0 0 10px; color: var(--fw-accent); font-weight: 700;
    font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
}
.fino-flow-steps {
    display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 12px; padding: 0;
}
.fino-flow-steps li {
    background: var(--fw-accent-lt); color: var(--fw-accent-dk);
    border-radius: 999px; padding: 6px 12px; font-weight: 700; font-size: 13px;
}
.fino-flow p { margin: 0; color: var(--fw-muted); }
.fino-table-wrap { overflow-x: auto; border: 1px solid var(--fw-line); border-radius: var(--fw-radius); background: #fff; }
.fino-compare { width: 100%; border-collapse: collapse; min-width: 720px; }
.fino-compare th, .fino-compare td {
    padding: 14px 16px; text-align: start; border-bottom: 1px solid var(--fw-line);
    font-size: 14px; vertical-align: top;
}
.fino-compare thead th {
    background: #f8fafc; font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.04em; color: var(--fw-muted);
}
.fino-compare tbody th { width: 18%; color: var(--fw-text); font-size: 13px; }
.fino-compare td { color: var(--fw-muted); }
.fino-compare tbody td:last-child { color: var(--fw-accent-dk); font-weight: 600; background: #f0f9ff; }
.fino-compare tbody tr:last-child th, .fino-compare tbody tr:last-child td { border-bottom: 0; }
.fino-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fino-stat-card {
    background: #fff; border: 1px solid var(--fw-line); border-radius: 14px; padding: 16px 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fino-stat-card:hover { transform: translateY(-2px); box-shadow: var(--fw-shadow-md); }
.fino-stat-label { color: var(--fw-muted); font-size: 12px; font-weight: 500; }
.fino-stat-value { font-size: 22px; font-weight: 700; margin-top: 4px; letter-spacing: -0.03em; }
.fino-stat-change { color: var(--fw-teal); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; margin-top: 4px; }
.fino-stat-change.up { color: #059669; }
.fino-preview-chart {
    margin-top: 12px; background: #fff; border: 1px solid var(--fw-line);
    border-radius: 14px; padding: 16px 18px 12px;
}
.fino-preview-chart-head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 600; color: #475569; }
.fino-preview-badge {
    font-size: 12px; font-weight: 600; color: #059669; background: #ecfdf5;
    border: 1px solid #a7f3d0; border-radius: 6px; padding: 3px 9px;
}
.fino-preview-bars { display: flex; align-items: flex-end; gap: 5px; height: 80px; margin-top: 12px; }
.fino-preview-bars span {
    flex: 1; border-radius: 4px 4px 2px 2px; background: rgba(8, 145, 178, 0.14);
}
.fino-preview-bars span.is-accent {
    background: linear-gradient(180deg, #0891b2 0%, #0d9488 100%);
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.32);
}
.fino-preview-days {
    display: flex; justify-content: space-between; font-size: 11px; color: var(--fw-faint); margin-top: 8px;
}

.fino-grid { display: grid; gap: 18px; }
.fino-grid-3 { grid-template-columns: repeat(3, 1fr); }
.fino-grid-2 { grid-template-columns: repeat(2, 1fr); }
.fino-card {
    background: var(--fw-card); border: 1px solid var(--fw-line);
    border-radius: var(--fw-radius); padding: 24px; box-shadow: var(--fw-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fino-card-plan {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
}
.fino-card-plan-compact {
    min-height: 300px;
}
.fino-card-plan .fino-badge,
.fino-card-plan .fino-badge-slot {
    min-height: 24px;
    margin-bottom: 10px;
}
.fino-card-plan .fino-card-desc {
    min-height: 3.3em;
}
.fino-card-plan .fino-list {
    flex: 1 1 auto;
    margin-bottom: 0;
}
.fino-card-plan .fino-card-action,
.fino-card-plan > .fino-btn {
    margin-top: auto;
    padding-top: 18px;
}
.fino-card:hover { transform: translateY(-3px); box-shadow: var(--fw-shadow-md); }
.fino-card.is-featured {
    border-color: #bae6fd;
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.12);
}
.fino-badge {
    display: inline-flex; margin-bottom: 10px; font-size: 11px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase; color: var(--fw-accent);
    background: var(--fw-accent-lt); border-radius: 999px; padding: 4px 10px;
}
.fino-card h3 { margin: 0 0 8px; font-size: var(--fw-card-title); }
.fino-card p { margin: 0; color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-icon {
    width: 40px; height: 40px; border-radius: 12px; display: inline-flex;
    align-items: center; justify-content: center; margin-bottom: 14px;
    background: var(--fw-accent-lt); color: var(--fw-accent); font-size: 20px;
}
.fino-section { padding: var(--fw-section-y) 0; }
.fino-section--features, .fino-section--problem, .fino-section--modules, .fino-section--ask, .fino-section--plans, .fino-section--faq, #how, #compare { scroll-margin-top: 88px; }
.fino-section-tight { padding-top: 0; }
.fino-section > .fino-site-wrap > .fino-center:first-child {
    margin-bottom: var(--fw-section-gap);
}
.fino-section h2 {
    font-size: var(--fw-title);
    line-height: 1.35;
    margin: 0 0 12px;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--fw-navy);
    max-width: none;
}
.fino-section-lead {
    color: #5a5670;
    margin: 0 0 16px;
    max-width: 40em;
    font-size: var(--fw-lead);
    line-height: var(--fw-lead-lh);
}
.fino-step {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--fw-accent-lt); color: var(--fw-accent);
    font-weight: 700; margin-bottom: 12px;
}
.fino-card-action { margin-top: 16px; }
.fino-section-more { margin-top: var(--fw-section-gap); }
.fino-section-more .fino-btn { width: auto; min-width: 0; }
.fino-period { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.fino-period a, .fino-period button {
    border: 1px solid var(--fw-line); background: #fff; color: var(--fw-muted);
    border-radius: 999px; padding: 8px 14px; text-decoration: none; font-weight: 600; cursor: pointer;
}
.fino-period a.is-active, .fino-period button.is-active {
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    color: #fff; border-color: transparent;
}
.fino-price { font-size: var(--fw-price); font-weight: 700; margin: 10px 0 16px; letter-spacing: -0.03em; }
.fino-price small { font-size: var(--fw-copy); color: var(--fw-muted); font-weight: 500; }
.fino-list { list-style: none; padding: 0; margin: 0 0 18px; color: var(--fw-muted); }
.fino-list li { padding: 6px 0; border-top: 1px solid var(--fw-line); }
.fino-list li:first-child { border-top: 0; }
.fino-form { display: grid; gap: 14px; max-width: 640px; }
.fino-form label { font-weight: 600; display: grid; gap: 6px; }
.fino-form input, .fino-form textarea, .fino-form select {
    width: 100%; border-radius: 12px; border: 1px solid var(--fw-line);
    background: #f8fafc; color: var(--fw-text); padding: 12px 14px; font: inherit;
}
.fino-form input:focus, .fino-form textarea:focus {
    outline: 2px solid #bae6fd; border-color: var(--fw-accent);
}
.fino-form-phone .js-country-phone-group { margin: 0; }
.fino-form-phone .form-label { display: block; margin-bottom: 6px; }
.fino-form-phone .fino-phone-input-group {
    display: flex; align-items: stretch;
    border: 1px solid var(--fw-line); border-radius: 12px; background: #f8fafc;
}
.fino-form-phone .fino-phone-input-group:focus-within {
    outline: 2px solid #bae6fd; border-color: var(--fw-accent);
}
.fino-form-phone .fino-phone-flag { display: none; }
.fino-form-phone .fino-phone-icon {
    display: inline-flex; align-items: center; padding-inline-start: 12px; color: var(--fw-muted);
}
.fino-form-phone .js-country-phone-group,
.fino-form-phone .fino-phone-input-group { position: relative; }
.fino-form-phone .fino-phone-code-select {
    position: absolute !important; width: 1px !important; height: 1px !important;
    opacity: 0 !important; pointer-events: none !important;
}
.fino-form-phone .fino-phone-code-btn {
    display: inline-flex; align-items: center; gap: 4px; min-width: 4.5rem;
    padding: 12px 10px; border: 0; background: transparent; font: inherit; font-weight: 700;
    color: var(--fw-text); cursor: pointer;
}
.fino-form-phone .fino-phone-code-menu[hidden] { display: none !important; }
.fino-form-phone .fino-phone-code-menu {
    position: absolute; top: calc(100% + 6px); inset-inline-start: 0; z-index: 20;
    width: 7.5rem; max-height: 200px; overflow-y: auto; padding: 6px;
    border: 1px solid var(--fw-line); border-radius: 12px; background: #fff;
    box-shadow: 0 10px 24px rgba(30, 21, 69, .12);
}
.fino-form-phone .fino-phone-code-option {
    display: block; width: 100%; padding: 7px 10px; border: 0; border-radius: 8px;
    background: transparent; color: var(--fw-text); font-weight: 600; text-align: start;
}
.fino-form-phone .fino-phone-code-option:hover { background: var(--fw-lavender); }
.fino-form-phone .fino-phone-number-input {
    border: 0 !important; background: transparent !important; box-shadow: none !important;
    padding: 12px 10px; font: inherit; color: var(--fw-text);
}
.fino-form-phone .fino-phone-divider { width: 1px; margin: 10px 0; background: var(--fw-line); }
.fino-form-phone .js-country-phone-help { font-size: 12px; color: var(--fw-muted); font-weight: 500; }
.fino-alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; }
.fino-alert-ok { background: #ecfdf5; color: #047857; }
.fino-alert-err { background: #fef2f2; color: #b91c1c; }
.fino-cta-band {
    background: linear-gradient(145deg, #eff6ff 0%, #e0f2fe 50%, #ccfbf1 100%);
    border: 1px solid #dbeafe; border-radius: 24px; padding: 48px 28px; text-align: center;
    position: relative; overflow: hidden;
}
.fino-cta-band h2 { margin: 0 0 10px; font-size: var(--fw-title-lg); }
.fino-cta-band p { margin: 0 auto; max-width: 560px; color: var(--fw-muted); font-size: var(--fw-lead); }
.fino-center { text-align: center; }
.fino-center .fino-section-lead, .fino-center h2 { margin-inline: auto; }
.fino-center h2 {
    font-size: var(--fw-title-lg);
    max-width: none;
    line-height: 1.3;
}
.fino-center h2.fino-title-oneline {
    max-width: none;
    white-space: normal;
}
.fino-center .fino-section-lead { max-width: 42em; }
.fino-grid-4 { grid-template-columns: repeat(4, 1fr); }
.fino-feature {
    background: #fff; border: 1px solid var(--fw-line); border-radius: 16px;
    padding: 24px 22px; box-shadow: var(--fw-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.fino-feature:hover {
    transform: translateY(-6px);
    border-color: #d8d2ee;
    box-shadow: 0 18px 40px rgba(79, 58, 155, 0.12);
}
.fino-feature.is-accent { border-color: var(--fw-line); }
.fino-feature h3 { margin: 0 0 8px; font-size: var(--fw-card-title); }
.fino-feature p { margin: 0 0 16px; color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-feature a {
    color: var(--fw-purple); text-decoration: none; font-weight: 600; font-size: var(--fw-copy);
    display: inline-flex; align-items: center; gap: 4px;
}
.fino-feature a:hover { text-decoration: underline; }
.fino-icon--blue { background: #e8f1ff; color: #3b6fd4; }
.fino-section--problem { background: #f4f6fb; }
.fino-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.fino-stat-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.fino-stat-list li {
    padding-inline-start: 16px; border-inline-start: 3px solid var(--fw-purple);
}
.fino-stat-list strong { display: block; font-size: var(--fw-price); letter-spacing: -0.03em; }
.fino-stat-list span { color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-problem-visual {
    background: #ece8fb; border-radius: 20px; padding: 28px 24px;
}
.fino-problem-tools {
    display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px;
}
.fino-problem-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border-radius: 999px; padding: 10px 14px;
    font-size: 13px; font-weight: 600; color: var(--fw-navy);
    box-shadow: var(--fw-shadow);
}
.fino-problem-pill i { color: #dc2626; }
.fino-problem-nosync {
    color: #dc2626; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; border-bottom: 1px dashed #f0a0a0; padding-bottom: 2px;
}
.fino-hub {
    background: #fff; border: 1px solid #86efac; border-radius: 16px; padding: 16px;
}
.fino-hub-head {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
    font-weight: 700;
}
.fino-hub-head span { display: inline-flex; align-items: center; gap: 8px; }
.fino-hub-head i {
    width: 10px; height: 10px; border-radius: 3px; background: #16a34a; display: inline-block;
}
.fino-hub-head em { font-style: normal; color: #16a34a; font-size: 13px; }
.fino-hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fino-hub-grid div {
    background: #ecfdf3; border-radius: 10px; padding: 12px; color: var(--fw-muted); font-size: 13px;
}
.fino-hub-grid b { display: block; color: var(--fw-navy); margin-top: 4px; }
.fino-module-grid { gap: 16px; }
.fino-module {
    display: flex; gap: 14px; align-items: flex-start;
    background: #4c3d9a; color: #fff; border-radius: 14px; padding: 20px 18px;
    box-shadow: 0 10px 24px rgba(76, 61, 154, 0.18);
}
.fino-module h3 { margin: 0 0 4px; font-size: var(--fw-card-title); color: #fff; }
.fino-module p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: var(--fw-copy); }
.fino-module-icon {
    width: 40px; height: 40px; border-radius: 10px; flex: 0 0 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0, 0, 0, 0.18); font-size: 20px;
}
.fino-kicker--icon { display: inline-flex; align-items: center; gap: 6px; }
.fino-ask-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.fino-ask-grid > div:first-child,
.fino-problem-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.fino-ask-grid h2,
.fino-problem-grid h2 {
    font-size: var(--fw-title);
    line-height: 1.4;
    margin: 0 0 10px;
    max-width: none;
    white-space: normal;
}
.fino-ask-grid .fino-section-lead,
.fino-problem-grid .fino-section-lead {
    font-size: var(--fw-lead);
    line-height: var(--fw-lead-lh);
    margin: 0 0 14px;
    max-width: 36em;
}
.fino-ask-points { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.fino-ask-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: var(--fw-body); }
.fino-ask-points i { color: var(--fw-purple); }
.fino-chat {
    background: #fff; border: 1px solid var(--fw-line); border-radius: 20px;
    padding: 18px; box-shadow: var(--fw-shadow-md);
}
.fino-chat-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.fino-chat-head strong { display: flex; align-items: center; gap: 6px; }
.fino-chat-head em { display: block; font-style: normal; color: #16a34a; font-size: 12px; font-weight: 600; margin-top: 4px; }
.fino-chat-head span {
    background: #f3f1f8; color: #8b87a0; border-radius: 999px; padding: 4px 10px;
    font-size: 11px; font-weight: 700;
}
.fino-chat-user {
    margin-inline-start: auto; max-width: 86%;
    background: #f3f1f8; border-radius: 14px 14px 4px 14px; padding: 12px 14px;
    font-size: 13px; margin-bottom: 12px;
}
body.fino-site.is-rtl .fino-chat-user { border-radius: 14px 14px 14px 4px; }
.fino-chat-ai {
    border-inline-start: 3px solid var(--fw-purple);
    background: #fff; padding-block: 4px; padding-inline: 14px 0; font-size: 13px; color: var(--fw-muted);
}
.fino-chat-ai p { margin: 0 0 12px; }
.fino-chat-metric { background: var(--fw-lavender); border-radius: 12px; padding: 14px; }
.fino-chat-metric div:first-child { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; }
.fino-chat-metric em { font-style: normal; color: #16a34a; font-weight: 700; }
.fino-chat-metric strong { display: block; margin: 8px 0 10px; font-size: 22px; color: var(--fw-navy); }
.fino-chat-bars { height: 48px; margin-top: 8px; }
.fino-chat-input {
    display: flex; align-items: center; gap: 8px; margin-top: 14px;
    border: 1px solid var(--fw-line); border-radius: 12px; padding: 10px 12px;
    color: #8b87a0; font-size: 13px;
}
.fino-chat-input span { flex: 1; }
.fino-chat-input .ti-arrow-up {
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--fw-purple); color: #fff;
}
.fino-steps {
    list-style: none; margin: var(--fw-section-gap) 0 0; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    position: relative;
}
.fino-steps::before {
    content: ''; position: absolute; top: 18px; inset-inline: 12%;
    border-top: 1px dashed #d9d6e5;
}
.fino-steps li { position: relative; text-align: center; }
.fino-steps span {
    width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 2px solid var(--fw-purple); color: var(--fw-purple);
    font-weight: 800; position: relative; z-index: 1;
}
.fino-steps h3 { margin: 0 0 8px; font-size: var(--fw-card-title); }
.fino-steps p { margin: 0; color: var(--fw-muted); }
.fino-compare--marks thead th:nth-child(2),
.fino-compare--marks tbody td:nth-child(2) { background: #f4f0ff; color: var(--fw-navy); }
.fino-compare--marks td { text-align: center; }
.fino-compare--marks .is-yes { color: #16a34a; font-size: 18px; }
.fino-compare--marks .is-no { color: #dc2626; font-size: 18px; }
.fino-compare--marks .is-partial { color: #ca8a04; font-weight: 700; font-size: 13px; }
.fino-price-card {
    background: #fff; border: 1px solid var(--fw-line); border-radius: 18px;
    padding: 28px 24px; box-shadow: var(--fw-shadow);
    display: flex; flex-direction: column; position: relative;
}
.fino-price-card.is-featured { border-color: var(--fw-purple); }
.fino-price-ribbon {
    position: absolute; top: 0; inset-inline: 0;
    background: var(--fw-purple); color: #fff; text-align: center;
    font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 18px 18px 0 0; padding: 8px 12px;
}
.fino-price-card.is-featured { padding-top: 48px; }
.fino-price-card h3 { margin: 0 0 6px; }
.fino-price-card > p { margin: 0; color: var(--fw-muted); min-height: 0; }
.fino-price-card .fino-price { margin: 16px 0; }
.fino-price-includes { font-weight: 700; color: var(--fw-navy) !important; min-height: 0 !important; margin: 0 0 8px !important; }
.fino-price-list { list-style: none; margin: 0 0 22px; padding: 0; color: var(--fw-muted); flex: 1; font-size: var(--fw-copy); }
.fino-price-list li { padding: 8px 0 8px 18px; position: relative; }
.fino-price-list li::before {
    content: ''; position: absolute; inset-inline-start: 0; top: 15px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--fw-purple);
}
.fino-price-card .fino-btn, .fino-price-card .fino-btn-ghost { width: 100%; }
.fino-price-grid.is-empty {
    grid-template-columns: 1fr;
    justify-items: center;
}
.fino-price-empty {
    width: min(100%, 520px);
    text-align: center;
    padding: 36px 28px;
}
.fino-price-empty p { margin: 0 0 18px; color: var(--fw-muted); }
.fino-price-empty .fino-btn-ghost { width: auto; min-width: 0; }
.fino-faq-home {
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: 24px 32px;
    align-items: start;
}
.fino-faq-home h2 { margin: 0 0 10px; font-size: var(--fw-title); line-height: 1.4; max-width: none; white-space: normal; }
.fino-faq-home > div:first-child p {
    color: #5a5670; margin: 0 0 14px; max-width: 36em;
    font-size: var(--fw-lead); line-height: var(--fw-lead-lh);
}
.fino-faq-home > div:last-child { max-width: 640px; }
.fino-home-faq { border-bottom: 1px solid var(--fw-line); }
.fino-home-faq summary {
    cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none;
    display: flex; justify-content: flex-start; gap: 10px; align-items: center;
    font-size: var(--fw-card-title);
}
.fino-home-faq summary::-webkit-details-marker { display: none; }
.fino-home-faq summary::after {
    content: '+'; flex: none; order: -1;
    color: var(--fw-navy); font-size: 22px; font-weight: 400; line-height: 1;
}
.fino-home-faq[open] summary::after { content: '–'; }
.fino-home-faq p { margin: 0 0 18px; color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-cta-purple {
    --cta-purple: #3f368f;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 80% 70% at 50% -10%, rgba(139, 124, 220, 0.38) 0%, transparent 58%),
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(22, 14, 61, 0.55) 0%, transparent 55%),
        linear-gradient(180deg, #4a3d9e 0%, #3f368f 48%, #322a72 100%);
    color: #fff;
    text-align: center;
    padding: clamp(40px, 4vw, 48px) 0;
}
.fino-cta-purple::before {
    content: '';
    position: absolute; inset: 0 0 auto; height: 1px; z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}
.fino-cta-purple[data-reveal] {
    opacity: 1;
    transform: none;
}
.fino-cta-atmosphere {
    position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.fino-cta-orb {
    position: absolute; border-radius: 50%; filter: blur(8px);
    animation: fino-cta-orb 16s ease-in-out infinite;
}
.fino-cta-orb--tl {
    top: -18%; inset-inline-start: -8%; width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.32) 0%, transparent 68%);
}
.fino-cta-orb--br {
    bottom: -22%; inset-inline-end: -10%; width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(79, 58, 155, 0.55) 0%, transparent 70%);
    animation-duration: 20s; animation-direction: reverse;
}
.fino-cta-orb--core {
    top: 42%; inset-inline-start: 50%; width: 520px; height: 220px;
    margin-inline-start: -260px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation-duration: 12s;
}
.fino-cta-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 72% 70% at 50% 40%, #000 10%, transparent 78%);
    animation: fino-grid-drift 36s linear infinite;
}
.fino-cta-shine {
    position: absolute; inset: -40% -20%;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
    animation: fino-cta-sheen 9s ease-in-out 1.2s infinite;
}
.fino-cta-particles i {
    position: absolute; width: 5px; height: 5px; border-radius: 50%;
    background: #fff; opacity: 0.18;
    animation: fino-particle 8s ease-in-out infinite;
}
.fino-cta-particles i:nth-child(1) { top: 22%; inset-inline-start: 14%; animation-delay: 0s; }
.fino-cta-particles i:nth-child(2) { top: 18%; inset-inline-end: 18%; width: 3px; height: 3px; animation-delay: 1.2s; }
.fino-cta-particles i:nth-child(3) { bottom: 28%; inset-inline-start: 22%; animation-delay: 2s; }
.fino-cta-particles i:nth-child(4) { top: 48%; inset-inline-end: 12%; width: 4px; height: 4px; background: #f5c16c; animation-delay: 2.8s; }
.fino-cta-particles i:nth-child(5) { bottom: 18%; inset-inline-end: 38%; animation-delay: 1.6s; }
.fino-cta-purple-inner { position: relative; z-index: 1; }
.fino-cta-purple h2 {
    margin: 0 0 10px;
    font-size: var(--fw-title-lg);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: #fff;
    white-space: normal;
}
.fino-cta-purple p {
    margin: 0 auto 20px;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fw-lead);
    line-height: var(--fw-lead-lh);
}
.fino-cta-anim {
    opacity: 0;
    transform: translateY(22px);
}
.fino-cta-purple.is-in .fino-cta-anim {
    animation: fino-cta-rise 0.82s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.11s);
}
.fino-demo-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 32px;
    max-width: 560px;
}
.fino-demo-form input {
    flex: 1 1 280px;
    width: min(420px, 100%);
    border: 0;
    border-radius: 999px;
    padding: 16px 22px;
    font: inherit;
    color: var(--fw-navy);
    background: #fff;
    box-shadow: 0 10px 32px rgba(16, 10, 40, 0.18), 0 0 0 0 rgba(255, 255, 255, 0.35);
    outline: none;
    transition: transform 0.22s cubic-bezier(.22, 1, .36, 1), box-shadow 0.22s ease;
}
.fino-demo-form input::placeholder { color: #9a96ab; }
.fino-demo-form input:hover {
    box-shadow: 0 12px 36px rgba(16, 10, 40, 0.22);
}
.fino-demo-form input:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(16, 10, 40, 0.22), 0 0 0 4px rgba(255, 255, 255, 0.28);
}
.fino-demo-form button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: linear-gradient(180deg, #4a3d9a 0%, #2d2464 100%);
    color: #fff;
    border-radius: 999px;
    padding: 16px 24px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(16, 10, 40, 0.22);
    transition: transform 0.22s cubic-bezier(.22, 1, .36, 1), background 0.2s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}
.fino-demo-form button::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: fino-shimmer 3.6s ease-in-out 1.8s infinite;
}
.fino-demo-form button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 28px rgba(16, 10, 40, 0.28);
    background: linear-gradient(180deg, #5848b0 0%, #352a73 100%);
}
.fino-demo-form button:hover i {
    transform: translateX(3px);
}
.fino-demo-form button:active { transform: scale(0.98); }
.fino-demo-form button i {
    font-size: 16px;
    transition: transform 0.22s cubic-bezier(.22, 1, .36, 1);
}
body.fino-site.is-rtl .fino-demo-form button i,
body.fino-site.is-rtl .fino-cta-link .ti-arrow-right {
    transform: scaleX(-1);
}
body.fino-site.is-rtl .fino-demo-form button:hover i,
body.fino-site.is-rtl .fino-cta-link:hover .ti-arrow-right {
    transform: scaleX(-1) translateX(3px);
}
.fino-cta-actions {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 16px 22px; margin-bottom: 32px;
}
.fino-cta-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fff; text-decoration: none; font-weight: 700;
    transition: transform 0.22s ease, color 0.2s ease;
}
.fino-cta-link:hover { color: #efeafc; transform: translateY(-1px); }
.fino-cta-outline {
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.55); color: #fff;
    text-decoration: none; border-radius: 999px; padding: 12px 22px; font-weight: 600;
    transition: transform 0.22s ease, background 0.2s ease, border-color 0.2s ease;
}
.fino-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}
body.fino-site.is-rtl .fino-cta-link .ti-arrow-right { transform: scaleX(-1); }
.fino-trust-badges {
    list-style: none; margin: 0; padding: 0; display: flex; justify-content: center;
    flex-wrap: wrap; gap: 14px 28px; color: rgba(255, 255, 255, 0.86);
    font-size: 13px; font-weight: 600;
}
.fino-trust-badges li {
    display: inline-flex; align-items: center; gap: 8px;
}
.fino-trust-ico {
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 0 rgba(245, 193, 108, 0.35);
}
.fino-cta-purple.is-in .fino-trust-ico {
    animation: fino-cta-ico 2.6s ease-out calc(0.55s + var(--d, 0) * 0.08s) both;
}
.fino-trust-badges i { color: #f5c16c; font-size: 14px; }
.fino-trust-ico--bolt i { color: #fbbf24; }
.fino-trust-ico--ok i { color: #86efac; }
.fino-cta-dark { background: #120c24; padding: 16px 0 0; }
.fino-cta-dark-box {
    background: #161328;
    border: 1px solid #2a2340; border-radius: 20px; padding: 32px 24px; text-align: center;
}
.fino-cta-dark-box h2 { margin: 0 0 8px; color: #fff; font-size: var(--fw-title-lg); white-space: nowrap; }
.fino-cta-dark-box p { margin: 0 auto 22px; max-width: 560px; color: #9a96ab; font-size: var(--fw-lead); }
.fino-btn--pill {
    border-radius: 999px; padding: 12px 24px;
    background: linear-gradient(135deg, #6d5ae0 0%, #5b47d4 100%);
}
.fino-site-footer { border-top: 0; padding: 36px 0 20px; background: #120c24; color: #c8c4d6; }
.fino-site-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px 24px; }
.fino-site-footer a { display: block; color: #9a96ab; text-decoration: none; margin: 6px 0; }
.fino-site-footer a:hover { color: #fff; }
.fino-site-footer h4 { margin: 0 0 8px; color: #fff; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.fino-site-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    max-width: 360px;
}
.fino-site-footer-logo { height: 34px; width: auto; margin: 0; display: block; }
.fino-site-footer > .fino-site-wrap > div > p,
.fino-site-footer-brand p {
    color: #9a96ab;
    margin: 0;
    max-width: none;
    font-size: 13px;
    line-height: 1.65;
}
.fino-site-footer-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.fino-store-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; }
.fino-store-badge { display: inline-flex; line-height: 0; }
.fino-site-footer a.fino-store-badge,
.fino-site-footer .fino-store-badge { margin: 0; color: inherit; }
.fino-site-footer a.fino-store-badge:hover { color: inherit; opacity: 0.9; }
.fino-store-badge img { height: 36px; width: auto; display: block; }
.fino-social { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.fino-social-btn {
    width: 32px; height: 32px; padding: 0; margin: 0; line-height: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border-radius: 9px; overflow: hidden;
}
.fino-site-footer a.fino-social-btn,
.fino-site-footer .fino-social-btn { margin: 0; color: inherit; }
.fino-site-footer a.fino-social-btn:hover { color: inherit; opacity: 0.85; }
.fino-social-btn img { width: 32px; height: 32px; display: block; }
.fino-social-btn--dark { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16); }
.fino-site-copy {
    color: #7d7890;
    padding: 16px 0 4px;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #2a2340;
    margin-top: 32px;
}
.fino-site-copy-legal { line-height: 1.4; }
.fino-site-powered {
    color: #c9b27a;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.fino-site-powered img { height: 11px; width: auto; display: block; }
.fino-field-error { color: #b91c1c; font-size: 13px; }

.fino-faq-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
}
.fino-faq-tab {
    border: 1px solid var(--fw-line); background: #fff; color: var(--fw-muted);
    border-radius: 999px; padding: 8px 14px; font: inherit; font-weight: 600;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.fino-faq-tab:hover {
    color: var(--fw-purple); border-color: #d8d2ee; transform: translateY(-1px);
}
.fino-faq-tab.is-active {
    background: var(--fw-purple);
    color: #fff; border-color: transparent;
    box-shadow: 0 8px 18px rgba(79, 58, 155, 0.18);
}
.fino-faq-item {
    background: #fff; border: 1px solid var(--fw-line); border-radius: 14px;
    padding: 0 18px; margin-bottom: 10px; box-shadow: var(--fw-shadow);
    transition: transform 0.28s cubic-bezier(.22, 1, .36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}
.fino-faq-item:hover {
    transform: translateY(-2px);
    border-color: #d8d2ee;
    box-shadow: var(--fw-shadow-md);
}
.fino-faq-item summary {
    cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none;
    font-size: var(--fw-card-title);
}
.fino-faq-item summary::-webkit-details-marker { display: none; }
.fino-faq-item summary::after {
    content: '+'; float: inline-end; color: var(--fw-accent); font-weight: 700;
}
.fino-faq-item[open] summary::after { content: '–'; }
.fino-faq-item p { margin: 0 0 16px; color: var(--fw-muted); font-size: var(--fw-copy); }

.fino-hero--page { padding: 72px 0 48px; }
.fino-hero--page h1 { max-width: 16em; }
.fino-hero--page p { max-width: 640px; }
.fino-legal-meta {
    display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px;
    color: var(--fw-muted); font-size: 13px; font-weight: 600;
}
.fino-legal-meta span { display: inline-flex; align-items: center; gap: 6px; }
.fino-legal-meta i { color: var(--fw-accent); font-size: 16px; }
.fino-legal-layout {
    display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 28px; align-items: start;
}
.fino-legal-toc {
    position: sticky; top: 96px;
    background: #fff; border: 1px solid var(--fw-line); border-radius: var(--fw-radius);
    padding: 18px 16px; box-shadow: var(--fw-shadow);
}
.fino-legal-toc h4 {
    margin: 0 0 8px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--fw-accent);
}
.fino-legal-toc a {
    display: block; color: var(--fw-muted); text-decoration: none; font-size: 13px; font-weight: 600;
    padding: 8px 0; border-top: 1px solid var(--fw-line);
}
.fino-legal-toc a:first-of-type { border-top: 0; }
.fino-legal-toc a:hover { color: var(--fw-accent); }
.fino-legal-doc {
    background: #fff; border: 1px solid var(--fw-line); border-radius: 20px;
    padding: 12px 36px 36px; box-shadow: var(--fw-shadow);
}
.fino-legal-block { padding: 28px 0 8px; border-top: 1px solid var(--fw-line); scroll-margin-top: 100px; }
.fino-legal-block:first-child { border-top: 0; }
.fino-legal-block .fino-step { margin-bottom: 10px; }
.fino-legal-block h2 { font-size: var(--fw-title); margin: 0 0 12px; letter-spacing: -0.02em; }
.fino-legal-block p { color: var(--fw-muted); margin: 0 0 10px; max-width: 72ch; font-size: var(--fw-copy); }
.fino-legal-list { margin: 8px 0 4px; }
.fino-legal-list li {
    padding-block: 8px; padding-inline: 18px 0; position: relative; border-top: 0;
}
.fino-legal-list li::before {
    content: ''; position: absolute; inset-inline-start: 0; top: 16px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--fw-accent);
}
.fino-legal-related .fino-card--identity:hover {
    transform: translateY(-3px);
    box-shadow: var(--fw-shadow-md);
}
.fino-legal-html { padding: 36px; }
.fino-legal-html h1, .fino-legal-html h2, .fino-legal-html h3 {
    letter-spacing: -0.02em; margin: 1.4em 0 0.5em; color: var(--fw-text);
}
.fino-legal-html h1 { font-size: var(--fw-display); margin-top: 0; }
.fino-legal-html h2 { font-size: var(--fw-title); }
.fino-legal-html h3 { font-size: var(--fw-card-title); }
.fino-legal-html p, .fino-legal-html li { color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-legal-html a { color: var(--fw-accent); font-weight: 600; }
.fino-legal-html ul, .fino-legal-html ol { padding-inline-start: 1.2em; }
.fino-site-copy-links { display: inline-flex; flex-wrap: wrap; gap: 8px 14px; margin-inline-start: auto; }
.fino-site-copy-links a { color: #9a96ab; text-decoration: none; font-weight: 600; display: inline; margin: 0; }
.fino-site-copy-links a:hover { color: #fff; }

.fino-slider { position: relative; }
.fino-slider-toolbar {
    display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 16px;
}
.fino-slider-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--fw-line);
    background: #fff; color: var(--fw-text); display: inline-flex;
    align-items: center; justify-content: center; cursor: pointer;
    box-shadow: var(--fw-shadow);
}
.fino-slider-btn:hover:not(:disabled) { border-color: #bae6fd; color: var(--fw-accent); }
.fino-slider-btn:disabled { opacity: 0.35; cursor: default; }
.fino-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 4px 2px 10px;
    touch-action: pan-y;
}
.fino-slider-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
}
.fino-slider-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    max-width: calc((100% - 36px) / 3);
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: auto;
    box-sizing: border-box;
}
.fino-slider-slide.fino-card-plan {
    height: auto;
}
.fino-slider-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 12px;
}
.fino-slider-dot {
    width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
    background: #cbd5e1; cursor: pointer;
}
.fino-slider-dot.is-active {
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    width: 22px; border-radius: 999px;
}

.fino-btn-ghost--accent {
    background: #EBEAF4;
    color: #3F3D89;
    border: 0;
}
.fino-hero-badge--solid,
.fino-hero p.fino-hero-badge--solid,
.fino-hero--plans .fino-hero-badge {
    background: var(--fw-purple);
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.fino-hero--how {
    padding: 72px 0 64px;
    background: var(--fw-soft);
    overflow: visible;
}
.fino-hero--how h1 {
    font-size: var(--fw-display);
    line-height: 1.4;
    max-width: none;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}
body.fino-site.is-rtl .fino-hero--how h1 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
    max-width: none;
}
.fino-hero--how .fino-hero-copy > p {
    max-width: 46ch;
    color: #6f6a82;
    font-size: var(--fw-lead);
    line-height: var(--fw-lead-lh);
}
.fino-hero--how .fino-hero-actions { margin-top: 32px; align-items: center; }
.fino-hero--how .fino-anim-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fino-rise 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s);
}
.fino-hero--how .fino-pipe.fino-anim-in {
    transform: translateY(28px);
}

.fino-hero--ask {
    padding: 40px 0 36px;
    background: #fff;
    overflow: hidden;
}
.fino-hero--ask .fino-hero-copy {
    gap: 10px;
}
.fino-hero--ask .fino-hero-badge {
    margin: 0;
    gap: 6px;
}
.fino-hero--ask .fino-hero-badge i {
    font-size: 14px;
    animation: fino-spark 2.4s ease-in-out infinite;
}
.fino-hero--ask h1 {
    font-size: var(--fw-display);
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--fw-navy);
    font-weight: 700;
    max-width: none;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}
body.fino-site.is-rtl .fino-hero--ask h1 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
    font-size: var(--fw-display);
    line-height: 1.5;
    white-space: nowrap;
}
.fino-hero--ask .fino-hero-copy > p:not(.fino-hero-badge) {
    max-width: 46ch;
    margin: 0;
    color: #5a5670;
    font-size: var(--fw-lead);
    line-height: var(--fw-lead-lh);
}
.fino-hero--ask .fino-hero-actions {
    margin-top: 6px;
    align-items: center;
}
.fino-hero--ask .fino-anim-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fino-rise 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s);
}
.fino-hero--ask .fino-chat.fino-anim-in {
    transform: translateY(28px);
}
.fino-hero--ask .fino-hero-orb--tr {
    background: radial-gradient(circle, rgba(79, 58, 155, 0.14) 0%, transparent 70%);
}
.fino-hero--ask .fino-hero-orb--bl {
    background: radial-gradient(circle, rgba(99, 80, 179, 0.12) 0%, transparent 70%);
}
.fino-page-ask .fino-section {
    padding: var(--fw-section-y) 0;
}
.fino-page-ask .fino-section--ask-can {
    padding-top: 12px;
}
.fino-page-ask .fino-center {
    margin-bottom: 22px;
}
.fino-page-ask .fino-center .fino-hero-badge {
    margin: 0 0 12px;
}
.fino-page-ask .fino-center h2 {
    margin: 0 0 8px;
    max-width: none;
    overflow-wrap: normal;
    word-break: normal;
}
.fino-page-ask .fino-center .fino-section-lead {
    margin: 0 auto;
}
.fino-page-ask .fino-grid {
    gap: 16px;
}
.fino-ask-card {
    background: #fff;
    border: 1px solid var(--fw-line);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: var(--fw-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.fino-ask-card:hover {
    transform: translateY(-6px);
    border-color: #d8d2ee;
    box-shadow: 0 18px 40px rgba(79, 58, 155, 0.12);
}
.fino-ask-card h3 {
    margin: 0 0 6px;
    font-size: var(--fw-card-title);
    color: var(--fw-navy);
    font-weight: 700;
}
.fino-ask-card p {
    margin: 0;
    color: var(--fw-muted);
    font-size: var(--fw-copy);
    line-height: 1.65;
}
.fino-ask-tiers .fino-ask-card {
    text-align: center;
}
.fino-ask-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--fw-purple);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
.fino-ask-can .fino-icon {
    margin-bottom: 12px;
}
body.fino-site.is-rtl .fino-page-ask .fino-center h2,
body.fino-site.is-rtl .fino-hero--ask h1 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
}

.fino-hero--contact {
    padding: 40px 0 64px;
    background: #fff;
    overflow: hidden;
}
.fino-hero--contact .fino-hero-orb--tr {
    background: radial-gradient(circle, rgba(79, 58, 155, 0.14) 0%, transparent 70%);
}
.fino-hero--contact .fino-hero-orb--bl {
    background: radial-gradient(circle, rgba(99, 80, 179, 0.12) 0%, transparent 70%);
}
.fino-contact {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}
.fino-contact-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 28px;
}
.fino-hero--contact .fino-hero-badge {
    margin: 0;
    gap: 6px;
}
.fino-hero--contact .fino-hero-badge i {
    font-size: 15px;
    animation: fino-spark 2.4s ease-in-out infinite;
}
.fino-hero--contact h1 {
    font-size: var(--fw-display);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.03em;
    color: var(--fw-navy);
    font-weight: 800;
    max-width: none;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}
body.fino-site.is-rtl .fino-hero--contact h1 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
    font-size: var(--fw-display);
    line-height: 1.5;
}
.fino-hero--contact .fino-contact-copy > p:not(.fino-hero-badge) {
    margin: 0;
    max-width: 42em;
    color: #5a5670;
    font-size: var(--fw-lead);
    line-height: var(--fw-lead-lh);
}
.fino-form--contact {
    max-width: none;
    gap: 16px;
}
.fino-form--contact label {
    color: #6b6780;
    font-weight: 600;
    font-size: var(--fw-copy);
    gap: 8px;
}
.fino-form--contact input,
.fino-form--contact textarea {
    background: #fff;
    border: 1px solid #e6e2f0;
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--fw-navy);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fino-form--contact textarea {
    min-height: 140px;
    resize: vertical;
}
.fino-form--contact input:focus,
.fino-form--contact textarea:focus {
    outline: none;
    border-color: var(--fw-purple);
    box-shadow: 0 0 0 4px rgba(79, 58, 155, 0.12);
}
.fino-page-contact .fino-form-phone .form-label {
    color: #6b6780;
    font-weight: 600;
    font-size: var(--fw-copy);
    margin-bottom: 8px;
}
.fino-page-contact .fino-form-phone .fino-phone-input-group {
    background: #fff;
    border-color: #e6e2f0;
    border-radius: 12px;
    min-height: 50px;
}
.fino-page-contact .fino-form-phone .fino-phone-input-group:focus-within {
    outline: none;
    border-color: var(--fw-purple);
    box-shadow: 0 0 0 4px rgba(79, 58, 155, 0.12);
}
.fino-page-contact .fino-form-phone .js-country-phone-help {
    display: none;
}
.fino-form--contact .fino-btn {
    width: 100%;
    margin-top: 6px;
    min-height: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(79, 58, 155, 0.22);
    transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}
.fino-form--contact .fino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(79, 58, 155, 0.28);
}
.fino-form--contact .fino-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.32) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: fino-shimmer 3.4s ease-in-out 1.6s infinite;
}
.fino-hero--contact .fino-anim-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fino-rise 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.1s);
}
.fino-page-contact .fino-alert {
    margin-bottom: 16px;
}

.fino-pipe {
    min-width: 0;
    background: #fff;
    border: 1px solid #efeef6;
    border-radius: 20px;
    padding: 22px 20px 18px;
    box-shadow: 0 24px 60px rgba(22, 14, 61, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.fino-pipe:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(22, 14, 61, 0.14);
}
.fino-pipe-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 16px;
}
.fino-pipe-head strong { font-size: 16px; }
.fino-pipe-sync {
    display: inline-flex; align-items: center; gap: 6px;
    background: #ecfdf3; color: #16a34a;
    border-radius: 999px; padding: 4px 10px;
    font-size: 11px; font-weight: 700;
}
.fino-pipe-sync i {
    width: 6px; height: 6px; border-radius: 50%;
    background: #16a34a; display: inline-block;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
    animation: fino-live-dot 1.8s ease-out infinite;
}
.fino-pipe-step,
.fino-pipe-arrow {
    opacity: 0;
    transform: translateY(12px);
    animation: fino-rise 0.55s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(0.42s + (var(--s, 0) * 0.14s));
}
.fino-pipe-step {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px; border-radius: 14px;
}
.fino-pipe-step.is-on {
    background: #f6f3ff;
    border: 1px solid #d9d0fb;
}
.fino-pipe-num {
    width: 28px; height: 28px; border-radius: 50%; flex: 0 0 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--fw-purple); color: #fff;
    font-size: 13px; font-weight: 700;
}
.fino-pipe-copy { min-width: 0; flex: 1; }
.fino-pipe-step h3 { margin: 0 0 4px; font-size: var(--fw-card-title); }
.fino-pipe-step p { margin: 0; font-size: var(--fw-copy); color: var(--fw-muted); }
.fino-pipe-meta { font-style: normal; font-weight: 700; font-size: 13px; white-space: nowrap; }
.fino-pipe-meta.is-pos { color: #16a34a; }
.fino-pipe-pill {
    display: inline-flex; align-items: center; gap: 4px;
    border-radius: 999px; padding: 4px 10px;
    font-size: 12px; font-weight: 700; white-space: nowrap;
}
.fino-pipe-pill.is-wait {
    background: var(--fw-lavender); color: var(--fw-purple);
    animation: fino-wait-pulse 1.6s ease-in-out 1.2s infinite;
}
.fino-pipe-pill.is-ok { background: #ecfdf3; color: #16a34a; }
.fino-pipe-arrow {
    display: flex; justify-content: center;
    color: #c4bfd4; padding: 2px 0;
}

.fino-section--onboard { background: #fff; }
.fino-onboard {
    list-style: none; margin: 48px 0 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative;
}
.fino-onboard::before {
    content: ''; position: absolute; top: 18px; inset-inline: 6%;
    border-top: 1px solid #e6e3ef;
}
.fino-onboard > li {
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
}
.fino-onboard > li:hover { transform: translateY(-6px); }
.fino-onboard-num {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--fw-navy); color: #fff;
    font-size: 12px; font-weight: 700;
    position: relative; z-index: 1; margin-bottom: 16px;
}
.fino-onboard h3 { margin: 0 0 8px; font-size: var(--fw-card-title); }
.fino-onboard p { margin: 0 0 12px; color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-onboard-link {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--fw-purple); text-decoration: none; font-weight: 600; font-size: var(--fw-copy);
}
.fino-onboard-link:hover { text-decoration: underline; }
.fino-mini {
    margin-top: 16px; background: #f7f6fb; border-radius: 12px; padding: 12px;
    display: grid; gap: 8px;
}
.fino-mini-box {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 10px; padding: 10px 12px; font-size: 13px; font-weight: 600;
}
.fino-mini-box.is-on { border-color: var(--fw-navy); }
.fino-mini-box span { display: block; color: var(--fw-muted); font-weight: 500; font-size: 12px; margin-top: 2px; }
.fino-mini-field {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 10px; padding: 10px 12px; font-size: 13px; font-weight: 600;
}
.fino-mini-check {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--fw-navy);
}
.fino-mini-check i { color: #9a96ab; }
.fino-mini-check.is-done i { color: var(--fw-navy); }
.fino-mini--kpi span { color: var(--fw-muted); font-size: 12px; font-weight: 600; }
.fino-mini--kpi strong { display: block; font-size: 22px; letter-spacing: -0.03em; margin: 4px 0 8px; }
.fino-mini--kpi em {
    display: inline-flex; align-items: center; gap: 6px;
    font-style: normal; font-size: 12px; font-weight: 700; color: #16a34a;
}
.fino-mini--kpi em i {
    width: 8px; height: 8px; border-radius: 50%; background: #16a34a; display: inline-block;
}

.fino-section--flow { background: var(--fw-soft); }
.fino-flowline {
    display: flex; align-items: stretch; gap: 8px;
    margin-top: 36px; overflow-x: auto; padding-bottom: 6px;
}
.fino-flowline-step {
    flex: 1 1 0; min-width: 118px;
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 12px; padding: 14px 12px;
}
.fino-flowline-step.is-first { border-color: #c4b8f5; }
.fino-flowline-step.is-ai { border: 2px solid var(--fw-purple); }
.fino-flowline-step.is-ai strong { color: var(--fw-purple); }
.fino-flowline-step strong { display: block; font-size: 13px; margin-bottom: 4px; }
.fino-flowline-step span { color: var(--fw-muted); font-size: 12px; }
.fino-flowline-chevron {
    align-self: center; color: #b8b3c9; font-size: 16px; flex: 0 0 auto;
}
.fino-flowline-note {
    margin: 28px auto 0; max-width: 52ch; text-align: center;
    color: var(--fw-muted); font-size: var(--fw-copy);
    border: 1px dashed #cfd8f6; border-radius: 12px; padding: 14px 18px;
    background: rgba(255, 255, 255, 0.7);
}

.fino-ops-tabs {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 32px 0 28px;
}
.fino-ops-tab {
    display: inline-flex; align-items: center; gap: 8px;
    border: 0; background: #f1f0f5; color: var(--fw-navy);
    border-radius: 12px; padding: 10px 14px;
    font: inherit; font-weight: 600; font-size: var(--fw-copy); cursor: pointer;
}
.fino-ops-tab.is-on { background: var(--fw-purple); color: #fff; }
.fino-ops-panel {
    display: none;
    grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: center;
}
.fino-ops-panel.is-on { display: grid; }
.fino-ops-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.fino-ops-steps li { display: flex; gap: 14px; align-items: flex-start; }
.fino-ops-steps span {
    width: 22px; height: 22px; border-radius: 50%; flex: 0 0 22px;
    background: var(--fw-purple); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; margin-top: 2px;
}
.fino-ops-steps h3 { margin: 0 0 4px; font-size: var(--fw-card-title); }
.fino-ops-steps p { margin: 0; color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-doc {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 18px; padding: 20px;
    box-shadow: var(--fw-shadow-md);
}
.fino-doc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.fino-doc-head span {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--fw-faint);
}
.fino-doc-head strong { display: block; font-size: 22px; letter-spacing: -0.03em; margin-top: 4px; }
.fino-doc-head em {
    font-style: normal; background: #ecfdf3; color: #16a34a;
    border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700;
}
.fino-doc-meta {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin: 18px 0; padding: 14px 0; border-top: 1px solid var(--fw-line); border-bottom: 1px solid var(--fw-line);
}
.fino-doc-meta span {
    display: block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--fw-faint);
}
.fino-doc-meta b { display: block; margin-top: 4px; font-size: 13px; }
.fino-doc table { width: 100%; border-collapse: collapse; font-size: 13px; }
.fino-doc th {
    text-align: start; color: var(--fw-faint); font-size: 11px;
    letter-spacing: 0.04em; text-transform: uppercase; padding: 0 0 8px;
}
.fino-doc td { padding: 8px 0; border-top: 1px solid #f3f1f8; }
.fino-doc-totals { margin: 16px 0 0; display: grid; gap: 6px; justify-items: end; }
.fino-doc-totals div { display: flex; gap: 24px; min-width: 220px; justify-content: space-between; }
.fino-doc-totals dt { margin: 0; color: var(--fw-muted); font-size: 13px; }
.fino-doc-totals dd { margin: 0; font-weight: 700; }
.fino-doc-totals .is-due { font-size: 15px; }

.fino-section--intel { background: #fff; }
.fino-intel-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
.fino-intel-grid h2 { font-size: var(--fw-title-lg); max-width: 16ch; line-height: 1.3; }
.fino-askcard {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 20px; padding: 20px; box-shadow: var(--fw-shadow-md);
}
.fino-askcard-head { margin-bottom: 14px; }
.fino-askcard-head strong { display: inline-flex; align-items: center; gap: 8px; }
.fino-askcard-q {
    background: var(--fw-purple); color: #fff;
    border-radius: 14px 14px 4px 14px; padding: 12px 14px;
    font-size: 14px; font-weight: 600; max-width: 92%;
}
body.fino-site.is-rtl .fino-askcard-q { border-radius: 14px 14px 14px 4px; }
.fino-askcard-kpis {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0;
}
.fino-askcard-kpis div { background: #f7f6fb; border-radius: 12px; padding: 12px; }
.fino-askcard-kpis .is-accent { background: var(--fw-lavender); }
.fino-askcard-kpis span {
    display: block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--fw-faint);
}
.fino-askcard-kpis strong { display: block; margin-top: 6px; font-size: 18px; }
.fino-askcard-tip {
    margin: 0 0 14px; background: #eef4ff; color: #3b4a7a;
    border-radius: 12px; padding: 12px 14px; font-size: 13px;
}
.fino-askcard-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.fino-askcard-actions .fino-btn,
.fino-askcard-actions .fino-btn-ghost { pointer-events: none; }
.fino-cycles-label {
    margin: 40px 0 16px; text-align: center;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--fw-faint);
}
.fino-cycles {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: 10px 12px;
}
.fino-cycles li {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 999px; padding: 8px 14px 8px 8px; font-weight: 600;
}
.fino-cycles span {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--fw-purple); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
}
.fino-cycles .ti-chevron-right { color: #b8b3c9; }

.fino-section--integrity { background: var(--fw-soft); }
.fino-draft {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 20px; padding: 20px; box-shadow: var(--fw-shadow-md);
}
.fino-draft-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.fino-draft-head strong {
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
}
.fino-draft-head em {
    font-style: normal; background: var(--fw-lavender); color: var(--fw-purple);
    border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700;
}
.fino-draft-prompt {
    margin: 16px 0 12px; background: #f4f3f8; border-radius: 12px;
    padding: 12px 14px; color: var(--fw-navy); font-size: 14px;
}
.fino-draft-by {
    display: flex; align-items: center; gap: 8px;
    margin: 0 0 16px; color: var(--fw-muted); font-size: 13px; font-weight: 600;
}
.fino-draft-by i {
    width: 8px; height: 8px; border-radius: 50%; background: #3b6fd4; display: inline-block;
}
.fino-draft-fields {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px;
}
.fino-draft-fields span {
    display: block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--fw-faint);
}
.fino-draft-fields b { display: block; margin-top: 4px; }

.fino-manage-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: start; margin-top: 36px; }
.fino-manage-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.fino-manage-steps li { display: flex; gap: 14px; align-items: flex-start; }
.fino-manage-steps span {
    width: 28px; height: 28px; border-radius: 50%; flex: 0 0 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid #c4b8f5; color: var(--fw-purple);
    font-size: 12px; font-weight: 700;
}
.fino-manage-steps li:first-child span {
    background: var(--fw-purple); border-color: var(--fw-purple); color: #fff;
}
.fino-manage-steps h3 { margin: 0 0 4px; font-size: var(--fw-card-title); }
.fino-manage-steps p { margin: 0; color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-matrix {
    background: #f6f7fb; border-radius: 20px; padding: 18px;
}
.fino-matrix-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; margin-bottom: 14px;
}
.fino-matrix-head em {
    font-style: normal; background: var(--fw-lavender); color: var(--fw-purple);
    border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700;
}
.fino-matrix-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fino-matrix-grid > div {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 12px; padding: 12px;
}
.fino-matrix-grid > div > div { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.fino-matrix-grid span { font-size: 13px; font-weight: 600; }
.fino-matrix-grid em { font-style: normal; font-size: 11px; font-weight: 700; }
.fino-matrix-grid em.is-purple { color: var(--fw-purple); }
.fino-matrix-grid em.is-green { color: #16a34a; }
.fino-matrix-grid strong { display: block; margin-top: 10px; font-size: 20px; letter-spacing: -0.03em; }

.fino-section--hub { background: #f7f6fb; }
.fino-hub-intro h2 {
    max-width: 16em;
    font-size: var(--fw-title-lg);
    line-height: 1.3;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--fw-navy);
}
.fino-hubmap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
    grid-template-rows: auto 200px auto;
    gap: 28px 40px;
    align-items: center;
    justify-items: center;
    margin: 48px 0 20px;
    min-height: 560px;
}
.fino-hub-lines {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}
.fino-hub-lines path {
    fill: none;
    stroke: #c8c2d8;
    stroke-width: 1.4;
    stroke-dasharray: 2.5 7;
    stroke-linecap: round;
}
.fino-hubmap.is-in .fino-hub-lines > path {
    animation: fino-hub-dash 18s linear infinite;
}
.fino-hub-travel path {
    stroke: #6d5ae0;
    stroke-width: 2.2;
    stroke-dasharray: 16 240;
    stroke-linecap: round;
    opacity: 0;
}
.fino-hubmap.is-in .fino-hub-travel path {
    opacity: 0.85;
    animation: fino-hub-travel 2.8s linear infinite;
}
.fino-hubmap.is-in .fino-hub-travel path:nth-child(2) { animation-delay: 0.25s; }
.fino-hubmap.is-in .fino-hub-travel path:nth-child(3) { animation-delay: 0.5s; }
.fino-hubmap.is-in .fino-hub-travel path:nth-child(4) { animation-delay: 0.75s; }
.fino-hubmap.is-in .fino-hub-travel path:nth-child(5) { animation-delay: 1s; }
.fino-hubmap.is-in .fino-hub-travel path:nth-child(6) { animation-delay: 1.25s; }
.fino-hubmap.is-in .fino-hub-travel path:nth-child(7) { animation-delay: 1.5s; }
.fino-hubmap.is-in .fino-hub-travel path:nth-child(8) { animation-delay: 1.75s; }
.fino-hub-mod, .fino-hub-core { position: relative; z-index: 1; }
.fino-hub-mod {
    grid-column: var(--hub-col);
    grid-row: var(--hub-row);
    width: min(100%, 220px);
    background: #fff;
    border: 1px solid #c9bdf3;
    border-radius: 16px;
    padding: 20px 16px 18px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(22, 14, 61, 0.07);
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    transition: opacity 0.55s cubic-bezier(.22, 1, .36, 1),
        transform 0.55s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.3s ease, border-color 0.3s ease;
    transition-delay: calc(var(--d, 0) * 0.07s);
}
.fino-hubmap.is-in .fino-hub-mod {
    opacity: 1;
    transform: none;
}
.fino-hubmap.is-in .fino-hub-mod:hover {
    transform: translateY(-6px);
    border-color: var(--fw-purple);
    box-shadow: 0 18px 36px rgba(79, 58, 155, 0.14);
}
.fino-hub-ico {
    width: 36px; height: 36px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #eee9fd; color: var(--fw-purple); font-size: 18px;
}
.fino-hub-mod h3 {
    margin: 12px 0 4px; font-size: var(--fw-card-title); font-weight: 700;
    letter-spacing: -0.02em; color: var(--fw-navy);
}
.fino-hub-mod p { margin: 0; color: #7a758d; font-size: var(--fw-copy); line-height: 1.45; }
.fino-hub-core {
    grid-column: 2; grid-row: 2;
    width: 200px; height: 200px; border-radius: 50%;
    background: #160e3d; color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    box-shadow: 0 22px 50px rgba(22, 14, 61, 0.28), 0 0 0 10px rgba(22, 14, 61, 0.04);
    justify-self: center;
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.6s cubic-bezier(.22, 1, .36, 1), transform 0.6s cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(var(--d, 0) * 0.07s);
}
.fino-hub-core::before,
.fino-hub-core::after {
    content: ''; position: absolute; inset: -14px; border-radius: 50%;
    border: 1.5px solid rgba(109, 90, 224, 0.28);
    opacity: 0; pointer-events: none;
}
.fino-hubmap.is-in .fino-hub-core {
    opacity: 1;
    transform: none;
    animation: fino-hub-core-glow 3.4s ease-in-out 0.4s infinite;
}
.fino-hubmap.is-in .fino-hub-core::before,
.fino-hubmap.is-in .fino-hub-core::after {
    animation: fino-hub-ring 3.2s ease-out infinite;
}
.fino-hubmap.is-in .fino-hub-core::after { animation-delay: 1.1s; }
.fino-hub-ico { transition: transform 0.3s ease, background 0.3s ease; }
.fino-hubmap.is-in .fino-hub-mod:hover .fino-hub-ico { transform: scale(1.08); background: #e4dcff; }
.fino-hubmap.is-in .fino-hub-mod:nth-child(3) .fino-hub-ico i {
    animation: fino-spark 2.2s ease-in-out infinite;
}
.fino-hub-core strong {
    font-size: var(--fw-card-title); font-weight: 800;
    letter-spacing: 0.06em; line-height: 1.2;
}
.fino-hub-core span {
    display: block; margin-top: 6px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
    color: rgba(255,255,255,0.7);
}
.fino-hub-foot {
    margin: 8px auto 0; max-width: 40em; text-align: center;
    color: #8a8599; font-size: var(--fw-lead); line-height: 1.6;
}

.fino-locale-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.fino-locale-card {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 18px; padding: 18px; box-shadow: var(--fw-shadow);
}
.fino-locale-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.fino-locale-user { display: flex; align-items: center; gap: 10px; }
.fino-locale-user span {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--fw-lavender); color: var(--fw-purple);
    display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.fino-locale-user em { display: block; font-style: normal; color: var(--fw-muted); font-size: 13px; }
.fino-locale-head b {
    background: #ecfdf3; color: #16a34a;
    border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700;
}
.fino-locale-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.fino-locale-kpis span { display: block; color: var(--fw-muted); font-size: 12px; }
.fino-locale-kpis strong { display: block; margin-top: 4px; font-size: 18px; }
.fino-locale-ask {
    display: flex; align-items: center; gap: 8px;
    background: var(--fw-lavender); border-radius: 12px;
    padding: 12px; color: #6b5fad; font-size: 13px;
}
.fino-locale-label { text-align: center; margin: 10px 0 0; font-weight: 600; color: var(--fw-muted); }
.fino-locale-tags {
    list-style: none; margin: 28px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.fino-locale-tags li {
    background: #f4f3f8; border-radius: 999px; padding: 8px 14px;
    font-size: 13px; font-weight: 600; color: var(--fw-navy);
}

.fino-secure {
    background: #fff; border: 1px solid var(--fw-line);
    border-radius: 16px; padding: 22px 20px;
    box-shadow: var(--fw-shadow);
    border-block-start: 3px solid var(--fw-purple);
}
.fino-secure h3 { margin: 0 0 8px; font-size: var(--fw-card-title); }
.fino-secure p { margin: 0; color: var(--fw-muted); font-size: var(--fw-copy); }
.fino-secure-grid { margin-top: 32px; }
.fino-secure-trust {
    list-style: none; margin: 28px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px 28px; color: var(--fw-muted); font-size: 13px; font-weight: 600;
}
.fino-secure-trust i { color: var(--fw-purple); }

body.fino-site.is-rtl .fino-onboard-link .ti-arrow-right,
body.fino-site.is-rtl .fino-flowline-chevron,
body.fino-site.is-rtl .fino-cycles .ti-chevron-right { transform: scaleX(-1); }

.fino-hero--plans {
    padding: 72px 0 36px;
    background: #fff;
    overflow: visible;
    text-align: center;
}
.fino-plans-hero { max-width: 1120px; padding-bottom: 8px; }
.fino-hero--plans .fino-hero-badge { margin-bottom: 24px; }
.fino-hero--plans h1,
.fino-plans-title {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.28em;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 18px;
    font-size: var(--fw-display);
    line-height: 1.2;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: var(--fw-navy);
}
body.fino-site.is-rtl .fino-hero--plans h1,
body.fino-site.is-rtl .fino-plans-title {
    font-family: 'IBM Plex Sans Arabic', Satoshi, sans-serif;
}
.fino-plans-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    filter: blur(8px);
    animation: fino-word-in 0.78s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(0.16s + (var(--i, 0) * 0.07s));
}
.fino-plans-title .is-brand {
    background: linear-gradient(120deg, #4F3A9B 0%, #8B74E0 42%, #4F3A9B 82%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: fino-word-in 0.78s cubic-bezier(.22, 1, .36, 1) forwards,
               fino-brand-sheen 3.8s ease-in-out 1.15s infinite;
    animation-delay: calc(0.16s + (var(--i, 0) * 0.07s)), 1.15s;
}
.fino-plans-in {
    opacity: 0;
    transform: translateY(18px);
    animation: fino-rise 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.07s);
}
.fino-hero--plans .fino-plans-hero > p:not(.fino-hero-badge) {
    max-width: 48ch;
    margin: 0 auto;
    color: #6f6a82;
    font-size: var(--fw-lead);
    line-height: var(--fw-lead-lh);
}
.fino-billing {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin: 32px auto 0;
    padding: 6px;
    background: #f4f2fa;
    border-radius: 999px;
    max-width: 100%;
}
.fino-billing a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #4F3A9B;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fw-copy);
    white-space: nowrap;
}
.fino-billing a:visited { color: #4F3A9B; }
.fino-billing a.is-active,
.fino-billing a.is-active:visited {
    background: var(--fw-purple);
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.fino-billing-tip {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--fw-purple);
    -webkit-text-fill-color: var(--fw-purple);
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}
.fino-billing a.is-active .fino-billing-tip {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.fino-section--pricing { background: var(--fw-soft); padding-top: var(--fw-section-y); }
.fino-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}
.fino-plan-card {
    position: relative;
    padding: 28px 24px 24px;
    min-height: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(22, 14, 61, 0.06);
}
.fino-plan-card.is-featured {
    border: 2px solid var(--fw-purple);
    padding-top: 28px;
}
.fino-plan-card.is-featured h3 { color: var(--fw-purple); }
.fino-plan-pop {
    position: absolute; top: 16px; inset-inline-end: 16px;
    background: var(--fw-purple); color: #fff;
    border-radius: 999px; padding: 4px 10px;
    font-size: 11px; font-weight: 700;
}
.fino-plan-card h3 {
    margin: 0;
    font-size: var(--fw-card-title);
    letter-spacing: -0.02em;
}
.fino-plan-card .fino-price {
    margin: 12px 0 8px;
    font-size: var(--fw-price);
    letter-spacing: -0.04em;
}
.fino-plan-card .fino-price small {
    font-size: var(--fw-copy);
    color: var(--fw-muted);
    font-weight: 500;
}
.fino-plan-card > p {
    min-height: 0;
    color: var(--fw-muted);
    font-size: var(--fw-copy);
    line-height: 1.55;
    margin: 0 0 18px;
}
.fino-plan-checks {
    list-style: none; margin: 0 0 22px; padding: 0;
    color: var(--fw-navy); flex: 1;
}
.fino-plan-checks li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 6px 0; font-size: var(--fw-copy);
}
.fino-plan-checks .ti-check {
    color: #5b7cff; font-size: 16px; margin-top: 2px; flex: none;
}
.fino-plan-card .fino-btn,
.fino-plan-card .fino-btn-ghost { width: 100%; margin-top: auto; }
.fino-plan-card {
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.fino-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(30, 21, 69, 0.12);
}
.fino-plan-card.is-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 56px rgba(79, 58, 155, 0.18);
}
.fino-plan-card.is-featured::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 19px;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(79, 58, 155, 0.28);
    opacity: 0;
}
.fino-plan-card.is-featured.is-in::before {
    animation: fino-featured-glow 2.8s ease-out 0.6s infinite;
}
.fino-plan-card.is-featured.is-in .fino-plan-pop {
    animation: fino-pop-soft 2.6s ease-in-out 0.8s infinite;
}
.fino-plan-card[data-reveal] .fino-plan-checks li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s cubic-bezier(.22, 1, .36, 1), transform 0.45s cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(0.18s + (var(--i, 0) * 0.035s));
}
.fino-plan-card[data-reveal].is-in .fino-plan-checks li {
    opacity: 1;
    transform: none;
}
.fino-plan-card .fino-btn,
.fino-plan-card .fino-btn-ghost {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.fino-plan-card .fino-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
    transform: translateX(-130%);
}
.fino-plan-card.is-in .fino-btn::after {
    animation: fino-shimmer 3.4s ease-in-out 1.4s infinite;
}

.fino-section--compare { background: #fff; }
.fino-table-wrap--plans {
    margin-top: 28px;
    border: 1px solid #efeaf8;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(22, 14, 61, 0.05);
}
.fino-compare-plans { min-width: 680px; }
.fino-compare-plans thead th {
    background: #fff;
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--fw-card-title);
    font-weight: 700;
    color: var(--fw-navy);
    text-align: center;
    padding: 18px 16px;
}
.fino-compare-plans thead th:first-child { text-align: start; }
.fino-compare-plans thead th:nth-child(3) { color: var(--fw-purple); }
.fino-compare-plans tbody th {
    width: 28%;
    font-size: var(--fw-copy);
    font-weight: 600;
    color: var(--fw-navy);
    padding: 14px 18px;
}
.fino-compare-plans tbody td {
    text-align: center;
    color: var(--fw-navy);
    font-weight: 500;
    background: transparent;
    padding: 14px 12px;
}
.fino-compare-plans tbody tr:nth-child(odd) th,
.fino-compare-plans tbody tr:nth-child(odd) td { background: #f6f3fb; }
.fino-compare-plans tbody tr:nth-child(even) th,
.fino-compare-plans tbody tr:nth-child(even) td { background: #fff; }
.fino-compare-plans tbody td:last-child { background: inherit; color: inherit; font-weight: 500; }
.fino-compare-plans .ti-check { color: var(--fw-purple); font-weight: 700; }
.fino-compare-plans td span { color: var(--fw-navy); font-weight: 600; }

.fino-plans-faq { max-width: 820px; }
.fino-plans-faq .fino-center h2 { max-width: none; margin-bottom: 28px; }
.fino-plans-faq-item { border-bottom: 1px solid var(--fw-line); }
.fino-plans-faq-item summary {
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 20px 0; font-weight: 700; color: var(--fw-navy);
}
.fino-plans-faq-item summary::-webkit-details-marker { display: none; }
.fino-plans-faq-item summary .ti-chevron-down {
    color: var(--fw-navy); font-size: 18px; flex: none;
    transition: transform 0.2s ease;
}
.fino-plans-faq-item[open] summary .ti-chevron-down { transform: rotate(180deg); }
.fino-plans-faq-item p {
    margin: 0 0 20px; color: var(--fw-muted); max-width: 62ch;
}

@media (max-width: 1200px) {
    .fino-hero-grid { gap: 36px; }
    .fino-dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .fino-dash-body { grid-template-columns: 1fr; }
    .fino-grid-3, .fino-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .fino-steps { grid-template-columns: 1fr; }
    .fino-steps::before { display: none; }
    .fino-onboard { grid-template-columns: repeat(2, 1fr); }
    .fino-onboard::before { display: none; }
    .fino-hubmap {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        min-height: 0;
        gap: 16px;
    }
    .fino-hub-mod { grid-column: auto; grid-row: auto; width: 100%; }
    .fino-hub-core { grid-column: 1 / -1; grid-row: auto; }
    .fino-hub-lines { display: none; }
    .fino-site-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .fino-slider-slide {
        flex-basis: calc((100% - 18px) / 2);
        max-width: calc((100% - 18px) / 2);
    }
}
@media (max-width: 1099px) {
    .fino-site-toggle { display: inline-flex; }
    .fino-site-nav {
        display: flex; flex-wrap: wrap; align-items: center;
        gap: 12px; min-height: 64px; padding: 10px 0;
    }
    .fino-site-actions { margin-inline-start: auto; gap: 12px; }
    .fino-site-links {
        display: none; width: 100%; order: 3; flex-direction: column;
        gap: 0; padding: 8px 0 16px; border-top: 1px solid var(--fw-line);
    }
    .fino-site-header.is-open .fino-site-links { display: flex; }
    .fino-site-links a {
        padding: 12px 4px; font-size: var(--fw-nav); font-weight: 700;
        border-bottom: 1px solid #f3f1f8;
    }
    .fino-site-links a::after { display: none; }
    .fino-site-links-extra { display: block; }
    .fino-site-actions .fino-site-signin { display: none; }
    .fino-hero-grid, .fino-grid-2, .fino-metrics-grid, .fino-app-split, .fino-legal-layout,
    .fino-problem-grid, .fino-ask-grid, .fino-faq-home,
    .fino-ops-panel.is-on, .fino-intel-grid, .fino-manage-grid, .fino-locale-grid { grid-template-columns: 1fr; }
    .fino-hero--how h1 { max-width: none; font-size: var(--fw-display); white-space: normal; }
    .fino-hero--how .fino-hero-copy > p { max-width: none; }
    .fino-hero--ask { padding: 28px 0 24px; }
    .fino-hero--ask h1 { max-width: none; font-size: var(--fw-display); white-space: normal; }
    body.fino-site.is-rtl .fino-hero--ask h1 { white-space: normal; letter-spacing: 0; }
    .fino-hero--ask .fino-hero-copy > p:not(.fino-hero-badge) { max-width: none; }
    .fino-hero--contact { padding: 28px 0 40px; }
    .fino-hero--contact h1 { white-space: normal; font-size: var(--fw-display); }
    body.fino-site.is-rtl .fino-hero--contact h1 { white-space: normal; letter-spacing: 0; }
    .fino-hero--plans { padding: 48px 0 20px; }
    .fino-hero--plans h1,
    .fino-plans-title { font-size: var(--fw-display); }
    .fino-billing { width: 100%; border-radius: 20px; flex-wrap: wrap; }
    .fino-plan-grid { grid-template-columns: 1fr; }
    .fino-hero { padding: 48px 0 36px; }
    .fino-hero--home { padding: 28px 0 24px; }
    .fino-hero--home h1 { max-width: none; font-size: var(--fw-display); white-space: normal; }
    body.fino-site.is-rtl .fino-hero--home h1 { white-space: normal; letter-spacing: 0; }
    .fino-hero--home .fino-hero-copy > p:not(.fino-hero-trust) { max-width: none; }
    .fino-hero--home .fino-hero-trust { letter-spacing: 0; }
    .fino-logos-row { justify-content: center; }
    .fino-legal-toc { position: static; display: flex; flex-wrap: wrap; gap: 8px 14px; }
    .fino-legal-toc h4 { width: 100%; }
    .fino-legal-toc a { border-top: 0; padding: 0; }
    .fino-legal-doc { padding: 8px 20px 24px; }
    .fino-site-copy-links { margin-inline-start: 0; }
    .fino-site-footer-grid { grid-template-columns: 1fr 1fr; }
    .fino-cta-band { padding: 36px 20px; }
    .fino-cta-band h2 { font-size: var(--fw-title-lg); }
}
@media (max-width: 768px) {
    .fino-grid-3, .fino-grid-4, .fino-plan-grid { grid-template-columns: 1fr; }
    .fino-onboard, .fino-hubmap, .fino-askcard-kpis, .fino-draft-fields, .fino-matrix-grid, .fino-locale-kpis { grid-template-columns: 1fr; }
    .fino-hub-intro h2 { max-width: none; }
    .fino-ops-tabs { justify-content: flex-start; }
    .fino-doc { overflow-x: auto; }
    .fino-hero--home .fino-hero-actions,
    .fino-cta-band .fino-hero-actions { flex-direction: column; align-items: stretch; }
    .fino-hero--home .fino-btn,
    .fino-hero--home .fino-btn-ghost,
    .fino-cta-band .fino-btn,
    .fino-cta-band .fino-btn-ghost { width: 100%; }
    .fino-cta-purple { padding: 40px 0 36px; }
    .fino-demo-form { max-width: 100%; }
    .fino-demo-form input,
    .fino-demo-form button { width: 100%; flex: 1 1 100%; }
    .fino-dash { padding: 12px; border-radius: 16px; }
    .fino-dash-kpi { padding: 10px; }
    .fino-dash-bars { height: 88px; }
    .fino-card-plan, .fino-card-plan-compact { min-height: 0; }
    .fino-table-wrap { margin-inline: calc(var(--fw-gutter) * -1); border-radius: 0; border-inline: 0; }
}
@media (max-width: 640px) {
    .fino-slider-slide {
        flex-basis: 100%;
        max-width: 100%;
    }
    .fino-app-tab:not(.is-on),
    .fino-dash-tab:not(.is-on) { display: none; }
    .fino-feed-list li { grid-template-columns: 1fr auto; }
    .fino-feed-list em { grid-column: 1 / -1; }
    .fino-logos-row { justify-content: center; }
    .fino-site-footer-grid { grid-template-columns: 1fr; }
    .fino-site-footer-brand,
    .fino-site-footer-actions,
    .fino-store-btns,
    .fino-social {
        align-items: center;
        text-align: center;
        max-width: none;
    }
    .fino-site-footer-brand { width: 100%; }
    .fino-site-footer-brand p { max-width: 36ch; }
    .fino-site-copy {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }
    .fino-site-powered { margin-inline-start: 0; }
    .fino-hero--home h1 { max-width: none; white-space: normal; }
    .fino-hero--home .fino-hero-actions { flex-wrap: wrap; }
    .fino-center h2,
    .fino-center h2.fino-title-oneline,
    .fino-ask-grid h2,
    .fino-problem-grid h2,
    .fino-faq-home h2,
    .fino-cta-purple h2,
    .fino-cta-dark-box h2,
    body.fino-site.is-rtl .fino-center h2.fino-title-oneline { white-space: normal; max-width: none; }
    .fino-page-ask .fino-center h2 { white-space: normal; }
    .fino-hero--ask .fino-hero-actions { flex-wrap: wrap; }
    .fino-section--plans .fino-hero-badge {
        font-size: var(--fw-kicker);
        min-height: 0;
        padding: 8px 16px;
    }
    body.fino-site.is-rtl .fino-section--plans .fino-hero-badge {
        font-size: var(--fw-kicker);
        padding: 8px 16px;
    }
}
@media (max-width: 480px) {
    .fino-site-actions .fino-site-signin { display: none; }
    .fino-site-cta { padding: 8px 12px; font-size: var(--fw-btn); }
    .fino-site-logo img { height: 38px; }
    .fino-dash-kpis { gap: 8px; }
    .fino-logo-mark { font-size: 13px; }
}
.fino-hero-atmosphere {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.fino-hero-orb--mid {
    top: 18%; inset-inline-start: 38%; width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(79, 58, 155, 0.14) 0%, transparent 70%);
    animation: fino-orb-drift 14s ease-in-out infinite;
}
.fino-hero--home .fino-hero-orb--tr {
    animation: fino-orb-drift 18s ease-in-out infinite reverse;
}
.fino-hero--home .fino-hero-orb--bl {
    animation: fino-orb-drift 16s ease-in-out 1s infinite;
}
.fino-hero-gridlines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(79, 58, 155, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 58, 155, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 58% at 50% 38%, #000 18%, transparent 78%);
    animation: fino-grid-drift 32s linear infinite;
}
.fino-hero-particles i {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: #4F3A9B; opacity: 0.22;
    animation: fino-particle 9s ease-in-out infinite;
}
.fino-hero-particles i:nth-child(1) { top: 18%; inset-inline-start: 12%; animation-delay: 0s; }
.fino-hero-particles i:nth-child(2) { top: 28%; inset-inline-end: 18%; width: 4px; height: 4px; background: #0d9488; animation-delay: 1.4s; }
.fino-hero-particles i:nth-child(3) { top: 62%; inset-inline-start: 22%; animation-delay: 2.2s; }
.fino-hero-particles i:nth-child(4) { top: 44%; inset-inline-end: 8%; width: 5px; height: 5px; background: #6366f1; animation-delay: 3s; }
.fino-hero-particles i:nth-child(5) { bottom: 16%; inset-inline-start: 46%; animation-delay: 1.8s; }
.fino-hero-particles i:nth-child(6) { top: 12%; inset-inline-start: 58%; width: 3px; height: 3px; animation-delay: 4s; }
.fino-hero--home .fino-hero-badge {
    gap: 6px;
}
.fino-hero--home .fino-hero-badge i {
    font-size: 13px; animation: fino-spark 2.4s ease-in-out infinite;
}
.fino-hero--home .fino-anim-in {
    opacity: 0; transform: translateY(22px);
    animation: fino-rise 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s);
}
.fino-hero--home .fino-btn {
    position: relative; overflow: hidden;
    box-shadow: 0 10px 24px rgba(79, 58, 155, 0.22);
    transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}
.fino-hero--home .fino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(79, 58, 155, 0.28);
}
.fino-hero--home .fino-btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.32) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: fino-shimmer 3.4s ease-in-out 1.6s infinite;
}
.fino-dash-stage { position: relative; z-index: 1; min-width: 0; }
.fino-float-chip {
    position: absolute; z-index: 2;
    padding: 6px 11px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #efeaf8;
    box-shadow: 0 10px 24px rgba(30, 21, 69, 0.08);
    color: var(--fw-navy); font-size: 11px; font-weight: 700;
    pointer-events: none; white-space: nowrap;
    animation: fino-chip-float 5.6s ease-in-out infinite;
    animation-delay: var(--t, 0s);
}
.fino-float-chip--usd { top: 12px; inset-inline-start: 8px; }
.fino-float-chip--eur { top: 42%; inset-inline-end: 8px; }
.fino-float-chip--jpy { bottom: 18%; inset-inline-start: 10px; }
.fino-float-chip--qar { top: 8px; inset-inline-end: 18%; }
.fino-dash--live {
    position: relative; z-index: 1;
    animation: fino-dash-in 0.95s cubic-bezier(.22, 1, .36, 1) 0.2s both, fino-float 6.4s ease-in-out 1.2s infinite;
    box-shadow: 0 24px 60px rgba(22, 14, 61, 0.12), 0 0 0 1px rgba(91, 71, 212, 0.06), 0 0 48px rgba(79, 58, 155, 0.08);
}
.fino-dash--live .fino-dash-tab.is-on {
    position: relative;
}
.fino-dash--live .fino-dash-tab.is-ai {
    color: var(--fw-purple);
}
.fino-dash--live .fino-dash-tab.is-ai::after {
    content: ''; display: inline-block; width: 6px; height: 6px; margin-inline-start: 6px;
    border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
    animation: fino-live-dot 1.8s ease-out infinite; vertical-align: middle;
}
.fino-dash--live .fino-dash-bars span {
    transform: scaleY(0); transform-origin: bottom;
    animation: fino-bar-grow 1s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(0.55s + (var(--i, 0) * 0.08s));
}
.fino-dash--live .fino-dash-ask {
    position: relative; overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(79, 58, 155, 0.08);
}
.fino-dash--live .fino-dash-ask i { animation: fino-spark 2.2s ease-in-out infinite; }
.fino-dash-ask-text { overflow: hidden; min-width: 0; }
.fino-ask-caret {
    flex: none; width: 1.5px; height: 14px; background: var(--fw-purple);
    animation: fino-caret 0.9s steps(1) infinite;
}
.fino-chat--live .fino-chat-head strong i { animation: fino-spark 2.2s ease-in-out infinite; }
.fino-chat--live .fino-chat-user,
.fino-chat--live .fino-chat-ai,
.fino-chat--live .fino-chat-input {
    opacity: 0; transform: translateY(12px);
}
.fino-chat--live.is-in .fino-chat-user {
    animation: fino-rise 0.55s cubic-bezier(.22, 1, .36, 1) 0.1s forwards;
}
.fino-chat--live.is-in .fino-chat-ai {
    animation: fino-rise 0.55s cubic-bezier(.22, 1, .36, 1) 0.38s forwards;
}
.fino-chat--live.is-in .fino-chat-input {
    animation: fino-rise 0.55s cubic-bezier(.22, 1, .36, 1) 0.62s forwards;
}
.fino-chat--live.is-in .fino-chat-bars span {
    transform: scaleY(0); transform-origin: bottom;
    animation: fino-bar-grow 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(0.7s + (var(--i, 0) * 0.08s));
}
.fino-module {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.fino-module:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(76, 61, 154, 0.28);
}
.fino-price-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.fino-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(30, 21, 69, 0.10);
}
[data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(var(--d, 0) * 0.08s);
}
[data-reveal].is-in {
    opacity: 1; transform: none;
}
@keyframes fino-rise {
    to { opacity: 1; transform: none; }
}
@keyframes fino-word-in {
    to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes fino-brand-sheen {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes fino-featured-glow {
    0% { box-shadow: 0 0 0 0 rgba(79, 58, 155, 0.3); opacity: 1; }
    70% { box-shadow: 0 0 0 16px rgba(79, 58, 155, 0); opacity: 0; }
    100% { opacity: 0; }
}
@keyframes fino-pop-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}
@keyframes fino-wait-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.72; transform: scale(0.98); }
}
@keyframes fino-dash-in {
    from { opacity: 0; transform: translateY(28px) scale(0.97); }
    to { opacity: 1; transform: none; }
}
@keyframes fino-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes fino-chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes fino-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(24px, -18px) scale(1.08); }
}
@keyframes fino-grid-drift {
    from { background-position: 0 0; }
    to { background-position: 72px 72px; }
}
@keyframes fino-particle {
    0%, 100% { transform: translateY(0); opacity: 0.12; }
    50% { transform: translateY(-18px); opacity: 0.38; }
}
@keyframes fino-bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}
@keyframes fino-hub-dash {
    to { stroke-dashoffset: -180; }
}
@keyframes fino-hub-travel {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -256; }
}
@keyframes fino-hub-core-glow {
    0%, 100% { box-shadow: 0 22px 50px rgba(22, 14, 61, 0.28), 0 0 0 10px rgba(22, 14, 61, 0.04), 0 0 28px rgba(109, 90, 224, 0.18); }
    50% { box-shadow: 0 26px 60px rgba(22, 14, 61, 0.34), 0 0 0 14px rgba(109, 90, 224, 0.08), 0 0 42px rgba(109, 90, 224, 0.32); }
}
@keyframes fino-hub-ring {
    0% { opacity: 0.55; transform: scale(0.92); }
    70% { opacity: 0; transform: scale(1.18); }
    100% { opacity: 0; transform: scale(1.22); }
}
@keyframes fino-nav-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: none; }
}
@keyframes fino-shimmer {
    0%, 70% { transform: translateX(-130%); }
    100% { transform: translateX(130%); }
}
@keyframes fino-spark {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.12); }
}
@keyframes fino-caret {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes fino-live-dot {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
    70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
@keyframes fino-cta-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}
@keyframes fino-cta-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -14px) scale(1.08); }
}
@keyframes fino-cta-sheen {
    0%, 72% { transform: translateX(-40%) rotate(8deg); opacity: 0; }
    82% { opacity: 1; }
    100% { transform: translateX(40%) rotate(8deg); opacity: 0; }
}
@keyframes fino-cta-ico {
    0% { box-shadow: 0 0 0 0 rgba(245, 193, 108, 0.45); }
    70% { box-shadow: 0 0 0 10px rgba(245, 193, 108, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 193, 108, 0); }
}

@media (max-width: 1099px) {
    .fino-float-chip { display: none; }
    .fino-dash--live { animation: fino-dash-in 0.8s cubic-bezier(.22, 1, .36, 1) 0.1s both; }
}
.fino-anim-in {
    opacity: 0;
    transform: translateY(22px);
    animation: fino-rise 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s);
}
.fino-kicker--teal {
    color: var(--fw-teal);
    text-transform: none;
    letter-spacing: 0.02em;
}
body.fino-site.is-rtl .fino-kicker--teal {
    letter-spacing: 0;
}
.fino-hero--inner {
    padding: 72px 0 48px;
    text-align: center;
    background: linear-gradient(90deg, #e8f3ff 0%, #f4fbff 46%, #e7faf5 100%);
}
.fino-hero--inner .fino-hero-orb--tr {
    animation: fino-orb-drift 18s ease-in-out infinite reverse;
}
.fino-hero--inner .fino-hero-orb--bl {
    animation: fino-orb-drift 16s ease-in-out 1s infinite;
}
.fino-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.fino-hero--inner h1 {
    max-width: 16em;
    margin: 0 auto 16px;
    color: var(--fw-navy);
}
body.fino-site.is-rtl .fino-hero--inner h1 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0;
    line-height: 1.45;
}
.fino-hero--inner p:not(.fino-kicker):not(.fino-hero-badge) {
    max-width: 40em;
    margin-inline: auto;
}
.fino-hero--inner .fino-legal-meta {
    justify-content: center;
}
.fino-section--about-cards {
    padding-top: 8px;
}
.fino-card--identity {
    text-align: center;
    padding: 32px 26px 28px;
    border-radius: 20px;
}
.fino-card--identity .fino-step {
    margin-inline: auto;
}
.fino-card--identity h3 {
    color: var(--fw-navy);
    font-size: 1.05rem;
    font-weight: 800;
}
body.fino-site.is-rtl .fino-card--identity h3 {
    font-family: Cairo, 'IBM Plex Sans Arabic', sans-serif;
}
.fino-hero--how .fino-hero-atmosphere,
.fino-hero--plans .fino-hero-atmosphere,
.fino-hero--inner .fino-hero-atmosphere {
    z-index: 0;
}
.fino-hero--how,
.fino-hero--plans {
    position: relative;
}
.fino-hero--how .fino-hero-orb--tr,
.fino-hero--plans .fino-hero-orb--tr {
    animation: fino-orb-drift 18s ease-in-out infinite reverse;
}
.fino-hero--how .fino-hero-orb--bl,
.fino-hero--plans .fino-hero-orb--bl {
    animation: fino-orb-drift 16s ease-in-out 1s infinite;
}
.fino-plans-hero {
    position: relative;
    z-index: 1;
}
.fino-secure {
    transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), box-shadow 0.3s ease;
}
.fino-secure:hover {
    transform: translateY(-4px);
    box-shadow: var(--fw-shadow-md);
}
.fino-legal-toc a {
    transition: color 0.2s ease, padding-inline-start 0.2s ease;
}
.fino-legal-toc a:hover {
    padding-inline-start: 4px;
}
@media (max-width: 768px) {
    .fino-hero--inner { padding: 48px 0 36px; }
    .fino-card--identity { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .fino-marquee-track,
    .fino-site-logo,
    .fino-site-links a,
    .fino-site-actions > *,
    .fino-site-cta::after,
    .fino-hubmap.is-in .fino-hub-lines > path,
    .fino-hubmap.is-in .fino-hub-travel path,
    .fino-hubmap.is-in .fino-hub-core,
    .fino-hubmap.is-in .fino-hub-core::before,
    .fino-hubmap.is-in .fino-hub-core::after,
    .fino-hubmap.is-in .fino-hub-mod:nth-child(3) .fino-hub-ico i,
    .fino-hero-orb,
    .fino-hero-gridlines,
    .fino-hero-particles i,
    .fino-anim-in,
    .fino-hero--home .fino-anim-in,
    .fino-hero--how .fino-anim-in,
    .fino-hero--ask .fino-anim-in,
    .fino-hero--contact .fino-anim-in,
    .fino-pipe-step,
    .fino-pipe-arrow,
    .fino-pipe-sync i,
    .fino-pipe-pill.is-wait,
    .fino-hero--home .fino-btn::after,
    .fino-form--contact .fino-btn::after,
    .fino-cta-orb,
    .fino-cta-grid,
    .fino-cta-shine,
    .fino-cta-particles i,
    .fino-cta-purple.is-in .fino-cta-anim,
    .fino-cta-purple.is-in .fino-trust-ico,
    .fino-demo-form button::after,
    .fino-hero--home .fino-hero-badge i,
    .fino-hero--ask .fino-hero-badge i,
    .fino-hero--contact .fino-hero-badge i,
    .fino-plans-title span,
    .fino-plans-title .is-brand,
    .fino-plans-in,
    .fino-plan-card.is-featured.is-in::before,
    .fino-plan-card.is-featured.is-in .fino-plan-pop,
    .fino-plan-card.is-in .fino-btn::after,
    .fino-dash--live,
    .fino-dash--live .fino-dash-bars span,
    .fino-dash--live .fino-dash-ask i,
    .fino-dash--live .fino-dash-tab.is-ai::after,
    .fino-float-chip,
    .fino-ask-caret,
    .fino-chat--live .fino-chat-user,
    .fino-chat--live .fino-chat-ai,
    .fino-chat--live .fino-chat-input,
    .fino-chat--live.is-in .fino-chat-bars span { animation: none !important; }
    .fino-anim-in,
    .fino-hero--home .fino-anim-in,
    .fino-hero--ask .fino-anim-in,
    .fino-hero--contact .fino-anim-in,
    .fino-plans-title span,
    .fino-plans-in,
    .fino-plan-card[data-reveal] .fino-plan-checks li,
    [data-reveal],
    .fino-cta-anim,
    .fino-chat--live .fino-chat-user,
    .fino-chat--live .fino-chat-ai,
    .fino-chat--live .fino-chat-input {
        opacity: 1; transform: none; filter: none; transition: none;
    }
    .fino-site-logo,
    .fino-site-links a,
    .fino-site-actions > * { opacity: 1; transform: none; }
    .fino-feature:hover,
    .fino-module:hover,
    .fino-price-card:hover,
    .fino-plan-card:hover,
    .fino-plan-card.is-featured:hover,
    .fino-site-cta:hover,
    .fino-site-logo:hover img,
    .fino-hubmap.is-in .fino-hub-mod,
    .fino-hubmap.is-in .fino-hub-core,
    .fino-hubmap.is-in .fino-hub-mod:hover,
    .fino-btn:hover,
    .fino-card:hover,
    .fino-card--identity:hover,
    .fino-faq-item:hover,
    .fino-secure:hover,
    .fino-hero--home .fino-btn:hover,
    .fino-form--contact .fino-btn:hover,
    .fino-demo-form input:focus,
    .fino-demo-form button:hover,
    .fino-cta-outline:hover,
    .fino-cta-link:hover { transform: none; }
    .fino-lang-switch-opts::before { transition: none; }
}
