:root {
    --fx-primary: #1f6fff;
    --fx-primary-2: #1B84FF;
    --fx-text: #252F4A;
    --fx-muted: #6b7280;
    --fx-card-radius: 18px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Top spacing like screenshot */
.page-wrap {
    padding: 32px 88px;
}

@media(max-width: 768px) {
    .page-wrap {
        padding: 32px;
    }
}

/* Navbar pill container */
.fx-nav {
    background: #fff;
    border-radius: 8px;
    padding: 10px 56px;
}

.fx-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .5px;
}

.fx-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(31, 111, 255, .10);
}

.nav-link {
    color: #4B5675;
    font-weight: 500;
    font-size: 16px;
    padding: 0 !important;
}

.nav-link.active {
    color: var(--fx-primary-2) !important;
    font-weight: bold;
}

.fx-lang {
    padding: 8px 12px;
    font-size: 16px;
    gap: 8px;
    background-color: transparent;
    border: 1px solid #DBDFE9 !important;
    border-radius: 4px;
}

.btn-fx-primary {
    background: var(--fx-primary);
    border-color: var(--fx-primary);
    border-radius: 6px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 15.38px;
}

.btn-fx-primary:hover {
    color: var(--fx-primary) !important;
}

.btn-fx-outline {
    padding: 12px;
    font-weight: 700;
    color: #17365d;
}

/* Hero */
.fx-hero {
    padding-top: 114px;
    text-align: center;
    position: relative;
}

.fx-hero h1 {
    font-weight: bold;
    font-size: 64px;
    margin-bottom: 0;
    color: #002754;
}

@media(max-width: 576px) {
    .fx-hero {
        padding-top: 50px;
    }

    .fx-hero h1 {
        font-size: 45px;
    }
}

.fx-hero p {
    color: #4B5675;
    margin: 24px 0;
    font-size: 20px;
}

.fx-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Illustration card area */
.fx-illustration {
    margin: 0 auto;
    position: relative;
}

.fx-illustration img {
    max-width: 580.14px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /*filter: drop-shadow(0 18px 30px rgba(11, 31, 58, .10));*/
}

/* Decorative dotted circles like screenshot */
.fx-dot {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 2px dashed rgba(31, 111, 255, .22);
    animation: floaty 7s ease-in-out infinite;
}

.fx-dot.dot-1 {
    top: 110px;
    right: 19%;
    width: 88px;
    height: 88px;
}

.fx-dot.dot-2 {
    top: 250px;
    left: 12%;
    width: 120px;
    height: 120px;
    opacity: .7;
}

.fx-dot.dot-3 {
    top: 180px;
    left: 22%;
    width: 60px;
    height: 60px;
    opacity: .6;
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .fx-nav {
        padding: 10px 12px;
    }

    .navbar-collapse {
        margin-top: 10px;
    }
}

.hero-container {
    min-height: 100vh;
    background-image: url("/img/home-hero-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fx-footer-light {
    background: #ffffff;
    color: #6b7280;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid #eef2f7;
}

.btns-container {
    gap: 12px
}

.navbar-nav {
    gap: 24px;
}

html[dir="rtl"] .navbar-nav {
    margin-right: 32px;
}

html[dir="ltr"] .navbar-nav {
    margin-left: 32px;
}