:root {
    --fx-ink: #141638;
    --fx-muted: #667092;
    --fx-line: #e9eaf7;
    --fx-soft: #f7f7ff;
    --fx-purple: #6756f5;
    --fx-purple-dark: #4330d7;
    --fx-cyan: #42c7dc;
    --fx-card: rgba(255, 255, 255, 0.92);
    --fx-shadow: 0 24px 70px rgba(79, 71, 180, 0.14);
    --fx-list-icon: url("/assets/landing/platform-preview/list-icon.jpg");
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.fx-platform-body {
    margin: 0;
    background:
        radial-gradient(circle at 8% 10%, rgba(103, 86, 245, 0.1), transparent 28rem),
        radial-gradient(circle at 88% 16%, rgba(66, 199, 220, 0.12), transparent 30rem),
        linear-gradient(180deg, #ffffff 0%, #f7f8ff 46%, #ffffff 100%);
    color: var(--fx-ink);
    font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fx-platform-page {
    overflow-x: hidden;
    padding-top: 84px;
}

.fx-container {
    width: min(1480px, calc(100% - 32px));
    margin: 0 auto;
}

.fx-topbar {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 50;
    width: min(1480px, calc(100% - 32px));
    margin: 0;
    border: 1px solid rgba(221, 224, 245, 0.78);
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 54px rgba(82, 89, 164, 0.1);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.fx-topbar.is-floating {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(103, 86, 245, 0.18);
    box-shadow: 0 24px 66px rgba(82, 89, 164, 0.18);
}

.fx-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 24px;
}

.fx-brand {
    display: inline-flex;
    align-items: center;
    color: var(--fx-ink);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0;
}

.fx-brand__logo {
    display: block;
    width: 136px;
    height: auto;
    object-fit: contain;
}

.fx-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--fx-muted);
    font-size: 14px;
    font-weight: 800;
}

.fx-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fx-nav a:hover {
    color: var(--fx-purple);
}

.fx-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fx-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 15px;
    background: #fff;
    color: var(--fx-ink);
    box-shadow: 0 10px 28px rgba(82, 89, 164, 0.1);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fx-button:hover {
    transform: translateY(-2px);
    border-color: rgba(103, 86, 245, 0.22);
    box-shadow: 0 18px 42px rgba(82, 89, 164, 0.16);
}

.fx-button--primary {
    background: linear-gradient(135deg, #735cff, #4b35e9);
    color: #fff;
    box-shadow: 0 18px 42px rgba(88, 66, 231, 0.28);
}

.fx-button--ghost {
    border-color: rgba(103, 86, 245, 0.22);
    color: var(--fx-purple-dark);
}

.fx-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    filter: blur(4px);
}

.fx-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.fx-hero {
    padding: 34px 0 34px;
}

.fx-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: 34px;
    min-height: 640px;
    border: 1px solid var(--fx-line);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 255, 0.9)),
        radial-gradient(circle at 74% 18%, rgba(103, 86, 245, 0.16), transparent 30rem);
    box-shadow: var(--fx-shadow);
    padding: clamp(28px, 4vw, 58px);
}

.fx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border: 1px solid rgba(103, 86, 245, 0.16);
    border-radius: 999px;
    background: rgba(103, 86, 245, 0.08);
    padding: 8px 13px;
    color: var(--fx-purple-dark);
    font-size: 13px;
    font-weight: 900;
}

.fx-hero h1,
.fx-section-head h2,
.fx-split__copy h2,
.fx-price-card h3,
.fx-card h3 {
    margin: 0;
    letter-spacing: 0;
}

.fx-hero h1 {
    margin-top: 20px;
    max-width: 720px;
    font-size: clamp(42px, 5.3vw, 82px);
    line-height: 1.03;
    font-weight: 900;
}

.fx-gradient-text {
    background: linear-gradient(135deg, #6d58ff, #31b9d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fx-hero__lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: #56607f;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.65;
}

.fx-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.fx-hero__checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.fx-list-icon,
.fx-hero__checks li,
.fx-text-list li,
.fx-mini-list li {
    position: relative;
}

.fx-hero__checks li,
.fx-text-list li,
.fx-mini-list li {
    padding-left: 34px;
}

.fx-hero__checks li::before,
.fx-text-list li::before,
.fx-mini-list li::before {
    position: absolute;
    left: 0;
    top: 0.12em;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background-image: var(--fx-list-icon);
    background-size: cover;
    content: "";
    box-shadow: 0 8px 18px rgba(87, 65, 230, 0.14);
}

.fx-hero__checks li {
    color: #3c4364;
    font-weight: 800;
}

.fx-hero__visual {
    position: relative;
    min-height: 520px;
}

.fx-visual-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(208, 212, 239, 0.88);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 82px rgba(76, 71, 162, 0.18);
}

.fx-hero__visual .fx-visual-card {
   /* height: 560px;*/
}

.fx-visual-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fx-float-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: 255px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(82, 89, 164, 0.2);
    padding: 16px 18px;
    color: #2d3455;
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(16px);
}

.fx-section {
    padding: 46px 0;
}

.fx-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.fx-section-head h2 {
   /* max-width: 800px;*/
    font-size: clamp(30px, 3.2vw, 52px);
    line-height: 1.08;
    font-weight: 900;
}

.fx-section-head p {
    max-width: 560px;
    margin: 12px 0 0;
    color: var(--fx-muted);
    font-size: 17px;
    line-height: 1.65;
}

.fx-section-head--wide p {
    max-width: 820px;
}

.fx-card {
    overflow: hidden;
    border: 1px solid var(--fx-line);
    border-radius: 24px;
    background: var(--fx-card);
    box-shadow: 0 14px 42px rgba(82, 89, 164, 0.09);
}

.fx-card__image {
   /* height: 210px;*/
    border-bottom: 1px solid var(--fx-line);
    background: #f6f6ff;
}

.fx-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.fx-card__body {
    padding: 22px;
}

.fx-card h3 {
    font-size: 20px;
    line-height: 1.24;
    font-weight: 900;
}

.fx-card p {
    margin: 10px 0 0;
    color: var(--fx-muted);
    font-size: 15px;
    line-height: 1.55;
}

.fx-module-stack {
    display: grid;
    gap: 22px;
}

.fx-feature-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  /*  align-items: center;*/
    gap: clamp(22px, 3vw, 42px);
    overflow: hidden;
    border: 1px solid var(--fx-line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 58px rgba(82, 89, 164, 0.1);
    padding: clamp(18px, 2.8vw, 36px);
}

.fx-feature-strip--reverse {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.fx-feature-strip--reverse .fx-feature-strip__media {
    order: 2;
}

.fx-feature-strip--reverse .fx-feature-strip__copy {
    order: 1;
}

.fx-feature-strip__media {
    display: grid;
    min-height: 430px;
   /* place-items: center;*/
    overflow: hidden;
    border: 1px solid rgba(221, 224, 245, 0.9);
    border-radius: 26px;
    background: linear-gradient(180deg, #fbfaff, #fbfaff);
}

.fx-feature-strip__media img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    padding: 0;
}

.fx-feature-strip__copy {
    padding: 6px 4px;
}

.fx-feature-strip__num {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c67ff, #4b35e9);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(103, 86, 245, 0.22);
}

.fx-feature-strip h3 {
    margin: 18px 0 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
    font-weight: 900;
}

.fx-feature-strip p {
    max-width: 660px;
    margin: 16px 0 0;
    color: var(--fx-muted);
    font-size: 17px;
    line-height: 1.65;
}

.fx-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: center;
    border: 1px solid var(--fx-line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--fx-shadow);
    padding: clamp(22px, 3vw, 40px);
}

.fx-split--reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.fx-split--reverse .fx-split__copy {
    order: 2;
}

.fx-split--reverse .fx-split__media {
    order: 1;
}

.fx-split__copy h2 {
    max-width: 720px;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.1;
    font-weight: 900;
}

.fx-split__copy p {
    margin: 16px 0 0;
    color: var(--fx-muted);
    font-size: 17px;
    line-height: 1.65;
}

.fx-text-list,
.fx-mini-list {
    display: grid;
    gap: 13px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #303857;
    font-weight: 800;
}

.fx-split__media {
    min-height: 360px;
}

.fx-split__media .fx-visual-card {
    height: 410px;
}

.fx-split__media .fx-visual-card img {
    object-fit: contain;
    padding: 14px;
}

.fx-ai-support {
    display: grid;
    gap: 24px;
}

.fx-ai-support-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
   /* align-items: center;*/
    overflow: hidden;
    border: 1px solid rgba(103, 86, 245, 0.14);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.92)),
        radial-gradient(circle at 12% 0%, rgba(66, 199, 220, 0.12), transparent 22rem);
    box-shadow: 0 24px 70px rgba(82, 89, 164, 0.12);
}

.fx-ai-support-card--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.fx-ai-support-card--reverse .fx-ai-support-card__media {
    order: 2;
}

.fx-ai-support-card--reverse .fx-ai-support-card__body {
    order: 1;
}

.fx-ai-support-card__media {
    display: grid;
    min-height: 260px;
    place-items: center;
    border-right: 1px solid rgba(221, 224, 245, 0.9);
    background: #f7f8ff;
}

.fx-ai-support-card--reverse .fx-ai-support-card__media {
    border-right: 0;
    border-left: 1px solid rgba(221, 224, 245, 0.9);
}

.fx-ai-support-card__media img {
    display: block;
    width: 100%;
    height: auto;
   /* max-height: 360px;*/
    object-fit: contain;
    /*padding: clamp(10px, 1.4vw, 18px);*/
}

.fx-ai-support-card__body {
    padding: clamp(22px, 2.4vw, 34px);
}

.fx-ai-support-card__label {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(66, 199, 220, 0.12);
    padding: 8px 12px;
    color: #177e94;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fx-ai-support-card h3 {
    margin: 16px 0 0;
    color: var(--fx-ink);
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.13;
    font-weight: 900;
    letter-spacing: 0;
}

.fx-ai-support-card p {
    margin: 16px 0 0;
    color: var(--fx-muted);
    font-size: 16px;
    line-height: 1.65;
}

.fx-ai-support-card .fx-text-list {
    font-size: 15px;
}

.fx-workflow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.fx-step {
    position: relative;
    border: 1px solid var(--fx-line);
    border-radius: 24px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 14px 42px rgba(82, 89, 164, 0.08);
}

.fx-step__num {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #7c67ff, #4b35e9);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.fx-step h3 {
    margin: 18px 0 8px;
    font-size: 18px;
}

.fx-step p {
    margin: 0;
    color: var(--fx-muted);
    font-size: 14px;
    line-height: 1.55;
}

.fx-scenarios {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.fx-scenario-main {
    min-height: 470px;
}

.fx-scenario-main .fx-card__image {
   /* height: 300px;*/
}

.fx-scenario-side {
    display: grid;
    gap: 18px;
}

.fx-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fx-price-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    border: 1px solid var(--fx-line);
    border-radius: 26px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 18px 48px rgba(82, 89, 164, 0.1);
}

.fx-price-card--accent {
    border-color: rgba(103, 86, 245, 0.36);
    box-shadow: 0 22px 62px rgba(103, 86, 245, 0.17);
}

.fx-price-card h3 {
    font-size: 24px;
}

.fx-price-card__price {
    margin-top: 14px;
    color: var(--fx-purple-dark);
    font-size: 34px;
    font-weight: 900;
}

.fx-price-card__price small {
    color: var(--fx-muted);
    font-size: 14px;
    font-weight: 800;
}

.fx-price-card p {
    color: var(--fx-muted);
    line-height: 1.6;
}

.fx-price-card .fx-button {
    margin-top: auto;
}

.hidden {
    display: none !important;
}

.fx-company-plans-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 386px);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 8px 0 18px;
    scroll-snap-type: x proximity;
}

.fx-company-plans-scroller::-webkit-scrollbar {
    height: 10px;
}

.fx-company-plans-scroller::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.68);
    border-radius: 999px;
}

.fx-company-plans-scroller::-webkit-scrollbar-thumb {
    background: rgba(103, 86, 245, 0.34);
    border-radius: 999px;
}

.fx-company-plans-scroller.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.fx-company-plan-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    scroll-snap-align: start;
    border: 1px solid rgba(226, 228, 248, 0.94);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 52px rgba(82, 89, 164, 0.1);
    padding: 26px;
}

.fx-company-plan-card--featured {
    border-color: rgba(103, 86, 245, 0.34);
    background: #fff;
    box-shadow: 0 24px 70px rgba(103, 86, 245, 0.18);
}

.fx-company-plan-card--empty {
    justify-content: center;
    border-style: dashed;
    color: var(--fx-muted);
    font-weight: 800;
    text-align: center;
}

.fx-company-plan-card__badge,
.fx-company-plan-card__promo {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
}

.fx-company-plan-card__badge {
    background: rgba(103, 86, 245, 0.1);
    color: var(--fx-purple-dark);
}

.fx-company-plan-card__promo {
    margin-top: 10px;
    background: #dff8ec;
    color: #087348;
}

.fx-company-plan-card h3 {
    margin: 18px 0 0;
    font-size: 25px;
    line-height: 1.16;
    font-weight: 900;
}

.fx-company-plan-card__price {
    margin-top: 14px;
    color: var(--fx-ink);
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.fx-company-plan-card__hint {
    margin-top: 8px;
    color: var(--fx-muted);
    font-size: 14px;
    font-weight: 800;
}

.fx-company-plan-card p {
    margin: 16px 0 0;
    color: var(--fx-muted);
    font-size: 15px;
    line-height: 1.65;
}

.fx-company-plan-card__limits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.fx-company-plan-card__limits span {
    border-radius: 14px;
    background: rgba(103, 86, 245, 0.08);
    padding: 10px 12px;
    color: var(--fx-purple-dark);
    font-size: 13px;
    font-weight: 900;
}

.fx-company-plan-card__limits span + span {
    background: #f1f3fb;
    color: #5f6884;
}

.fx-company-plan-card__features {
    display: grid;
    gap: 11px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    color: #303857;
    font-size: 14px;
    line-height: 1.45;
}

.fx-company-plan-card__features li {
    position: relative;
    padding-left: 24px;
}

.fx-company-plan-card__features li::before {
    position: absolute;
    left: 0;
    top: 0.18em;
    color: var(--fx-purple);
    content: "•";
    font-size: 18px;
    font-weight: 900;
}

.fx-company-plan-card__toggle {
    width: fit-content;
    margin-top: 16px;
    border: 1px solid rgba(103, 86, 245, 0.18);
    border-radius: 999px;
    background: #fff;
    padding: 10px 14px;
    color: var(--fx-purple-dark);
    box-shadow: 0 12px 28px rgba(82, 89, 164, 0.08);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
}

.fx-company-plan-card__action {
    margin-top: auto;
    padding-top: 22px;
}

.fx-company-plan-card__action .fx-button {
    width: 100%;
}

.fx-company-plan-card__action .fx-button:disabled,
.fx-company-plan-card__action .fx-button.is-disabled {
    cursor: not-allowed;
    opacity: 0.62;
    pointer-events: none;
}

.fx-company-plan-card__form {
    display: grid;
    gap: 14px;
}

.fx-company-plan-card__periods {
    display: grid;
    gap: 8px;
    border-radius: 18px;
    background: #f7f8ff;
    padding: 10px;
}

.fx-company-plan-card__periods label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #fff;
    border-radius: 15px;
    background: #fff;
    padding: 12px;
    color: #3b4262;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(82, 89, 164, 0.05);
}

.fx-company-plan-card__periods label span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fx-link-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fx-link-card {
    border: 1px solid rgba(103, 86, 245, 0.18);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,246,255,0.94));
    padding: 26px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 42px rgba(82, 89, 164, 0.08);
}

.fx-link-card strong {
    display: block;
    font-size: 20px;
}

.fx-link-card span {
    display: block;
    margin-top: 8px;
    color: var(--fx-muted);
    line-height: 1.55;
}

.fx-cta {
    margin: 48px auto 70px;
    border-radius: 32px;
    background: linear-gradient(135deg, #20166d, #6b55ff 55%, #40c5df);
    color: #fff;
    padding: clamp(30px, 5vw, 64px);
    text-align: center;
    box-shadow: 0 28px 76px rgba(78, 57, 243, 0.26);
}

.fx-cta h2 {
    margin: 0 auto;
    max-width: 900px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.06;
}

.fx-cta p {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.6;
}

.fx-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.fx-cta .fx-button--primary {
    background: #fff;
    color: #4b35e9;
}

.fx-cta .fx-button--ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.fx-footer {
    padding: 0 0 42px;
}

.fx-footer__downloads,
.fx-footer__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.fx-footer__downloads {
    border: 1px solid var(--fx-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 46px rgba(82, 89, 164, 0.09);
    padding: 22px;
}

.fx-footer__downloads strong,
.fx-footer__downloads span {
    display: block;
}

.fx-footer__downloads strong {
    font-size: 20px;
    font-weight: 900;
}

.fx-footer__downloads span {
    margin-top: 6px;
    color: var(--fx-muted);
    line-height: 1.5;
}

.fx-footer__download-links,
.fx-footer__menu nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.fx-footer__download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(103, 86, 245, 0.14);
    border-radius: 999px;
    background: #fff;
    padding: 0 18px;
    color: #3d2dc8;
    box-shadow: 0 12px 30px rgba(82, 89, 164, 0.08);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.fx-footer__store-link img {
    display: block;
    height: 34px;
    width: auto;
}

.fx-footer__menu {
    padding-top: 22px;
    color: var(--fx-muted);
    font-size: 14px;
}

.fx-footer__menu span {
    color: var(--fx-ink);
    font-weight: 900;
}

.fx-footer__menu a {
    color: var(--fx-muted);
    font-weight: 800;
    text-decoration: none;
}

.fx-footer__menu a:hover {
    color: var(--fx-purple-dark);
}

.fx-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 74px;
    z-index: 60;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(103, 86, 245, 0.24);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(115, 92, 255, 0.96), rgba(75, 53, 233, 0.96));
    color: #fff;
    box-shadow: 0 18px 46px rgba(88, 66, 231, 0.32);
    cursor: pointer;
    font-size: 24px;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.94);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fx-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.fx-scroll-top:hover {
    box-shadow: 0 24px 58px rgba(88, 66, 231, 0.42);
    transform: translateY(-2px) scale(1);
}

@media (max-width: 1180px) {
    .fx-hero__shell,
    .fx-split,
    .fx-split--reverse,
    .fx-scenarios {
        grid-template-columns: 1fr;
    }

    .fx-split--reverse .fx-split__copy,
    .fx-split--reverse .fx-split__media {
        order: initial;
    }

    .fx-workflow,
    .fx-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fx-ai-support,
    .fx-ai-support-card,
    .fx-ai-support-card--reverse {
        grid-template-columns: 1fr;
    }

    .fx-ai-support-card--reverse .fx-ai-support-card__media,
    .fx-ai-support-card--reverse .fx-ai-support-card__body {
        order: initial;
    }

    .fx-ai-support-card__media,
    .fx-ai-support-card--reverse .fx-ai-support-card__media {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(221, 224, 245, 0.9);
    }
}

@media (max-width: 860px) {
    .fx-topbar {
        top: 0;
        width: min(100% - 16px, 1480px);
        margin-top: 0;
        border-radius: 0 0 18px 18px;
    }

    .fx-nav {
        display: none;
    }

    .fx-topbar__inner {
        min-height: 68px;
    }

    .fx-hero {
        padding-top: 28px;
    }

    .fx-hero__shell {
        min-height: 0;
        padding: 24px;
    }

    .fx-hero__visual,
    .fx-hero__visual .fx-visual-card {
        min-height: 0;
        height: 360px;
    }

    .fx-hero__checks,
    .fx-workflow,
    .fx-price-grid,
    .fx-link-band {
        grid-template-columns: 1fr;
    }

    .fx-feature-strip,
    .fx-feature-strip--reverse {
        grid-template-columns: 1fr;
    }

    .fx-feature-strip--reverse .fx-feature-strip__media,
    .fx-feature-strip--reverse .fx-feature-strip__copy {
        order: initial;
    }

    .fx-feature-strip__media {
        min-height: 300px;
    }

    .fx-section-head {
        display: block;
    }
}

@media (max-width: 560px) {
    .fx-container {
        width: min(100% - 20px, 1480px);
    }

    .fx-actions .fx-button--ghost {
        display: none;
    }

    .fx-scroll-top {
        right: 14px;
        bottom: 64px;
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 21px;
    }

    .fx-hero__shell,
    .fx-split,
    .fx-card,
    .fx-price-card,
    .fx-link-card {
        border-radius: 20px;
    }

    .fx-hero__visual,
    .fx-hero__visual .fx-visual-card,
    .fx-split__media .fx-visual-card {
        height: 280px;
    }

    .fx-card__image {
        height: 180px;
    }

    .fx-ai-support-card {
        border-radius: 20px;
    }

    .fx-ai-support-card__media {
        min-height: 210px;
    }

    .fx-ai-support-card__media img {
        max-height: 260px;
        padding: 10px;
    }
}

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

    .fx-topbar,
    .fx-button,
    .fx-reveal,
    .fx-scroll-top {
        transition: none;
    }

    .fx-reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
