body.fueld-home {
    min-height: 100vh;
    color: #14324b;
    background:
        radial-gradient(circle at top left, rgba(255, 214, 102, 0.22), transparent 24%),
        radial-gradient(circle at bottom left, rgba(251, 191, 36, 0.18), transparent 18%),
        linear-gradient(180deg, #fbfdff 0%, #f5fbff 100%);
    font-family: "Figtree", sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    --home-radius-xs: 6px;
    --home-radius-sm: 8px;
    --home-radius-md: 10px;
    --home-radius-lg: 12px;
    --home-radius-xl: 14px;
    --home-radius-pill: 999px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: rgba(15, 77, 99, 0.08); */
    z-index: 1085;
    pointer-events: none;
    overflow: hidden;
}

.scroll-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d9ab2c 0%, #1b8b95 100%);
    transform: scaleX(0);
    transform-origin: left center;
    box-shadow: 0 0 10px rgba(217, 171, 44, 0.28);
}

body.motion-ready .motion-target,
body.motion-ready .hero-animate {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    transition-delay: var(--motion-delay, 0ms);
    will-change: opacity, transform;
}

body.motion-ready .motion-target.motion-left {
    transform: translate3d(-34px, 22px, 0) scale(0.985);
}

body.motion-ready .motion-target.motion-right {
    transform: translate3d(34px, 22px, 0) scale(0.985);
}

body.motion-ready .motion-target.is-visible,
body.motion-ready .hero-visible .hero-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

body.motion-ready .dashboard-window {
    animation: dashboard-float 8.5s ease-in-out infinite;
}

body.motion-ready .floating-card {
    animation: floating-bob 6.2s ease-in-out infinite;
}

body.motion-ready .floating-sales {
    animation-delay: 0.2s;
}

body.motion-ready .floating-branch {
    animation-delay: 1.1s;
}

body.motion-ready .floating-growth {
    animation-delay: 1.9s;
}

.landing-shell {
    max-width: 1100px;
}

.landing-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 50, 75, 0.06);
}

body.motion-ready .landing-header .navbar-brand,
body.motion-ready .landing-header .navbar-nav,
body.motion-ready .landing-header .btn-language,
body.motion-ready .landing-header .nav-signin,
body.motion-ready .landing-header .btn-demo {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-ready .landing-header.nav-ready .navbar-brand {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 60ms;
}

body.motion-ready .landing-header.nav-ready .navbar-nav {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 140ms;
}

body.motion-ready .landing-header.nav-ready .btn-language {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 220ms;
}

body.motion-ready .landing-header.nav-ready .nav-signin {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 280ms;
}

body.motion-ready .landing-header.nav-ready .btn-demo {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 340ms;
}

.brand-mark {
    width: 32px;
    height: 32px;
    color: #d6a62c;
    background: #0f4d63;
    border-radius: 10px;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(15, 77, 99, 0.18);
}

.brand-text {
    color: #0f4d63;
    font-size: 1.56rem;
    letter-spacing: -0.03em;
}

.brand-text span {
    color: #d6a62c;
}

.landing-header .nav-link {
    position: relative;
    color: #5b7183;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.46rem 0.76rem;
}

.landing-header .nav-link::after {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.18rem;
    height: 2px;
    background: linear-gradient(90deg, #d9ab2c 0%, #1b8b95 100%);
    border-radius: 999px;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.landing-header .nav-link:hover,
.landing-header .nav-link:focus {
    color: #0f4d63;
}

.landing-header .nav-link:hover::after,
.landing-header .nav-link:focus::after {
    transform: scaleX(1);
}

.btn-language {
    min-width: 92px;
    color: #35556f;
    border: 1px solid rgba(53, 85, 111, 0.16);
    background: #fff;
    border-radius: 12px;
    font-size: 0.87rem;
    font-weight: 500;
    padding: 0.64rem 0.92rem;
}

.btn-language:hover,
.btn-language:focus {
    color: #0f4d63;
    border-color: rgba(15, 77, 99, 0.2);
}

.nav-signin {
    color: #0f4d63;
    font-weight: 500;
}

.nav-signin:hover,
.nav-signin:focus {
    color: #08384b;
}

.btn-demo,
.hero-primary {
    color: #fff;
    background: #0f4d63;
    border-radius: 14px;
    font-weight: 700;
    padding: 0.82rem 1.22rem;
    box-shadow: 0 14px 28px rgba(15, 77, 99, 0.18);
}

.btn-demo:hover,
.btn-demo:focus,
.hero-primary:hover,
.hero-primary:focus {
    color: #fff;
    background: #0c4255;
}

.landing-hero {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(27, 139, 149, 0.11) 0.75px, transparent 0.75px);
    background-size: 22px 22px;
    content: "";
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

.hero-section {
    position: relative;
    padding: 3rem 0 4rem;
    isolation: isolate;
}

.trust-section {
    position: relative;
    padding: 1rem 0 3rem;
}

.trust-shell {
    background: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(20, 50, 75, 0.08);
    border-bottom: 1px solid rgba(20, 50, 75, 0.08);
    padding: 2rem 0 1.55rem;
}

.trust-kicker {
    color: #294b64;
    font-size: 0.95rem;
    font-weight: 500;
}

.brand-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    width: max-content;
    animation: brand-marquee 26s linear infinite;
}

.brand-pill {
    color: #9ab1c0;
    font-size: 0.94rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.3rem 0.78rem;
}

.trust-divider {
    width: min(100%, 972px);
    height: 1px;
    background: rgba(121, 151, 171, 0.28);
    margin: 1.5rem auto 1.6rem;
}

.trust-stat-item {
    padding: 0.25rem 0.4rem;
}

.trust-stat-value {
    color: #0f4d63;
    font-size: clamp(1.6rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.trust-stat-label {
    color: #35556f;
    font-size: 0.93rem;
    margin-top: 0.28rem;
}

.why-section {
    position: relative;
    padding: 3.6rem 0 4.8rem;
    isolation: isolate;
}

.why-section::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(79, 108, 128, 0.08) 0.7px, transparent 0.7px);
    background-size: 24px 24px;
    content: "";
    pointer-events: none;
    opacity: 0.32;
    z-index: 0;
}

.why-intro {
    max-width: 720px;
    margin-bottom: 2.8rem;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    color: #d39d1f;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.82rem;
}

.section-title {
    color: #0d2d46;
    font-size: clamp(1.95rem, 3.8vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
    margin-bottom: 0.82rem;
}

.section-title span {
    display: block;
}

.section-description {
    color: #4d6980;
    font-size: 1.08rem;
    line-height: 1.62;
    margin-bottom: 0;
}

.why-grid {
    --bs-gutter-x: 1.25rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(205, 221, 232, 0.9);
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(25, 74, 103, 0.06);
    padding: 1.35rem 1.22rem 1.3rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 0.82rem;
    margin-bottom: 0.9rem;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(25, 74, 103, 0.1);
    border-color: rgba(173, 201, 217, 0.95);
}

.feature-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 0.95rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-title {
    color: #0d2d46;
    font-size: 1.48rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0;
}

.feature-copy {
    color: #536f84;
    font-size: 0.96rem;
    line-height: 1.72;
}

.bg-soft-sky {
    background: rgba(85, 134, 178, 0.11);
}

.bg-soft-teal {
    background: rgba(31, 114, 142, 0.11);
}

.bg-soft-lemon {
    background: rgba(243, 189, 68, 0.1);
}

.modules-section {
    position: relative;
    padding: 2.2rem 0 5rem;
}

.modules-intro {
    max-width: 620px;
    margin-bottom: 2.45rem;
}

.modules-description {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.modules-grid {
    --bs-gutter-x: 0.95rem;
    --bs-gutter-y: 0.95rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(205, 221, 232, 0.9);
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(25, 74, 103, 0.04);
    padding: 0.96rem 0.92rem 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
    transform: translateY(-3px);
    border-color: rgba(171, 198, 213, 0.95);
    box-shadow: 0 18px 30px rgba(25, 74, 103, 0.08);
}

.module-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.module-card-main {
    display: flex;
    align-items: center;
    gap: 0.78rem;
    min-width: 0;
    flex: 1;
}

.module-card .feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 0.9rem;
}

.module-badge {
    color: #4d7b97;
    background: #eef5f9;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.25rem 0.45rem;
}

.module-badge-popular {
    color: #d4a129;
    background: rgba(243, 189, 68, 0.14);
}

.module-title {
    color: #0d2d46;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0;
}

.module-copy {
    color: #59758a;
    font-size: 0.85rem;
    line-height: 1.62;
}

@media (max-width: 575.98px) {
    .module-card-head {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .module-card-main {
        width: 100%;
    }

    .module-badge {
        margin-left: auto;
    }

    html[dir="rtl"] .module-badge {
        margin-left: 0;
        margin-right: auto;
    }
}

.experience-section {
    position: relative;
    padding: 1.9rem 0 5rem;
}

.experience-showcase {
    position: relative;
}

.experience-screen {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(204, 221, 232, 0.94);
    border-radius: 20px;
    box-shadow: 0 28px 50px rgba(25, 74, 103, 0.08);
    overflow: hidden;
}

.experience-topbar {
    padding: 0.8rem 0.95rem;
    background: rgba(248, 251, 253, 0.98);
    border-bottom: 1px solid rgba(220, 230, 238, 0.95);
}

.experience-url {
    flex: 1;
    color: #a2b5c1;
    background: #fff;
    border: 1px solid rgba(217, 228, 235, 0.95);
    border-radius: 999px;
    font-size: 0.82rem;
    padding: 0.38rem 0.8rem;
}

.experience-body {
    padding: 0.95rem;
    background:
        linear-gradient(180deg, rgba(245, 250, 252, 0.75) 0%, rgba(255, 255, 255, 1) 100%);
}

.experience-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(221, 231, 238, 0.95);
    border-radius: 16px;
    padding: 0.9rem;
}

.experience-graph {
    position: relative;
    height: 120px;
    background:
        linear-gradient(to bottom, transparent 24%, rgba(111, 146, 171, 0.08) 24%, rgba(111, 146, 171, 0.08) 25%, transparent 25%),
        linear-gradient(to bottom, transparent 49%, rgba(111, 146, 171, 0.08) 49%, rgba(111, 146, 171, 0.08) 50%, transparent 50%),
        linear-gradient(to bottom, transparent 74%, rgba(111, 146, 171, 0.08) 74%, rgba(111, 146, 171, 0.08) 75%, transparent 75%);
    border-radius: 12px;
    overflow: hidden;
}

.experience-line {
    position: absolute;
    left: 5%;
    right: 5%;
    height: 3px;
    border-radius: 999px;
    display: block;
}

.experience-line-blue {
    top: 36%;
    background: linear-gradient(90deg, #7ca9ff 0%, #5572f0 100%);
    transform: skewX(-22deg);
    box-shadow:
        48px -6px 0 0 #6380f2,
        108px 10px 0 0 #6d8df5,
        164px 3px 0 0 #5676e7,
        228px -8px 0 0 #4e71e0;
}

.experience-line-gold {
    top: 56%;
    background: linear-gradient(90deg, #efc96b 0%, #dfaa39 100%);
    transform: skewX(-22deg);
    box-shadow:
        44px 4px 0 0 #ebb95c,
        102px -3px 0 0 #dea536,
        166px 9px 0 0 #e4b85a,
        224px -4px 0 0 #d39928;
}

.experience-row,
.experience-side-header,
.experience-side-line,
.experience-side-pill {
    background: linear-gradient(90deg, #edf4f8 0%, #fafcfd 100%);
    border-radius: 999px;
}

.experience-row {
    height: 8px;
    margin-bottom: 0.7rem;
}

.experience-row-head {
    height: 10px;
    width: 100%;
}

.experience-row.short {
    width: 82%;
}

.experience-side {
    position: relative;
}

.experience-side-header {
    height: 64px;
    background: linear-gradient(135deg, rgba(52, 186, 134, 0.88), rgba(45, 152, 119, 0.92));
    border-radius: 12px;
    margin-bottom: 0.85rem;
}

.experience-side-line {
    height: 9px;
    margin-bottom: 0.65rem;
}

.experience-side-line.wide {
    width: 82%;
}

.experience-side-line.short {
    width: 62%;
}

.experience-side-divider {
    height: 1px;
    background: rgba(210, 224, 233, 0.75);
    margin: 0.95rem 0;
}

.experience-side-pill {
    height: 28px;
    margin-top: 0.7rem;
}

.experience-side-pill.short {
    width: 64%;
}

.experience-points {
    max-width: 410px;
    margin-left: auto;
}

.experience-point {
    display: flex;
    align-items: flex-start;
    gap: 0.82rem;
    margin-bottom: 1.42rem;
}

.experience-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #0f4d63;
    background: rgba(15, 77, 99, 0.08);
    border: 1px solid rgba(15, 77, 99, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    margin-top: 0.12rem;
}

.experience-point-title {
    color: #0d2d46;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.28rem;
}

.experience-point-copy {
    color: #5d788d;
    font-size: 0.91rem;
    line-height: 1.62;
}

.experience-cta {
    margin-top: 0.5rem;
}

.market-section {
    position: relative;
    padding: 1.5rem 0 5rem;
}

.market-description {
    max-width: 620px;
}

.market-checklist {
    display: grid;
    gap: 0.78rem;
}

.market-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    color: #526f84;
    font-size: 0.93rem;
    line-height: 1.6;
}

.market-check-item i {
    color: #7ea6b8;
    font-size: 0.95rem;
    margin-top: 0.22rem;
}

.market-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(160deg, #0f566d 0%, #0f4d63 56%, #0a4458 100%);
    border-radius: 24px;
    box-shadow: 0 26px 54px rgba(12, 73, 95, 0.18);
    padding: 1.45rem;
}

.market-card-bg {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.market-card-bg-top {
    top: -72px;
    right: -42px;
    width: 180px;
    height: 180px;
}

.market-card-bg-bottom {
    bottom: -60px;
    left: -34px;
    width: 120px;
    height: 120px;
}

.market-card-label,
.market-card-stat,
.market-card-subtitle,
.market-card-image,
.market-mini-card {
    position: relative;
    z-index: 1;
}

.market-card-label {
    color: #f0c75f;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.market-card-stat {
    font-size: clamp(2.25rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.05;
    margin-top: 0.35rem;
}

.market-card-subtitle {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
}

.market-card-image {
    min-height: 210px;
    background:
        linear-gradient(135deg, rgba(255, 201, 82, 0.16), rgba(255, 255, 255, 0.04)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 68, 88, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.market-image-badge {
    display: inline-flex;
    color: #f7fbfc;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.38rem 0.72rem;
    margin-bottom: 1rem;
}

.market-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.market-image-grid span {
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    border-radius: 14px;
    display: block;
}

.market-image-grid span:nth-child(1),
.market-image-grid span:nth-child(4) {
    background: linear-gradient(135deg, rgba(242, 196, 86, 0.38), rgba(255, 255, 255, 0.09));
}

.market-mini-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.9rem 0.95rem;
}

.market-mini-value {
    color: #f0c75f;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.market-mini-label {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    line-height: 1.45;
}

.pricing-section {
    position: relative;
    padding: 1.2rem 0 4.8rem;
}

.pricing-grid {
    align-items: stretch;
    margin-bottom: 1rem;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(205, 221, 232, 0.92);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(25, 74, 103, 0.05);
    padding: 1.18rem 1rem 1rem;
}

.pricing-card-featured {
    color: #fff;
    background: linear-gradient(180deg, #14586d 0%, #0f4d63 100%);
    border-color: rgba(12, 73, 95, 0.95);
    box-shadow: 0 24px 42px rgba(12, 73, 95, 0.16);
}

.pricing-card.pricing-card-featured .pricing-plan-title,
.pricing-card.pricing-card-featured .pricing-value,
.pricing-card.pricing-card-featured .pricing-plan-copy {
    color: #fff !important;
}

.pricing-badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #6f5100;
    background: #d9ab2c;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    box-shadow: 0 10px 18px rgba(217, 171, 44, 0.22);
}

.pricing-plan-label {
    color: #d39d1f;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.pricing-plan-title {
    color: #0d2d46;
    font-size: 1.36rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.pricing-plan-copy {
    color: #5f788b;
    font-size: 0.88rem;
    line-height: 1.6;
    min-height: 56px;
    margin-bottom: 1rem;
}

.pricing-plan-copy-featured {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.22rem;
    margin-bottom: 0.18rem;
}

.pricing-value {
    color: #0d2d46;
    font-size: 1.82rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.pricing-period {
    color: #7f96a7;
    font-size: 0.82rem;
}

.pricing-period-featured {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-note {
    color: #9aafbc;
    font-size: 0.72rem;
    margin-bottom: 1rem;
}

.pricing-note-featured {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-features {
    display: grid;
    gap: 0.62rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.58rem;
    color: #536f84;
    font-size: 0.84rem;
    line-height: 1.5;
}

.pricing-features li i {
    color: #93b2c3;
    font-size: 0.82rem;
    margin-top: 0.16rem;
}

.pricing-features-featured li {
    color: rgba(255, 255, 255, 0.88);
}

.pricing-features-featured li i {
    color: rgba(240, 199, 95, 0.9);
}

.pricing-btn {
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 0.72rem 0.95rem;
}

.pricing-btn-outline {
    color: #fff;
    background: #0f4d63;
}

.pricing-btn-outline:hover,
.pricing-btn-outline:focus {
    color: #fff;
    background: #0c4255;
}

.pricing-btn-featured {
    color: #6f5100;
    background: #d9ab2c;
}

.pricing-btn-featured:hover,
.pricing-btn-featured:focus {
    color: #6f5100;
    background: #c99a1f;
}

.pricing-footnote {
    color: #9aafbc;
    font-size: 0.78rem;
    margin-top: 0.8rem;
}

.testimonials-section {
    position: relative;
    padding: 1.1rem 0 4.8rem;
}

.testimonial-grid {
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(205, 221, 232, 0.92);
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(25, 74, 103, 0.05);
    padding: 1.22rem 1.08rem 1.02rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(172, 199, 214, 0.95);
    box-shadow: 0 22px 38px rgba(25, 74, 103, 0.08);
}

.feature-card,
.module-card,
.pricing-card,
.testimonial-card,
.workflow-icon,
.faq-item,
.market-mini-card,
.floating-card,
.btn-demo,
.hero-primary,
.hero-secondary,
.pricing-btn,
.faq-support-btn,
.cta-primary-btn,
.cta-secondary-btn,
.book-demo-submit {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        opacity 0.7s ease;
}

.workflow-card:hover .workflow-icon {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(25, 74, 103, 0.09);
}

.faq-item:hover {
    border-color: rgba(172, 199, 214, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(25, 74, 103, 0.06);
}

.market-mini-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.11);
}

.footer-socials a,
.footer-links-group a,
.footer-contact-item {
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
    transform: translateY(-2px);
}

.footer-links-group a:hover,
.footer-links-group a:focus {
    transform: translateX(2px);
}

.testimonial-stars {
    color: #c9a227;
    display: flex;
    gap: 0.18rem;
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.testimonial-highlight {
    color: #0f4c5c;
    background: rgba(15, 76, 92, 0.06);
    border-radius: 12px;
    display: inline-block;
    font-size: 0.77rem;
    font-weight: 700;
    line-height: 1.45;
    padding: 0.62rem 0.78rem;
    margin-bottom: 0.9rem;
}

.testimonial-copy {
    color: #4a6170;
    font-size: 0.9rem;
    line-height: 1.72;
    flex: 1;
    margin-bottom: 1.15rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid #e2eaf0;
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    color: #0f2027;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
}

.testimonial-role {
    color: #4a6170;
    font-size: 0.76rem;
    line-height: 1.5;
}

.testimonial-location {
    color: #c9a227;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-section {
    position: relative;
    padding: 0.85rem 0 5rem;
}

.faq-copy {
    max-width: 350px;
}

.faq-support-btn {
    color: #0f4d63;
    background: transparent;
    border: 1.5px solid rgba(15, 77, 99, 0.35);
    border-radius: 16px;
    font-weight: 700;
    padding: 0.9rem 1.25rem;
}

.faq-support-btn:hover,
.faq-support-btn:focus {
    color: #0f4d63;
    background: rgba(15, 77, 99, 0.05);
    border-color: rgba(15, 77, 99, 0.45);
}

.faq-accordion {
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(205, 221, 232, 0.92) !important;
    border-radius: 16px !important;
    overflow: hidden;
}

.faq-button {
    color: #0d2d46;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.45;
    padding: 0.86rem 1.06rem;
}

.faq-button:not(.collapsed) {
    color: #0d2d46;
}

.faq-button::after {
    background-size: 0.95rem;
}

.faq-answer {
    color: #587486;
    font-size: 0.9rem;
    line-height: 1.68;
    padding: 0 1.06rem 0.9rem;
}

.cta-section {
    position: relative;
    padding: 0.7rem 0 5rem;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: linear-gradient(180deg, #14586d 0%, #0f4d63 100%);
    border-radius: 24px;
    padding: 3.45rem 1.32rem 3.15rem;
    box-shadow: 0 28px 56px rgba(12, 73, 95, 0.18);
}

.cta-panel::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(217, 171, 44, 0.16) 0.7px, transparent 0.7px);
    background-size: 26px 26px;
    content: "";
    pointer-events: none;
    opacity: 0.18;
    z-index: 0;
}

.cta-bg {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-bg-top {
    top: -92px;
    right: -32px;
    width: 186px;
    height: 186px;
}

.cta-bg-bottom {
    bottom: -80px;
    left: -38px;
    width: 150px;
    height: 150px;
    background: rgba(201, 162, 39, 0.08);
}

.cta-badge,
.cta-title,
.cta-copy,
.cta-actions,
.cta-footnote {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d9ab2c;
    border: 1px solid rgba(217, 171, 44, 0.5);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.46rem 0.86rem;
    margin-bottom: 1.15rem;
}

.cta-title {
    color: #fff;
    font-size: clamp(2.05rem, 4.5vw, 3.55rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.08;
    max-width: 840px;
    margin: 0 auto 1.05rem;
}

.cta-title span {
    display: block;
}

.cta-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.56;
    max-width: 760px;
    margin: 0 auto 1.6rem;
}

.cta-actions {
    margin-bottom: 1.5rem;
}

.cta-primary-btn,
.cta-secondary-btn {
    border-radius: 16px;
    font-size: 0.93rem;
    font-weight: 700;
    padding: 0.84rem 1.26rem;
}

.cta-primary-btn {
    color: #1c1c10;
    background: #d9ab2c;
    box-shadow: 0 16px 28px rgba(217, 171, 44, 0.2);
}

.cta-primary-btn:hover,
.cta-primary-btn:focus {
    color: #1c1c10;
    background: #c99a1f;
}

.cta-secondary-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-secondary-btn:hover,
.cta-secondary-btn:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.cta-footnote {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.84rem;
}

.site-footer {
    color: #d8e6ec;
    background: #11262f;
    padding: 3.5rem 0 1.7rem;
}

.footer-top {
    padding-bottom: 2rem;
}

.footer-brand-text {
    color: #fff;
}

.footer-brand-text span {
    color: #d6a62c;
}

.footer-copy {
    color: #9db0ba;
    font-size: 0.94rem;
    line-height: 1.65;
    max-width: 320px;
    margin-bottom: 1.6rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    color: #a8bbc4;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-socials a:hover,
.footer-socials a:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.footer-contact-list {
    display: grid;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #d6a62c;
    font-size: 0.9rem;
}

.footer-contact-item span {
    color: #9db0ba;
}

.footer-links-group h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links-group {
    display: grid;
    gap: 0.9rem;
}

.footer-links-group a {
    color: #9db0ba;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links-group a:hover,
.footer-links-group a:focus {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #7f959f;
    font-size: 0.86rem;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    background: #0f9d84;
    border-radius: 50%;
    display: inline-block;
}

.book-demo-modal .modal-dialog {
    max-width: 440px;
}

.book-demo-modal .modal-content {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 58px rgba(10, 41, 55, 0.28);
}

.book-demo-header {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(180deg, #14586d 0%, #0f4d63 100%);
    padding: 1.25rem 1.3rem 1.15rem;
}

.book-demo-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    opacity: 0.8;
}

.book-demo-close:hover {
    opacity: 1;
}

.book-demo-brand,
.book-demo-title,
.book-demo-subtitle {
    position: relative;
    z-index: 1;
}

.book-demo-brand-text {
    color: #d6a62c;
    font-size: 0.95rem;
    font-weight: 700;
}

.book-demo-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.15;
}

.book-demo-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 320px;
}

.book-demo-bg {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.book-demo-bg-top {
    top: -24px;
    right: -22px;
    width: 80px;
    height: 80px;
}

.book-demo-bg-bottom {
    bottom: -26px;
    left: 58%;
    width: 56px;
    height: 56px;
    background: rgba(201, 162, 39, 0.14);
}

.book-demo-body {
    padding: 1.2rem 1.3rem 1rem;
    background: #fff;
}

.book-demo-label {
    color: #203846;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.book-demo-input {
    min-height: 48px;
    color: #243d4d;
    border: 1px solid #dbe6ed;
    border-radius: 12px;
    font-size: 0.95rem;
    padding: 0.72rem 0.9rem;
    box-shadow: none !important;
}

.book-demo-input:focus {
    border-color: rgba(15, 77, 99, 0.28);
}

.book-demo-submit {
    color: #fff;
    background: #0f4d63;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 1rem;
    box-shadow: 0 14px 24px rgba(15, 77, 99, 0.16);
}

.book-demo-submit:hover,
.book-demo-submit:focus {
    color: #fff;
    background: #0c4255;
}

.book-demo-footnote {
    color: #94a8b5;
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.9rem;
}

.workflow-section {
    position: relative;
    padding: 1.8rem 0 6rem;
}

.workflow-track {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
}

.workflow-line {
    position: absolute;
    top: 2rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(193, 211, 223, 0.92);
    z-index: 0;
}

.workflow-card {
    position: relative;
    z-index: 1;
    padding: 0 0.65rem;
}

.workflow-icon-wrap {
    position: relative;
    width: 76px;
    margin: 0 auto 1rem;
}

.workflow-step {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 22px;
    height: 22px;
    color: #fff;
    background: #0f4d63;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(15, 77, 99, 0.18);
}

.workflow-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    color: #0f4d63;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(205, 221, 232, 0.94);
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(25, 74, 103, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.workflow-step-label {
    color: #d39d1f;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.workflow-title {
    color: #0d2d46;
    font-size: 1.38rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 0.7rem;
}

.workflow-copy {
    color: #5b768b;
    font-size: 0.96rem;
    line-height: 1.7;
    max-width: 245px;
    margin-left: auto;
    margin-right: auto;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-badge {
    color: #0f4d63;
    background: rgba(222, 239, 245, 0.94);
    border: 1px solid rgba(15, 77, 99, 0.18);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #d6a62c;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    color: #0d2d46;
    font-size: clamp(2.35rem, 4.3vw, 3.95rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.99;
}

.hero-title span {
    display: block;
    color: #2b7a90;
}

.hero-description {
    max-width: 560px;
    color: #466276;
    font-size: 1.26rem;
    line-height: 1.56;
}

.hero-secondary {
    color: #0f4d63;
    border: 1.5px solid rgba(15, 77, 99, 0.34);
    border-radius: 14px;
    font-weight: 600;
    padding: 0.9rem 1.35rem;
}

.hero-secondary:hover,
.hero-secondary:focus {
    color: #0f4d63;
    background: rgba(15, 77, 99, 0.05);
    border-color: rgba(15, 77, 99, 0.42);
}

.metric-item {
    min-height: 100%;
}

.metric-value {
    color: #0f4d63;
    font-size: clamp(1.48rem, 2.7vw, 1.95rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.metric-label {
    color: #70889a;
    font-size: 0.84rem;
    margin-top: 0.15rem;
}

.hero-visual {
    min-height: 480px;
    z-index: 1;
}

.dashboard-window {
    position: relative;
    margin: 3.2rem auto 0;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(205, 223, 234, 0.95);
    border-radius: 26px;
    box-shadow: 0 24px 58px rgba(28, 78, 110, 0.12);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.dashboard-window-bar {
    padding: 0.76rem 0.92rem;
    background: rgba(250, 252, 255, 0.95);
    border-bottom: 1px solid rgba(220, 232, 240, 0.88);
}

.window-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.dashboard-url {
    flex: 1;
    color: #a0b4c3;
    background: #f7fafc;
    border: 1px solid rgba(211, 225, 234, 0.95);
    border-radius: 999px;
    font-size: 0.79rem;
    padding: 0.4rem 0.82rem;
}

.dashboard-window-body {
    padding: 0.92rem;
}

.panel-card {
    background: #fff;
    border: 1px solid rgba(220, 230, 238, 0.95);
    border-radius: 16px;
    padding: 0.92rem;
}

.panel-topline {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.panel-chip {
    color: #688196;
    background: #f2f7fa;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.38rem 0.7rem;
}

.panel-chip-primary {
    color: #0f4d63;
    background: rgba(15, 77, 99, 0.09);
}

.panel-chip-success {
    color: #258a60;
    background: rgba(37, 138, 96, 0.1);
}

.chart-ghost {
    position: relative;
    height: 122px;
    background:
        linear-gradient(to bottom, transparent 24%, rgba(111, 146, 171, 0.08) 24%, rgba(111, 146, 171, 0.08) 25%, transparent 25%),
        linear-gradient(to bottom, transparent 49%, rgba(111, 146, 171, 0.08) 49%, rgba(111, 146, 171, 0.08) 50%, transparent 50%),
        linear-gradient(to bottom, transparent 74%, rgba(111, 146, 171, 0.08) 74%, rgba(111, 146, 171, 0.08) 75%, transparent 75%);
    border-radius: 14px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    left: 8%;
    right: 6%;
    height: 3px;
    border-radius: 999px;
    display: block;
}

.chart-line-blue {
    top: 36%;
    background: linear-gradient(90deg, #8bb8cf 0%, #4a78f0 100%);
    transform: skewX(-24deg);
    box-shadow:
        44px 16px 0 0 #7194f2,
        108px 6px 0 0 #6791f3,
        160px 22px 0 0 #6b8af0,
        216px 8px 0 0 #4d71e2;
}

.chart-line-gold {
    top: 58%;
    background: linear-gradient(90deg, #f4d37f 0%, #e0a836 100%);
    transform: skewX(-24deg);
    box-shadow:
        54px 10px 0 0 #e7be62,
        120px -2px 0 0 #e0aa37,
        178px 14px 0 0 #efc468,
        236px 4px 0 0 #d59f32;
}

.table-ghost-head,
.table-ghost-row,
.side-line,
.side-pill {
    background: linear-gradient(90deg, #ecf3f7 0%, #f9fbfd 100%);
    border-radius: 999px;
}

.table-ghost-head {
    height: 10px;
    width: 100%;
    margin-bottom: 0.9rem;
}

.table-ghost-row {
    height: 9px;
    width: 100%;
    margin-bottom: 0.75rem;
}

.table-ghost-row:nth-child(3) {
    width: 84%;
}

.table-ghost-row:nth-child(4) {
    width: 76%;
}

.table-ghost-row:nth-child(5) {
    width: 90%;
}

.side-panel {
    display: flex;
    flex-direction: column;
}

.side-line {
    height: 10px;
    margin-bottom: 0.7rem;
}

.side-line-lg {
    width: 72%;
    height: 14px;
}

.side-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.side-pill {
    height: 34px;
}

.side-pill-short {
    width: 72%;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.78rem;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 16px;
    box-shadow:
        0 18px 32px rgba(16, 53, 77, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    padding: 0.82rem 0.92rem;
}

.floating-sales {
    top: 8.2rem;
    left: -1.35rem;
}

.floating-branch {
    top: 7rem;
    right: -1.4rem;
}

.floating-growth {
    top: 13rem;
    right: -1.05rem;
}

.floating-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.1rem;
}

.bg-soft-blue {
    background: rgba(72, 129, 255, 0.12);
}

.bg-soft-green {
    background: rgba(42, 153, 99, 0.12);
}

.bg-soft-amber {
    background: rgba(226, 167, 51, 0.16);
}

.floating-value {
    color: #123955;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.floating-label {
    color: #678094;
    font-size: 0.84rem;
    font-weight: 500;
}

@media (max-width: 1199.98px) {
    .hero-section {
        padding-top: 4.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .dashboard-window {
        max-width: 500px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    body.motion-ready .motion-target,
    body.motion-ready .hero-animate {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 991.98px) {
    .landing-header .navbar-collapse {
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(208, 223, 233, 0.85);
        border-radius: 20px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 18px 34px rgba(15, 77, 99, 0.09);
    }

    .hero-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .dashboard-window {
        margin-top: 1.5rem;
    }

    .trust-section {
        padding-top: 0.8rem;
    }

    .trust-shell {
        padding-top: 1.9rem;
    }

    .why-section {
        padding: 3.5rem 0 4.6rem;
    }

    .modules-section {
        padding: 2rem 0 4.8rem;
    }

    .experience-section {
        padding: 1.8rem 0 5rem;
    }

    .market-section {
        padding: 1.5rem 0 5rem;
    }

    .pricing-section {
        padding: 1.3rem 0 5rem;
    }

    .testimonials-section {
        padding: 1rem 0 5rem;
    }

    .faq-section {
        padding: 0.8rem 0 5rem;
    }

    .cta-section {
        padding: 0.4rem 0 5rem;
    }

    .site-footer {
        padding-top: 3.6rem;
    }

    .book-demo-modal .modal-dialog {
        max-width: 420px;
    }

    .workflow-section {
        padding: 1.3rem 0 5rem;
    }

    .floating-sales {
        left: 0.4rem;
    }

    .floating-branch {
        right: 0;
    }

    .floating-growth {
        right: 0.6rem;
    }
}

@media (max-width: 767.98px) {
    .brand-text {
        font-size: 1.45rem;
    }

    .hero-badge {
        font-size: 0.66rem;
        white-space: normal;
        padding: 0.5rem 0.72rem;
        line-height: 1.45;
    }

    .hero-title {
        font-size: 2.7rem;
    }

    .hero-description {
        font-size: 1.04rem;
        line-height: 1.75;
    }

    .hero-metrics {
        text-align: center;
    }

    .hero-visual {
        min-height: 420px;
    }

    .trust-shell {
        padding: 1.7rem 0 1.4rem;
    }

    .trust-kicker {
        font-size: 0.92rem;
        padding: 0 0.75rem;
    }

    .brand-marquee-track {
        gap: 1rem;
        animation-duration: 22s;
    }

    .brand-pill {
        font-size: 0.9rem;
        padding: 0.3rem 0.55rem;
    }

    .trust-divider {
        margin-top: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .trust-stat-label {
        font-size: 0.92rem;
    }

    .why-section {
        padding: 3rem 0 4rem;
    }

    .modules-section {
        padding: 1.7rem 0 4rem;
    }

    .experience-section {
        padding: 1.5rem 0 4rem;
    }

    .market-section {
        padding: 1.2rem 0 4rem;
    }

    .pricing-section {
        padding: 1rem 0 4rem;
    }

    .testimonials-section {
        padding: 0.9rem 0 4rem;
    }

    .faq-section {
        padding: 0.8rem 0 4rem;
    }

    .cta-section {
        padding: 0.2rem 0 4rem;
    }

    .site-footer {
        padding: 3rem 0 1.8rem;
    }

    .book-demo-modal .modal-dialog {
        margin: 1rem;
    }

    .workflow-section {
        padding: 1.2rem 0 4rem;
    }

    .why-intro {
        margin-bottom: 2.2rem;
    }

    .section-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .section-description {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.35rem 1.15rem;
        border-radius: 20px;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .feature-copy {
        font-size: 0.97rem;
        line-height: 1.75;
    }

    .modules-intro {
        margin-bottom: 2rem;
    }

    .module-card {
        padding: 1rem 0.95rem 0.95rem;
        border-radius: 16px;
    }

    .module-title {
        font-size: 1.08rem;
    }

    .module-copy {
        font-size: 0.88rem;
    }

    .experience-screen {
        border-radius: 18px;
    }

    .experience-body {
        padding: 0.75rem;
    }

    .experience-panel {
        padding: 0.75rem;
        border-radius: 14px;
    }

    .experience-points {
        max-width: 100%;
        margin-left: 0;
    }

    .experience-point {
        gap: 0.75rem;
        margin-bottom: 1.3rem;
    }

    .experience-point-title {
        font-size: 1.02rem;
    }

    .experience-point-copy {
        font-size: 0.92rem;
    }

    .market-check-item {
        font-size: 0.94rem;
    }

    .market-card {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .market-card-image {
        min-height: 180px;
        border-radius: 16px;
    }

    .market-image-grid {
        gap: 0.6rem;
    }

    .market-image-grid span {
        height: 44px;
        border-radius: 12px;
    }

    .pricing-card {
        padding: 1.2rem 1rem 1rem;
    }

    .pricing-plan-copy {
        min-height: auto;
    }

    .pricing-value {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 1.2rem 1rem 1rem;
        border-radius: 18px;
    }

    .testimonial-highlight {
        font-size: 0.78rem;
        padding: 0.68rem 0.78rem;
    }

    .testimonial-copy {
        font-size: 0.91rem;
        line-height: 1.75;
    }

    .faq-copy {
        max-width: 100%;
    }

    .faq-button {
        font-size: 0.94rem;
        padding: 0.92rem 1rem;
    }

    .faq-answer {
        font-size: 0.91rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cta-panel {
        border-radius: 22px;
        padding: 2.8rem 1rem 2.7rem;
    }

    .cta-copy {
        font-size: 1.02rem;
        margin-bottom: 1.5rem;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }

    .cta-footnote {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .footer-copy {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .book-demo-header {
        padding: 1.1rem 1rem 1rem;
    }

    .book-demo-body {
        padding: 1rem;
    }

    .book-demo-title {
        font-size: 1.55rem;
    }

    .workflow-icon-wrap {
        width: 72px;
    }

    .workflow-icon {
        width: 60px;
        height: 60px;
        font-size: 1.42rem;
        border-radius: 14px;
    }

    .workflow-title {
        font-size: 1.2rem;
    }

    .workflow-copy {
        font-size: 0.92rem;
    }

    .dashboard-window {
        border-radius: 20px;
    }

    .dashboard-window-body {
        padding: 0.75rem;
    }

    .panel-card {
        border-radius: 16px;
        padding: 0.8rem;
    }

    .floating-card {
        position: static;
        margin-top: 0.9rem;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .floating-sales,
    .floating-branch,
    .floating-growth {
        top: auto;
        right: auto;
        left: auto;
    }
}

@keyframes brand-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes dashboard-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes floating-bob {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -8px, 0);
    }
}

.market-cities-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(205, 221, 232, 0.92);
    border-radius: 18px;
    padding: 1rem 1rem 0.95rem;
    box-shadow: 0 16px 30px rgba(25, 74, 103, 0.05);
}

.market-cities-title {
    color: #0d2d46;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.market-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.market-cities-list span {
    color: #5d788d;
    background: #f7fafc;
    border: 1px solid rgba(215, 226, 234, 0.92);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.38rem 0.72rem;
}

html[dir="rtl"] body.fueld-home {
    text-align: right;
}

html[dir="rtl"] body.motion-ready .motion-target.motion-left {
    transform: translate3d(34px, 22px, 0) scale(0.985);
}

html[dir="rtl"] body.motion-ready .motion-target.motion-right {
    transform: translate3d(-34px, 22px, 0) scale(0.985);
}

html[dir="rtl"] .scroll-progress-bar {
    transform-origin: right center;
}

html[dir="rtl"] .landing-header .navbar-collapse {
    text-align: right;
}

html[dir="rtl"] .landing-header .navbar-nav {
    align-items: flex-end;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .module-card,
html[dir="rtl"] .pricing-card,
html[dir="rtl"] .testimonial-card,
html[dir="rtl"] .market-copy,
html[dir="rtl"] .faq-copy,
html[dir="rtl"] .faq-button,
html[dir="rtl"] .faq-answer,
html[dir="rtl"] .footer-brand-block,
html[dir="rtl"] .footer-links-group,
html[dir="rtl"] .book-demo-header,
html[dir="rtl"] .book-demo-body,
html[dir="rtl"] .book-demo-label,
html[dir="rtl"] .book-demo-title,
html[dir="rtl"] .book-demo-subtitle {
    text-align: right;
}

html[dir="rtl"] .market-copy {
    padding-right: 0.5rem;
    padding-left: 1.25rem;
}

html[dir="rtl"] .market-card {
    margin-right: 0;
    margin-left: 0.5rem;
}

html[dir="rtl"] .faq-copy {
    padding-right: 0.5rem;
    padding-left: 1.5rem;
}

html[dir="rtl"] .faq-section .accordion {
    margin-right: 0;
    margin-left: 0.5rem;
}

html[dir="rtl"] .landing-header .nav-link::after {
    left: 0.85rem;
    right: 0.85rem;
}

html[dir="rtl"] .dashboard-url,
html[dir="rtl"] .experience-url {
    margin-left: 0 !important;
    margin-right: 1rem !important;
}

html[dir="rtl"] .experience-points {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .module-card-head,
html[dir="rtl"] .pricing-features li,
html[dir="rtl"] .pricing-value-wrap,
html[dir="rtl"] .experience-point,
html[dir="rtl"] .market-check-item,
html[dir="rtl"] .testimonial-author,
html[dir="rtl"] .footer-contact-item,
html[dir="rtl"] .footer-status,
html[dir="rtl"] .book-demo-brand,
html[dir="rtl"] .book-demo-footnote {
    flex-direction: row-reverse;
}

html[dir="rtl"] .experience-point {
    flex-direction: row !important;
    justify-content: flex-start;
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .market-checklist {
    direction: rtl;
}

html[dir="rtl"] .market-check-item {
    flex-direction: row !important;
    justify-content: flex-start;
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .market-check-item span {
    flex: 1;
    text-align: right;
}

html[dir="rtl"] .experience-point > div {
    flex: 1;
    text-align: right;
}

html[dir="rtl"] .pricing-features li {
    flex-direction: row !important;
    justify-content: flex-start;
    direction: rtl;
}

html[dir="rtl"] .pricing-features li span {
    flex: 1;
    text-align: right;
}

html[dir="rtl"] .footer-contact-item span {
    flex: 1;
    text-align: right;
}

html[dir="rtl"] .testimonial-location {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    direction: rtl;
}

html[dir="rtl"] .testimonial-author {
    justify-content: flex-end;
    text-align: right;
}

html[dir="rtl"] .testimonial-author > div {
    text-align: right;
}

html[dir="rtl"] .pricing-value-wrap {
    justify-content: flex-end;
}

html[dir="rtl"] .pricing-features li,
html[dir="rtl"] .footer-contact-item,
html[dir="rtl"] .book-demo-footnote {
    text-align: right;
}

html[dir="rtl"] .footer-brand-block,
html[dir="rtl"] .footer-copy,
html[dir="rtl"] .footer-contact-list,
html[dir="rtl"] .footer-contact-item,
html[dir="rtl"] .footer-bottom {
    direction: rtl;
}

html[dir="rtl"] .footer-socials {
    justify-content: flex-start;
}

html[dir="rtl"] .footer-contact-item {
    justify-content: flex-start;
    gap: 0.65rem;
}

html[dir="rtl"] .footer-contact-item i {
    margin: 0;
}

html[dir="rtl"] .faq-button::after {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .market-cities-title i,
html[dir="rtl"] .testimonial-location i,
html[dir="rtl"] .cta-secondary-btn i,
html[dir="rtl"] .book-demo-footnote i {
    margin-left: 0.35rem;
    margin-right: 0;
}

html[dir="rtl"] .hero-primary i,
html[dir="rtl"] .experience-cta i,
html[dir="rtl"] .cta-primary-btn i {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

html[dir="rtl"] .floating-sales {
    left: auto;
    right: -1.35rem;
}

html[dir="rtl"] .floating-branch {
    right: auto;
    left: -1.4rem;
}

html[dir="rtl"] .floating-growth {
    right: auto;
    left: -1.05rem;
}

html[dir="rtl"] .footer-links-group a:hover,
html[dir="rtl"] .footer-links-group a:focus {
    transform: translateX(-2px);
}

html[dir="rtl"] .workflow-step {
    left: -6px;
    right: auto;
}

html[dir="rtl"] .book-demo-close {
    left: 1rem;
    right: auto;
}

html[dir="rtl"] .book-demo-input,
html[dir="rtl"] .book-demo-input option {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}

html[dir="rtl"] .modules-section .col-md-6.col-xl-4:nth-child(3) .module-badge,
html[dir="rtl"] .modules-section .col-md-6.col-xl-4:nth-child(5) .module-badge {
    color: #d4a129;
    background: rgba(243, 189, 68, 0.14);
}

.brand-mark,
.btn-language,
.pricing-btn,
.footer-socials a,
.book-demo-input,
.book-demo-modal .form-select,
.testimonial-highlight {
    border-radius: var(--home-radius-sm);
}

.btn-demo,
.hero-primary,
.market-image-grid span,
.book-demo-submit {
    border-radius: var(--home-radius-md);
}

.module-card,
.experience-panel,
.market-card-image,
.market-mini-card,
.pricing-card,
.faq-support-btn,
.faq-item,
.cta-primary-btn,
.cta-secondary-btn,
.floating-card {
    border-radius: var(--home-radius-lg) !important;
}

.feature-card,
.experience-screen,
.market-card,
.testimonial-card,
.cta-panel,
.book-demo-modal .modal-content {
    border-radius: var(--home-radius-xl);
}

.hero-badge,
.experience-url,
.market-image-badge,
.module-badge,
.pricing-badge-featured,
.cta-badge,
.experience-check,
.testimonial-avatar,
.footer-status-dot {
    border-radius: var(--home-radius-pill);
}
