/* ==========================================================================
   Marketing site design system
   Own layout primitives + components. Bootstrap CSS remains loaded only for
   the registration form controls (.form-floating / .form-control).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
    --fx-brand: #008080;
    --fx-brand-dark: #016060;
    --fx-brand-deep: #04302f;
    --fx-brand-bright: #2cdfd5;
    --fx-brand-tint: #e8f6f5;
    --fx-brand-tint-soft: #f3fbfa;

    --fx-ink: #0c1f1e;
    --fx-ink-soft: #23423f;
    --fx-body: #55706d;
    --fx-muted: #7d918f;
    --fx-faint: #a8b8b6;

    --fx-surface: #ffffff;
    --fx-surface-2: #f7fbfa;
    --fx-surface-3: #eef6f5;
    --fx-border: #e2edeb;
    --fx-border-strong: #cfe0dd;

    --fx-amber: #f5a524;
    --fx-rose: #f2637e;
    --fx-violet: #7c6cf5;
    --fx-lime: #34c98a;

    --fx-font-display: 'Inter', system-ui, -apple-system, sans-serif;
    --fx-font-body: 'Poppins', system-ui, -apple-system, sans-serif;

    --fx-r-xs: 8px;
    --fx-r-sm: 12px;
    --fx-r-md: 18px;
    --fx-r-lg: 26px;
    --fx-r-xl: 36px;
    --fx-r-pill: 999px;

    --fx-shadow-xs: 0 1px 2px rgba(12, 31, 30, 0.04), 0 2px 8px rgba(12, 31, 30, 0.04);
    --fx-shadow-sm: 0 2px 6px rgba(12, 31, 30, 0.05), 0 8px 24px rgba(12, 31, 30, 0.06);
    --fx-shadow-md: 0 8px 20px rgba(12, 31, 30, 0.07), 0 20px 50px rgba(12, 31, 30, 0.08);
    --fx-shadow-lg: 0 20px 44px rgba(12, 31, 30, 0.10), 0 40px 90px rgba(12, 31, 30, 0.10);
    --fx-glow: 0 16px 40px rgba(0, 128, 128, 0.28);

    --fx-nav-h: 76px;
    --fx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--fx-nav-h) + 20px);
}

body {
    background: var(--fx-surface);
    color: var(--fx-body);
    font-family: var(--fx-font-body);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.18;
    margin: 0 0 0.5em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--fx-brand);
    text-decoration: none;
    transition: color 0.2s var(--fx-ease);
}

a:hover {
    color: var(--fx-brand-dark);
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
}

/* Layout primitives */

.fx-container {
    margin-inline: auto;
    width: min(1240px, 100% - 40px);
}

.fx-container-narrow {
    margin-inline: auto;
    width: min(880px, 100% - 40px);
}

.fx-section {
    padding-block: clamp(64px, 8vw, 118px);
    position: relative;
}

.fx-section-tight {
    padding-block: clamp(48px, 5vw, 76px);
}

.fx-section-tint {
    background: var(--fx-surface-2);
}

.fx-section-ink {
    background: var(--fx-brand-deep);
}

/* Type scale */

.fx-display {
    font-size: clamp(2.4rem, 5.4vw, 4.15rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.fx-h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.85rem);
    letter-spacing: -0.03em;
}

.fx-h3 {
    font-size: clamp(1.25rem, 1.9vw, 1.6rem);
}

.fx-lead {
    color: var(--fx-body);
    font-size: clamp(1rem, 1.25vw, 1.185rem);
    line-height: 1.72;
}

.fx-grad {
    background: linear-gradient(105deg, var(--fx-brand) 0%, #12b5a6 45%, var(--fx-brand-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.fx-center {
    text-align: center;
}

.fx-center .fx-lead {
    margin-inline: auto;
    max-width: 660px;
}

.fx-section-head {
    margin-bottom: clamp(38px, 4vw, 62px);
}

/* Heading on the left, a single call to action pinned right. */
.fx-head-split {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    justify-content: space-between;
}

.fx-head-copy {
    max-width: 660px;
}

.fx-head-action {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .fx-head-split {
        align-items: stretch;
    }

    .fx-head-action {
        align-self: flex-start;
    }
}

/* Eyebrow */

.fx-eyebrow {
    align-items: center;
    background: var(--fx-brand-tint);
    border-radius: var(--fx-r-pill);
    color: var(--fx-brand);
    display: inline-flex;
    font-family: var(--fx-font-display);
    font-size: 0.79rem;
    font-weight: 600;
    gap: 8px;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
    padding: 7px 16px;
    text-transform: uppercase;
}

.fx-eyebrow i {
    font-size: 0.95rem;
}

.fx-eyebrow-invert {
    background: rgba(255, 255, 255, 0.12);
    color: var(--fx-brand-bright);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.fx-btn {
    align-items: center;
    border: 1.5px solid transparent;
    border-radius: var(--fx-r-pill);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--fx-font-display);
    font-size: 0.98rem;
    font-weight: 600;
    gap: 9px;
    justify-content: center;
    line-height: 1;
    padding: 15px 28px;
    text-align: center;
    transition: transform 0.25s var(--fx-ease), box-shadow 0.25s var(--fx-ease),
        background-color 0.25s var(--fx-ease), color 0.25s var(--fx-ease), border-color 0.25s var(--fx-ease);
    white-space: nowrap;
}

.fx-btn:active {
    transform: translateY(1px);
}

.fx-btn-primary {
    background: var(--fx-brand);
    box-shadow: var(--fx-glow);
    color: #fff;
}

.fx-btn-primary:hover {
    background: var(--fx-brand-dark);
    box-shadow: 0 22px 46px rgba(0, 128, 128, 0.34);
    color: #fff;
    transform: translateY(-2px);
}

.fx-btn-ghost {
    background: var(--fx-surface);
    border-color: var(--fx-border-strong);
    color: var(--fx-ink);
}

.fx-btn-ghost:hover {
    border-color: var(--fx-brand);
    color: var(--fx-brand);
    transform: translateY(-2px);
}

.fx-btn-light {
    background: #fff;
    color: var(--fx-brand);
}

.fx-btn-light:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    color: var(--fx-brand-dark);
    transform: translateY(-2px);
}

.fx-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.fx-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.fx-btn-sm {
    font-size: 0.9rem;
    padding: 11px 20px;
}

.fx-btn-lg {
    font-size: 1.05rem;
    padding: 18px 34px;
}

.fx-btn-block {
    width: 100%;
}

.fx-textlink {
    align-items: center;
    color: var(--fx-brand);
    display: inline-flex;
    font-family: var(--fx-font-display);
    font-weight: 600;
    gap: 7px;
}

.fx-textlink i {
    transition: transform 0.25s var(--fx-ease);
}

.fx-textlink:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */

.fx-nav {
    left: 0;
    padding-block: 16px;
    position: fixed;
    right: 0;
    top: 0;
    transition: background-color 0.3s var(--fx-ease), box-shadow 0.3s var(--fx-ease), padding 0.3s var(--fx-ease);
    z-index: 900;
}

.fx-nav.is-scrolled {
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 1px 0 var(--fx-border), 0 8px 30px rgba(12, 31, 30, 0.06);
    padding-block: 10px;
}

.fx-nav-inner {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}

.fx-brand {
    align-items: center;
    color: var(--fx-ink);
    display: inline-flex;
    flex-shrink: 0;
    font-family: var(--fx-font-display);
    font-size: 1.24rem;
    font-weight: 800;
    gap: 10px;
    letter-spacing: -0.03em;
}

.fx-brand:hover {
    color: var(--fx-brand);
}

.fx-brand img {
    border-radius: 9px;
    height: 36px;
    object-fit: contain;
    width: 36px;
}

.fx-nav-links {
    align-items: center;
    display: flex;
    gap: 4px;
    list-style: none;
}

.fx-nav-links a {
    border-radius: var(--fx-r-pill);
    color: var(--fx-ink-soft);
    display: inline-block;
    font-family: var(--fx-font-display);
    font-size: 0.96rem;
    font-weight: 500;
    padding: 9px 15px;
    transition: background-color 0.2s var(--fx-ease), color 0.2s var(--fx-ease);
}

.fx-nav-links a:hover {
    background: var(--fx-brand-tint);
    color: var(--fx-brand);
}

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

.fx-nav-signin {
    color: var(--fx-ink-soft);
    font-family: var(--fx-font-display);
    font-size: 0.96rem;
    font-weight: 500;
}

.fx-nav-signin:hover {
    color: var(--fx-brand);
}

.fx-nav-toggle {
    align-items: center;
    background: var(--fx-surface);
    border: 1px solid var(--fx-border-strong);
    border-radius: 12px;
    color: var(--fx-ink);
    cursor: pointer;
    display: none;
    font-size: 1.3rem;
    height: 44px;
    justify-content: center;
    width: 44px;
}

@media (max-width: 991px) {
    .fx-nav-toggle {
        display: inline-flex;
    }

    .fx-nav-menu {
        background: #fff;
        border: 1px solid var(--fx-border);
        border-radius: var(--fx-r-lg);
        box-shadow: var(--fx-shadow-lg);
        display: grid;
        gap: 18px;
        left: 20px;
        opacity: 0;
        padding: 22px;
        pointer-events: none;
        position: absolute;
        right: 20px;
        top: calc(100% + 10px);
        transform: translateY(-10px);
        transition: opacity 0.25s var(--fx-ease), transform 0.25s var(--fx-ease);
    }

    .fx-nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .fx-nav-links {
        display: grid;
        gap: 2px;
    }

    .fx-nav-links a {
        display: block;
        padding: 11px 14px;
    }

    .fx-nav-actions {
        border-top: 1px solid var(--fx-border);
        flex-direction: column;
        gap: 12px;
        padding-top: 18px;
    }

    .fx-nav-actions > * {
        width: 100%;
    }

    .fx-nav-actions .fx-btn {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .fx-nav-menu {
        align-items: center;
        display: flex;
        flex: 1;
        gap: 28px;
        justify-content: space-between;
    }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */

.fx-hero {
    isolation: isolate;
    overflow: hidden;
    padding-bottom: clamp(60px, 7vw, 96px);
    padding-top: calc(var(--fx-nav-h) + clamp(46px, 6vw, 88px));
    position: relative;
}

.fx-hero-bg {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.fx-orb {
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    position: absolute;
}

.fx-orb-1 {
    background: radial-gradient(circle, #7ff3e6 0%, rgba(127, 243, 230, 0) 70%);
    height: 620px;
    right: -160px;
    top: -180px;
    width: 620px;
}

.fx-orb-2 {
    background: radial-gradient(circle, #c9e8ff 0%, rgba(201, 232, 255, 0) 70%);
    height: 520px;
    left: -180px;
    top: 120px;
    width: 520px;
}

.fx-orb-3 {
    background: radial-gradient(circle, #ffe6c9 0%, rgba(255, 230, 201, 0) 70%);
    bottom: -160px;
    height: 420px;
    left: 45%;
    width: 420px;
}

.fx-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(44px, 5vw, 70px);
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .fx-hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    }
}

.fx-pill {
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--fx-border-strong);
    border-radius: var(--fx-r-pill);
    box-shadow: var(--fx-shadow-xs);
    color: var(--fx-ink-soft);
    display: inline-flex;
    font-family: var(--fx-font-display);
    font-size: 0.86rem;
    font-weight: 500;
    gap: 10px;
    margin-bottom: 26px;
    padding: 7px 16px 7px 8px;
}

.fx-pill b {
    background: var(--fx-brand);
    border-radius: var(--fx-r-pill);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 4px 10px;
    text-transform: uppercase;
}

.fx-hero-title {
    margin-bottom: 22px;
}

.fx-hero-sub {
    margin-bottom: 34px;
    max-width: 545px;
}

.fx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.fx-hero-proof {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.fx-avatars {
    display: flex;
}

.fx-avatars span {
    align-items: center;
    background: var(--fx-brand-tint);
    border: 2.5px solid #fff;
    border-radius: 50%;
    color: var(--fx-brand);
    display: flex;
    font-family: var(--fx-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.fx-avatars span + span {
    margin-left: -12px;
}

.fx-proof-text {
    color: var(--fx-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.fx-proof-text strong {
    color: var(--fx-ink);
    display: block;
    font-family: var(--fx-font-display);
    font-size: 0.98rem;
}

.fx-stars {
    color: var(--fx-amber);
    letter-spacing: 2px;
}

/* Hero artwork — layered product mock */

.fx-hero-art {
    perspective: 1400px;
    position: relative;
}

.fx-window {
    background: #fff;
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-lg);
    box-shadow: var(--fx-shadow-lg);
    overflow: hidden;
}

.fx-window-bar {
    align-items: center;
    background: var(--fx-surface-2);
    border-bottom: 1px solid var(--fx-border);
    display: flex;
    gap: 7px;
    padding: 14px 18px;
}

.fx-window-bar i {
    border-radius: 50%;
    display: block;
    height: 11px;
    width: 11px;
}

.fx-window-bar span {
    background: #fff;
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-pill);
    color: var(--fx-faint);
    font-size: 0.72rem;
    margin-left: 10px;
    padding: 3px 14px;
}

.fx-window-body {
    padding: 22px;
}

.fx-mock-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fx-mock-title {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-size: 1rem;
    font-weight: 700;
}

.fx-mock-sub {
    color: var(--fx-faint);
    font-size: 0.78rem;
}

.fx-mock-tabs {
    display: flex;
    gap: 6px;
}

.fx-mock-tabs span {
    background: var(--fx-surface-3);
    border-radius: var(--fx-r-pill);
    height: 8px;
    width: 26px;
}

.fx-mock-tabs span:first-child {
    background: var(--fx-brand);
    width: 34px;
}

.fx-mock-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
}

.fx-mock-stat {
    background: var(--fx-surface-2);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-sm);
    padding: 13px;
}

.fx-mock-stat b {
    color: var(--fx-ink);
    display: block;
    font-family: var(--fx-font-display);
    font-size: 1.22rem;
    line-height: 1.2;
}

.fx-mock-stat span {
    color: var(--fx-faint);
    font-size: 0.72rem;
}

.fx-mock-chart {
    align-items: flex-end;
    background: var(--fx-surface-2);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-sm);
    display: flex;
    gap: 10px;
    height: 132px;
    justify-content: space-between;
    padding: 16px;
}

.fx-mock-chart i {
    background: linear-gradient(180deg, var(--fx-brand-bright), var(--fx-brand));
    border-radius: 5px;
    display: block;
    flex: 1;
    transform-origin: bottom;
    animation: fx-bar-grow 1.1s var(--fx-ease) backwards;
}

@keyframes fx-bar-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.fx-float {
    animation: fx-float 6s ease-in-out infinite;
    background: #fff;
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-md);
    box-shadow: var(--fx-shadow-md);
    padding: 14px 18px;
    position: absolute;
}

@keyframes fx-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Positioned over the chart area so the mock's heading stays readable. */
.fx-float-a {
    animation-delay: -1.4s;
    bottom: 22%;
    left: -26px;
}

.fx-float-b {
    animation-delay: -3.2s;
    bottom: -14px;
    right: -18px;
}

.fx-float-row {
    align-items: center;
    display: flex;
    gap: 11px;
}

.fx-float-icon {
    align-items: center;
    border-radius: 11px;
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.fx-float b {
    color: var(--fx-ink);
    display: block;
    font-family: var(--fx-font-display);
    font-size: 0.92rem;
    line-height: 1.3;
}

.fx-float small {
    color: var(--fx-faint);
    font-size: 0.74rem;
}

@media (max-width: 575px) {
    .fx-float-a { left: -8px; }
    .fx-float-b { right: -4px; }
}

/* --------------------------------------------------------------------------
   6. Marquee
   -------------------------------------------------------------------------- */

.fx-marquee {
    border-block: 1px solid var(--fx-border);
    overflow: hidden;
    padding-block: 26px;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.fx-marquee-track {
    animation: fx-scroll 34s linear infinite;
    display: flex;
    gap: 56px;
    width: max-content;
}

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

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

.fx-marquee-item {
    align-items: center;
    color: var(--fx-faint);
    display: flex;
    font-family: var(--fx-font-display);
    font-size: 1.02rem;
    font-weight: 600;
    gap: 10px;
    white-space: nowrap;
}

.fx-marquee-item i {
    color: var(--fx-brand);
    font-size: 1.2rem;
    opacity: 0.75;
}

/* --------------------------------------------------------------------------
   7. Stats
   -------------------------------------------------------------------------- */

.fx-stats {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.fx-stat {
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-lg);
    padding: 30px 26px;
    transition: transform 0.3s var(--fx-ease), box-shadow 0.3s var(--fx-ease);
}

.fx-stat:hover {
    box-shadow: var(--fx-shadow-md);
    transform: translateY(-4px);
}

.fx-stat-value {
    color: var(--fx-brand);
    font-family: var(--fx-font-display);
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.fx-stat-label {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin-top: 6px;
}

.fx-stat-note {
    color: var(--fx-muted);
    font-size: 0.86rem;
}

/* --------------------------------------------------------------------------
   8. Bento feature grid
   -------------------------------------------------------------------------- */

.fx-bento {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr);
}

.fx-bento-card {
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-lg);
    grid-column: span 6;
    overflow: hidden;
    padding: 32px;
    position: relative;
    transition: transform 0.35s var(--fx-ease), box-shadow 0.35s var(--fx-ease), border-color 0.35s var(--fx-ease);
}

.fx-bento-card:hover {
    border-color: var(--fx-border-strong);
    box-shadow: var(--fx-shadow-md);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .fx-bento-card { grid-column: span 3; }
    .fx-bento-card.is-wide { grid-column: span 6; }
}

@media (min-width: 992px) {
    .fx-bento-card { grid-column: span 2; }
    .fx-bento-card.is-wide { grid-column: span 3; }
}

.fx-bento-icon {
    align-items: center;
    border-radius: 14px;
    display: flex;
    font-size: 1.4rem;
    height: 52px;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.35s var(--fx-ease);
    width: 52px;
}

.fx-bento-card:hover .fx-bento-icon {
    transform: scale(1.08) rotate(-4deg);
}

.fx-i-teal { background: var(--fx-brand-tint); color: var(--fx-brand); }
.fx-i-violet { background: #eeebff; color: var(--fx-violet); }
.fx-i-amber { background: #fff3de; color: #c47f10; }
.fx-i-rose { background: #ffe9ee; color: #d94766; }
.fx-i-lime { background: #e2f8ee; color: #1f9d69; }
.fx-i-sky { background: #e4f2ff; color: #2b7fd4; }

.fx-bento-card h3 {
    font-size: 1.16rem;
    margin-bottom: 10px;
}

.fx-bento-card p {
    color: var(--fx-body);
    font-size: 0.94rem;
    margin-bottom: 0;
}

.fx-bento-list {
    display: grid;
    gap: 9px;
    list-style: none;
    margin-top: 18px;
}

.fx-bento-list li {
    align-items: flex-start;
    color: var(--fx-body);
    display: flex;
    font-size: 0.9rem;
    gap: 9px;
}

.fx-bento-list i {
    color: var(--fx-brand);
    flex-shrink: 0;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   9. Steps / how it works
   -------------------------------------------------------------------------- */

.fx-steps {
    counter-reset: fx-step;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    position: relative;
}

.fx-step {
    position: relative;
}

.fx-step-num {
    align-items: center;
    background: var(--fx-surface);
    border: 1.5px solid var(--fx-border-strong);
    border-radius: 50%;
    color: var(--fx-brand);
    counter-increment: fx-step;
    display: flex;
    font-family: var(--fx-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    height: 56px;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: background-color 0.3s var(--fx-ease), color 0.3s var(--fx-ease), border-color 0.3s var(--fx-ease);
    width: 56px;
    z-index: 1;
}

.fx-step-num::before {
    content: counter(fx-step, decimal-leading-zero);
}

.fx-step:hover .fx-step-num {
    background: var(--fx-brand);
    border-color: var(--fx-brand);
    color: #fff;
}

.fx-step h3 {
    font-size: 1.14rem;
    margin-bottom: 9px;
}

.fx-step p {
    color: var(--fx-body);
    font-size: 0.94rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .fx-step:not(:last-child)::after {
        background: repeating-linear-gradient(90deg, var(--fx-border-strong) 0 7px, transparent 7px 15px);
        content: '';
        height: 2px;
        left: 66px;
        position: absolute;
        right: -24px;
        top: 27px;
    }
}

/* --------------------------------------------------------------------------
   10. Split showcase
   -------------------------------------------------------------------------- */

.fx-split {
    align-items: center;
    display: grid;
    gap: clamp(38px, 5vw, 72px);
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .fx-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fx-split-flip .fx-split-media {
        order: -1;
    }
}

.fx-checklist {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 26px 0 32px;
}

.fx-checklist li {
    align-items: flex-start;
    color: var(--fx-body);
    display: flex;
    gap: 13px;
}

.fx-checklist i {
    align-items: center;
    background: var(--fx-brand-tint);
    border-radius: 50%;
    color: var(--fx-brand);
    display: flex;
    flex-shrink: 0;
    font-size: 0.78rem;
    height: 24px;
    justify-content: center;
    margin-top: 3px;
    width: 24px;
}

.fx-checklist b {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
}

/* Media panel */

.fx-media-panel {
    background: linear-gradient(150deg, var(--fx-brand-tint) 0%, var(--fx-surface-2) 100%);
    border-radius: var(--fx-r-xl);
    padding: clamp(24px, 3vw, 42px);
    position: relative;
}

.fx-panel-rows {
    display: grid;
    gap: 12px;
}

.fx-panel-rows-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

@media (max-width: 767px) {
    .fx-panel-rows-2 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.fx-row-item {
    align-items: center;
    background: #fff;
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-sm);
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    transition: transform 0.3s var(--fx-ease), box-shadow 0.3s var(--fx-ease);
}

.fx-row-item:hover {
    box-shadow: var(--fx-shadow-sm);
    transform: translateX(5px);
}

.fx-row-avatar {
    align-items: center;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-family: var(--fx-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.fx-row-main {
    flex: 1;
    min-width: 0;
}

.fx-row-main b {
    color: var(--fx-ink);
    display: block;
    font-family: var(--fx-font-display);
    font-size: 0.92rem;
}

.fx-row-main span {
    color: var(--fx-faint);
    font-size: 0.78rem;
}

.fx-tag {
    border-radius: var(--fx-r-pill);
    flex-shrink: 0;
    font-family: var(--fx-font-display);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
}

.fx-tag-ok { background: #e2f8ee; color: #1f8f5f; }
.fx-tag-wait { background: #fff3de; color: #b8790f; }
.fx-tag-off { background: #ffe9ee; color: #c93f5e; }

/* --------------------------------------------------------------------------
   11. Mobile app section
   -------------------------------------------------------------------------- */

.fx-app-section {
    background: var(--fx-brand-deep);
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
    position: relative;
}

.fx-app-section::before {
    background: radial-gradient(circle at 20% 20%, rgba(44, 223, 213, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(0, 128, 128, 0.35) 0%, transparent 55%);
    content: '';
    inset: 0;
    position: absolute;
}

.fx-app-section > * {
    position: relative;
}

.fx-app-section h2,
.fx-app-section h3 {
    color: #fff;
}

.fx-app-grid {
    align-items: center;
    display: grid;
    gap: clamp(44px, 5vw, 72px);
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .fx-app-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    }
}

.fx-app-features {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin: 30px 0 34px;
}

.fx-app-feature {
    align-items: flex-start;
    display: flex;
    gap: 13px;
}

.fx-app-feature i {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    color: var(--fx-brand-bright);
    display: flex;
    flex-shrink: 0;
    font-size: 1.05rem;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.fx-app-feature b {
    color: #fff;
    display: block;
    font-family: var(--fx-font-display);
    font-size: 0.96rem;
}

.fx-app-feature span {
    font-size: 0.86rem;
}

.fx-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.fx-store-btn {
    align-items: center;
    background: #fff;
    border: 1.5px solid #fff;
    border-radius: 14px;
    color: var(--fx-brand-deep);
    display: inline-flex;
    gap: 13px;
    min-width: 190px;
    padding: 12px 22px;
    transition: transform 0.25s var(--fx-ease), box-shadow 0.25s var(--fx-ease);
}

.fx-store-btn:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    color: var(--fx-brand-deep);
    transform: translateY(-3px);
}

.fx-store-btn i {
    font-size: 1.85rem;
}

.fx-store-btn-text {
    display: block;
    min-width: 0;
}

.fx-store-btn-text span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
    opacity: 0.7;
    text-transform: uppercase;
}

.fx-store-btn-text b {
    display: block;
    font-family: var(--fx-font-display);
    font-size: 1.02rem;
    line-height: 1.25;
}

.fx-store-btn.is-disabled {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    cursor: default;
    pointer-events: none;
}

.fx-app-note {
    font-size: 0.84rem;
    margin-top: 18px;
    opacity: 0.7;
}

/* Phone mock */

.fx-phones {
    height: clamp(400px, 46vw, 580px);
    margin: 0 auto;
    max-width: 480px;
    position: relative;
    width: 100%;
}

.fx-phones::before {
    background: radial-gradient(circle, rgba(44, 223, 213, 0.35) 0%, transparent 68%);
    content: '';
    filter: blur(10px);
    inset: -10%;
    position: absolute;
    z-index: 0;
}

.fx-phone {
    animation: fx-float 7s ease-in-out infinite;
    aspect-ratio: 1080 / 2408;
    background: #0b1413;
    border: 7px solid #12211f;
    border-radius: clamp(26px, 3.4vw, 38px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    position: absolute;
    width: clamp(168px, 22vw, 236px);
}

.fx-phone-back {
    animation: fx-float-back 7s ease-in-out infinite;
    animation-delay: -3.5s;
    filter: saturate(0.85) brightness(0.82);
    opacity: 0.75;
    right: 2%;
    top: 0;
    z-index: 1;
}

@keyframes fx-float-back {
    0%, 100% { transform: translateY(0) scale(0.92); }
    50% { transform: translateY(-14px) scale(0.92); }
}

.fx-phone-front {
    bottom: 0;
    left: 2%;
    z-index: 2;
}

.fx-phone-notch {
    background: #12211f;
    border-radius: 0 0 14px 14px;
    height: 4.2%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 42%;
    z-index: 2;
}

.fx-phone-screen {
    height: 100%;
    position: relative;
    width: 100%;
}

.fx-phone-screen img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    width: 100%;
}

@media (max-width: 767px) {
    .fx-phones {
        height: clamp(360px, 78vw, 460px);
        max-width: 340px;
    }
}

@media (max-width: 400px) {
    .fx-phone {
        width: clamp(148px, 46vw, 190px);
    }
}

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */

.fx-quotes {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.fx-quote {
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-lg);
    display: flex;
    flex-direction: column;
    padding: 32px 30px;
    transition: transform 0.35s var(--fx-ease), box-shadow 0.35s var(--fx-ease);
}

.fx-quote:hover {
    box-shadow: var(--fx-shadow-md);
    transform: translateY(-5px);
}

.fx-quote-featured {
    background: linear-gradient(155deg, var(--fx-brand) 0%, #026e6e 100%);
    border-color: transparent;
    color: rgba(255, 255, 255, 0.9);
}

.fx-quote-mark {
    color: var(--fx-brand);
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.28;
}

.fx-quote-featured .fx-quote-mark {
    color: #fff;
    opacity: 0.5;
}

.fx-quote p {
    color: var(--fx-body);
    flex: 1;
    font-size: 0.97rem;
    line-height: 1.78;
    margin-bottom: 24px;
}

.fx-quote-featured p {
    color: #fff;
}

.fx-quote-person {
    align-items: center;
    border-top: 1px solid var(--fx-border);
    display: flex;
    gap: 14px;
    padding-top: 20px;
}

.fx-quote-featured .fx-quote-person {
    border-top-color: rgba(255, 255, 255, 0.25);
}

.fx-quote-avatar {
    align-items: center;
    background: var(--fx-brand-tint);
    border-radius: 50%;
    color: var(--fx-brand);
    display: flex;
    flex-shrink: 0;
    font-family: var(--fx-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.fx-quote-featured .fx-quote-avatar {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.fx-quote-name {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.fx-quote-role {
    color: var(--fx-muted);
    font-size: 0.85rem;
}

.fx-quote-featured .fx-quote-name { color: #fff; }
.fx-quote-featured .fx-quote-role { color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   13. FAQ accordion
   -------------------------------------------------------------------------- */

.fx-faq-grid {
    align-items: start;
    display: grid;
    gap: clamp(32px, 4vw, 60px);
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .fx-faq-grid {
        grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    }
}

.fx-faq-aside {
    position: sticky;
    top: calc(var(--fx-nav-h) + 30px);
}

.fx-faq-card {
    background: var(--fx-brand-tint);
    border-radius: var(--fx-r-lg);
    margin-top: 26px;
    padding: 26px;
}

.fx-faq-card b {
    color: var(--fx-ink);
    display: block;
    font-family: var(--fx-font-display);
    font-size: 1.03rem;
    margin-bottom: 6px;
}

.fx-faq-card p {
    color: var(--fx-body);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

.fx-faq-item {
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-md);
    overflow: hidden;
    transition: border-color 0.3s var(--fx-ease), box-shadow 0.3s var(--fx-ease);
}

.fx-faq-item.is-open {
    border-color: var(--fx-brand);
    box-shadow: var(--fx-shadow-sm);
}

.fx-faq-q {
    align-items: center;
    background: none;
    border: 0;
    color: var(--fx-ink);
    cursor: pointer;
    display: flex;
    font-family: var(--fx-font-display);
    font-size: 1.01rem;
    font-weight: 600;
    gap: 18px;
    justify-content: space-between;
    line-height: 1.5;
    padding: 21px 24px;
    text-align: left;
    width: 100%;
}

.fx-faq-q:hover {
    color: var(--fx-brand);
}

.fx-faq-q i {
    align-items: center;
    background: var(--fx-brand-tint);
    border-radius: 50%;
    color: var(--fx-brand);
    display: flex;
    flex-shrink: 0;
    font-size: 0.85rem;
    height: 30px;
    justify-content: center;
    transition: transform 0.3s var(--fx-ease), background-color 0.3s var(--fx-ease);
    width: 30px;
}

.fx-faq-item.is-open .fx-faq-q i {
    background: var(--fx-brand);
    color: #fff;
    transform: rotate(45deg);
}

.fx-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s var(--fx-ease);
}

.fx-faq-item.is-open .fx-faq-a {
    grid-template-rows: 1fr;
}

.fx-faq-a > div {
    overflow: hidden;
}

.fx-faq-a p {
    color: var(--fx-body);
    font-size: 0.94rem;
    margin: 0;
    padding: 0 24px 22px;
}

/* --------------------------------------------------------------------------
   14. Demo request band
   -------------------------------------------------------------------------- */

.fx-demo {
    background: linear-gradient(135deg, var(--fx-brand) 0%, #017272 55%, var(--fx-brand-deep) 100%);
    border-radius: var(--fx-r-xl);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
    padding: clamp(38px, 5vw, 68px);
    position: relative;
}

.fx-demo::after {
    background: radial-gradient(circle, rgba(44, 223, 213, 0.3) 0%, transparent 65%);
    border-radius: 50%;
    content: '';
    height: 420px;
    position: absolute;
    right: -120px;
    top: -140px;
    width: 420px;
}

.fx-demo > * {
    position: relative;
    z-index: 1;
}

.fx-demo h2 {
    color: #fff;
    margin-bottom: 14px;
}

.fx-demo-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.06rem;
    margin-bottom: 30px;
    max-width: 560px;
}

.fx-demo-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 620px;
}

.fx-demo-field {
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    border: 1.5px solid transparent;
    border-radius: var(--fx-r-pill);
    display: flex;
    flex: 1 1 260px;
    gap: 12px;
    padding: 0 24px;
    transition: border-color 0.25s var(--fx-ease), box-shadow 0.25s var(--fx-ease);
}

.fx-demo-field:focus-within {
    border-color: var(--fx-brand-bright);
    box-shadow: 0 0 0 4px rgba(44, 223, 213, 0.25);
}

.fx-demo-field i {
    color: var(--fx-muted);
    font-size: 1.05rem;
}

.fx-demo-field input {
    background: transparent;
    border: 0;
    color: var(--fx-ink);
    flex: 1;
    font-family: var(--fx-font-body);
    font-size: 0.98rem;
    height: 58px;
    min-width: 0;
    outline: none;
}

.fx-demo-field input::placeholder {
    color: var(--fx-muted);
}

.fx-demo-form .fx-btn {
    flex: 0 0 auto;
    height: 58px;
}

.fx-demo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 24px;
}

.fx-demo-meta span {
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    font-size: 0.88rem;
    gap: 8px;
}

.fx-demo-meta i {
    color: var(--fx-brand-bright);
}

.fx-demo-error {
    background: rgba(255, 255, 255, 0.16);
    border-radius: var(--fx-r-sm);
    color: #fff;
    font-size: 0.88rem;
    margin-top: 14px;
    padding: 10px 16px;
}

.fx-alert-success {
    align-items: flex-start;
    background: #e2f8ee;
    border: 1px solid #b6ead2;
    border-radius: var(--fx-r-md);
    color: #10704a;
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
    padding: 16px 20px;
}

.fx-alert-success i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.fx-demo .fx-alert-success {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
    max-width: 620px;
}

/* --------------------------------------------------------------------------
   15. Pricing
   -------------------------------------------------------------------------- */

/* Horizontal plan scroller ------------------------------------------------- */

.fx-plans-scroller {
    position: relative;
}

.fx-plans {
    align-items: stretch;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    /* Top padding keeps the "Most Popular" flag and the hover lift from being
       clipped by the scroll container; bottom padding leaves room for shadows. */
    padding: 20px 2px 26px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--fx-border-strong) transparent;
    scrollbar-width: thin;
}

.fx-plans::-webkit-scrollbar {
    height: 8px;
}

.fx-plans::-webkit-scrollbar-track {
    background: var(--fx-surface-3);
    border-radius: var(--fx-r-pill);
}

.fx-plans::-webkit-scrollbar-thumb {
    background: var(--fx-border-strong);
    border-radius: var(--fx-r-pill);
}

.fx-plans::-webkit-scrollbar-thumb:hover {
    background: var(--fx-brand);
}

.fx-scroll-btn {
    align-items: center;
    background: var(--fx-surface);
    border: 1px solid var(--fx-border-strong);
    border-radius: 50%;
    box-shadow: var(--fx-shadow-md);
    color: var(--fx-ink);
    cursor: pointer;
    display: none;
    font-size: 1.15rem;
    height: 48px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.25s var(--fx-ease), color 0.25s var(--fx-ease),
        opacity 0.25s var(--fx-ease), border-color 0.25s var(--fx-ease);
    width: 48px;
    z-index: 3;
}

.fx-plans-scroller.is-scrollable .fx-scroll-btn {
    display: inline-flex;
}

.fx-scroll-btn:hover:not(:disabled) {
    background: var(--fx-brand);
    border-color: var(--fx-brand);
    color: #fff;
}

.fx-scroll-btn:disabled {
    cursor: default;
    opacity: 0;
    pointer-events: none;
}

/* Sit just inside the track by default; only move outside once the container
   has margin to spare, otherwise the arrows hang off the viewport edge. */
.fx-scroll-prev {
    left: 2px;
}

.fx-scroll-next {
    right: 2px;
}

@media (min-width: 1360px) {
    .fx-scroll-prev {
        left: -22px;
    }

    .fx-scroll-next {
        right: -22px;
    }
}

@media (max-width: 991px) {
    /* Touch devices swipe instead; the arrows only add clutter. */
    .fx-plans-scroller.is-scrollable .fx-scroll-btn {
        display: none;
    }
}

.fx-plan {
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-lg);
    display: flex;
    flex: 0 0 clamp(262px, 24vw, 304px);
    flex-direction: column;
    padding: 32px 30px;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.35s var(--fx-ease), box-shadow 0.35s var(--fx-ease), border-color 0.35s var(--fx-ease);
}

.fx-plan:hover {
    border-color: var(--fx-border-strong);
    box-shadow: var(--fx-shadow-md);
    transform: translateY(-6px);
}

.fx-plan-featured {
    border-color: var(--fx-brand);
    box-shadow: var(--fx-shadow-md);
}

.fx-plan-flag {
    background: var(--fx-brand);
    border-radius: var(--fx-r-pill);
    color: #fff;
    font-family: var(--fx-font-display);
    font-size: 0.7rem;
    font-weight: 700;
    left: 50%;
    letter-spacing: 0.09em;
    padding: 6px 18px;
    position: absolute;
    text-transform: uppercase;
    top: -13px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.fx-plan-name {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.fx-plan-seats {
    color: var(--fx-muted);
    font-size: 0.88rem;
    margin-bottom: 22px;
}

/* The period always sits on its own line so cards stay aligned regardless of
   how many digits the amount has. */
.fx-plan-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fx-plan-amount {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.fx-plan-per {
    color: var(--fx-muted);
    font-size: 0.88rem;
}

.fx-plan-was {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-top: 8px;
    min-height: 26px;
}

.fx-plan-strike {
    color: var(--fx-faint);
    font-size: 0.92rem;
    text-decoration: line-through;
}

.fx-plan-save {
    background: #e2f8ee;
    border-radius: var(--fx-r-pill);
    color: #1f8f5f;
    font-family: var(--fx-font-display);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 10px;
}

.fx-plan-features {
    border-top: 1px solid var(--fx-border);
    display: grid;
    flex: 1;
    gap: 11px;
    list-style: none;
    margin: 24px 0;
    padding-top: 24px;
}

.fx-plan-features li {
    align-items: flex-start;
    color: var(--fx-body);
    display: flex;
    font-size: 0.92rem;
    gap: 10px;
    line-height: 1.6;
}

.fx-plan-features i {
    color: var(--fx-brand);
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 5px;
}

.fx-plan-note {
    color: var(--fx-muted);
    font-size: 0.84rem;
    margin-top: 14px;
    text-align: center;
}

/* Custom-plan banner ------------------------------------------------------- */

.fx-banner {
    align-items: center;
    background: linear-gradient(115deg, var(--fx-surface) 0%, var(--fx-brand-tint-soft) 100%);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-xl);
    box-shadow: var(--fx-shadow-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: space-between;
    overflow: hidden;
    padding: clamp(24px, 3vw, 36px) clamp(24px, 3.5vw, 44px);
    position: relative;
    transition: box-shadow 0.35s var(--fx-ease), transform 0.35s var(--fx-ease);
}

.fx-banner:hover {
    box-shadow: var(--fx-shadow-md);
    transform: translateY(-3px);
}

.fx-banner::before {
    background: radial-gradient(circle, rgba(44, 223, 213, 0.24) 0%, transparent 68%);
    border-radius: 50%;
    content: '';
    height: 340px;
    pointer-events: none;
    position: absolute;
    right: -120px;
    top: -170px;
    width: 340px;
}

.fx-banner > * {
    position: relative;
    z-index: 1;
}

.fx-banner-main {
    align-items: center;
    display: flex;
    gap: 20px;
    min-width: 0;
}

.fx-banner-icon {
    align-items: center;
    background: linear-gradient(140deg, var(--fx-brand) 0%, #0fa89b 100%);
    border-radius: 17px;
    box-shadow: var(--fx-glow);
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-size: 1.55rem;
    height: 60px;
    justify-content: center;
    width: 60px;
}

.fx-banner h3 {
    font-size: 1.22rem;
    margin-bottom: 6px;
}

.fx-banner p {
    color: var(--fx-body);
    font-size: 0.93rem;
    margin: 0;
    max-width: 540px;
}

.fx-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* WhatsApp's darker brand green keeps the affordance recognisable while
   staying legible against white text and harmonising with the site teal. */
.fx-btn-whatsapp {
    background: #128c7e;
    box-shadow: 0 16px 34px rgba(18, 140, 126, 0.32);
    color: #fff;
}

.fx-btn-whatsapp:hover {
    background: #0e7568;
    box-shadow: 0 20px 42px rgba(18, 140, 126, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.fx-btn-whatsapp i {
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .fx-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .fx-banner-main {
        align-items: flex-start;
    }

    .fx-banner-actions {
        width: 100%;
    }

    .fx-banner-actions .fx-btn {
        flex: 1 1 160px;
    }
}

@media (max-width: 575px) {
    /* Stack the badge above the copy so the paragraph gets the full width. */
    .fx-banner-main {
        flex-direction: column;
        gap: 16px;
    }
}

.fx-empty {
    background: var(--fx-surface-2);
    border: 1px dashed var(--fx-border-strong);
    border-radius: var(--fx-r-lg);
    color: var(--fx-muted);
    padding: 48px 26px;
    text-align: center;
}

/* Comparison table */

.fx-table-wrap {
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-lg);
    overflow-x: auto;
}

.fx-table {
    border-collapse: collapse;
    min-width: 720px;
    width: 100%;
}

.fx-table th,
.fx-table td {
    padding: 17px 22px;
    text-align: left;
}

.fx-table thead th {
    background: var(--fx-surface-2);
    border-bottom: 1px solid var(--fx-border);
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.fx-table tbody tr + tr {
    border-top: 1px solid var(--fx-border);
}

.fx-table tbody tr {
    transition: background-color 0.2s var(--fx-ease);
}

.fx-table tbody tr:hover {
    background: var(--fx-surface-2);
}

.fx-table tbody tr.is-featured {
    background: var(--fx-brand-tint-soft);
}

.fx-table td b {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
}

.fx-table-price {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.fx-table-group {
    align-items: center;
    display: flex;
    gap: 12px;
    margin: 44px 0 18px;
}

.fx-table-group h3 {
    margin: 0;
}

.fx-table-group span {
    background: var(--fx-brand-tint);
    border-radius: var(--fx-r-pill);
    color: var(--fx-brand);
    font-family: var(--fx-font-display);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 12px;
}

/* --------------------------------------------------------------------------
   16. Registration form
   -------------------------------------------------------------------------- */

.fx-form-card {
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-xl);
    box-shadow: var(--fx-shadow-md);
    margin-inline: auto;
    max-width: 880px;
    padding: clamp(26px, 4vw, 48px);
}

.fx-form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.fx-form-grid .fx-col-full {
    grid-column: 1 / -1;
}

.fx-form .form-control,
.fx-form .form-select {
    background: var(--fx-surface-2);
    border: 1.5px solid var(--fx-border);
    border-radius: var(--fx-r-sm);
    box-shadow: none;
    color: var(--fx-ink);
    font-family: var(--fx-font-body);
    font-size: 0.96rem;
}

.fx-form .form-control:focus,
.fx-form .form-select:focus {
    background: #fff;
    border-color: var(--fx-brand);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

.fx-form .form-floating > label {
    color: var(--fx-muted);
    font-size: 0.94rem;
    padding-left: 16px;
}

.fx-form textarea.form-control {
    height: 130px;
}

.fx-form-error {
    color: #c93f5e;
    font-size: 0.82rem;
    margin-top: 5px;
}

.fx-form-actions {
    margin-top: 26px;
    text-align: center;
}

.fx-form-legal {
    color: var(--fx-muted);
    font-size: 0.84rem;
    margin-top: 16px;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */

.fx-footer {
    background: var(--fx-brand-deep);
    color: rgba(255, 255, 255, 0.72);
    padding-top: clamp(56px, 6vw, 86px);
}

.fx-footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.fx-footer-brand-col {
    grid-column: span 1;
    max-width: 340px;
}

@media (min-width: 768px) {
    .fx-footer-grid {
        grid-template-columns: 1.6fr repeat(3, 1fr);
    }
}

.fx-footer .fx-brand {
    color: #fff;
    margin-bottom: 18px;
}

.fx-footer .fx-brand:hover {
    color: var(--fx-brand-bright);
}

.fx-footer-about {
    font-size: 0.93rem;
    margin-bottom: 22px;
}

.fx-footer h4 {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fx-footer-links {
    display: grid;
    gap: 12px;
    list-style: none;
}

.fx-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
}

.fx-footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.fx-footer-links a {
    transition: color 0.2s var(--fx-ease), padding-left 0.2s var(--fx-ease);
}

.fx-footer-contact {
    display: grid;
    gap: 14px;
}

.fx-footer-contact a,
.fx-footer-contact span {
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    font-size: 0.93rem;
    gap: 10px;
}

.fx-footer-contact a:hover {
    color: #fff;
}

.fx-footer-contact i {
    color: var(--fx-brand-bright);
    margin-top: 4px;
}

.fx-socials {
    display: flex;
    gap: 10px;
}

.fx-socials a {
    align-items: center;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 1rem;
    height: 42px;
    justify-content: center;
    transition: background-color 0.25s var(--fx-ease), transform 0.25s var(--fx-ease);
    width: 42px;
}

.fx-socials a:hover {
    background: var(--fx-brand);
    color: #fff;
    transform: translateY(-3px);
}

.fx-footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    justify-content: space-between;
    margin-top: clamp(44px, 5vw, 66px);
    padding-block: 26px 34px;
}

.fx-footer-bottom p {
    font-size: 0.88rem;
    margin: 0;
}

.fx-footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.fx-footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.fx-footer-bottom a:hover {
    color: #fff;
}

/* --------------------------------------------------------------------------
   18. Inner page hero + legal pages
   -------------------------------------------------------------------------- */

.fx-page-hero {
    background: linear-gradient(180deg, var(--fx-brand-tint-soft) 0%, var(--fx-surface) 100%);
    overflow: hidden;
    padding-bottom: clamp(40px, 5vw, 64px);
    padding-top: calc(var(--fx-nav-h) + clamp(40px, 5vw, 76px));
    position: relative;
    text-align: center;
}

.fx-page-hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.35rem);
    margin-bottom: 16px;
}

.fx-page-hero .fx-lead {
    margin-inline: auto;
    max-width: 640px;
}

.fx-crumbs {
    align-items: center;
    color: var(--fx-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.86rem;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
}

.fx-updated {
    align-items: center;
    background: var(--fx-surface);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-pill);
    color: var(--fx-muted);
    display: inline-flex;
    font-size: 0.84rem;
    gap: 8px;
    margin-top: 22px;
    padding: 7px 18px;
}

.fx-legal-grid {
    align-items: start;
    display: grid;
    gap: clamp(30px, 4vw, 56px);
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .fx-legal-grid {
        grid-template-columns: 250px minmax(0, 1fr);
    }
}

.fx-toc {
    position: sticky;
    top: calc(var(--fx-nav-h) + 26px);
}

.fx-toc h4 {
    color: var(--fx-ink);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.fx-toc ol {
    counter-reset: fx-toc;
    display: grid;
    gap: 3px;
    list-style: none;
    padding: 0;
}

.fx-toc a {
    border-left: 2px solid var(--fx-border);
    color: var(--fx-body);
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 8px 14px;
    transition: all 0.2s var(--fx-ease);
}

.fx-toc a:hover,
.fx-toc a.is-active {
    background: var(--fx-brand-tint-soft);
    border-left-color: var(--fx-brand);
    color: var(--fx-brand);
}

.fx-legal-body h2 {
    font-size: 1.42rem;
    margin-bottom: 14px;
    padding-top: 12px;
    scroll-margin-top: calc(var(--fx-nav-h) + 26px);
}

.fx-legal-body h3 {
    font-size: 1.06rem;
    margin: 28px 0 10px;
}

.fx-legal-body section + section {
    border-top: 1px solid var(--fx-border);
    margin-top: 40px;
    padding-top: 34px;
}

.fx-legal-body p,
.fx-legal-body li {
    color: var(--fx-body);
    font-size: 0.97rem;
    line-height: 1.82;
}

.fx-legal-body ul {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 16px 0;
}

.fx-legal-body ul li {
    padding-left: 26px;
    position: relative;
}

.fx-legal-body ul li::before {
    background: var(--fx-brand);
    border-radius: 50%;
    content: '';
    height: 7px;
    left: 4px;
    position: absolute;
    top: 12px;
    width: 7px;
}

.fx-callout {
    background: var(--fx-brand-tint-soft);
    border: 1px solid var(--fx-border);
    border-left: 3px solid var(--fx-brand);
    border-radius: var(--fx-r-sm);
    margin: 22px 0;
    padding: 20px 24px;
}

.fx-callout p:last-child {
    margin-bottom: 0;
}

.fx-callout b {
    color: var(--fx-ink);
    font-family: var(--fx-font-display);
}

.fx-legal-cta {
    background: var(--fx-surface-2);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-r-lg);
    margin-top: 46px;
    padding: 32px;
    text-align: center;
}

.fx-legal-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.fx-legal-cta p {
    color: var(--fx-body);
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   19. Scroll reveal animation
   -------------------------------------------------------------------------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--fx-ease), transform 0.7s var(--fx-ease);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-reveal='left'] { transform: translateX(-30px); }
[data-reveal='right'] { transform: translateX(30px); }
[data-reveal='zoom'] { transform: scale(0.94); }

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   20. Utilities
   -------------------------------------------------------------------------- */

.fx-mt-0 { margin-top: 0; }
.fx-mb-0 { margin-bottom: 0; }
.fx-mt-lg { margin-top: clamp(30px, 4vw, 48px); }
.fx-hide { display: none !important; }

.fx-sr-only {
    clip: rect(0, 0, 0, 0);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
