﻿@font-face {
    font-family: "Vazirmatn";
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url("../fonts/vazirmatn-arabic.woff2") format("woff2");
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}

@font-face {
    font-family: "Vazirmatn";
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url("../fonts/vazirmatn-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Vazirmatn";
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url("../fonts/vazirmatn-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bs-body-font-family: "Vazirmatn", Tahoma, sans-serif;
    --bs-font-sans-serif: "Vazirmatn", Tahoma, sans-serif;
    --fd-primary: #087bff;
    --fd-primary-dark: #0458d5;
    --fd-cyan: #00d6ff;
    --fd-navy: #07173d;
    --fd-navy-2: #0a2257;
    --fd-bg: #f6f9ff;
    --fd-surface: #ffffff;
    --fd-surface-2: #f1f6ff;
    --fd-text: #17233d;
    --fd-muted: #65738f;
    --fd-border: rgba(9, 59, 139, .10);
    --fd-success: #10b981;
    --fd-warning: #f59e0b;
    --fd-danger: #ef4444;
    --fd-shadow: 0 25px 70px rgba(23, 67, 131, .12);
    --fd-radius: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    background: var(--fd-bg);
    color: var(--fd-text);
    line-height: 1.9;
    overflow-x: hidden;
    transition: background .3s ease, color .3s ease;
}

    body[data-theme="dark"] {
        --fd-bg: #040b19;
        --fd-surface: #091328;
        --fd-surface-2: #0c1933;
        --fd-text: #eff6ff;
        --fd-muted: #9caccc;
        --fd-border: rgba(255,255,255,.08);
        --fd-shadow: 0 25px 70px rgba(0,0,0,.30);
    }

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 10px 0;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--fd-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .25s ease, border-color .25s ease;
    z-index: 1080;
    overflow: visible;
}

body[data-theme="dark"] .navbar {
    background: rgba(4,11,25,.94);
}

.navbar > .container,
.navbar > .container-fluid {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

    .navbar-brand img {
        display: block;
        width: auto;
        height: 46px;
        max-width: 220px;
        object-fit: contain;
    }

.navbar-toggler {
    flex: 0 0 auto;
    border: 0;
    padding: 7px;
    margin: 0;
}

    .navbar-toggler:focus {
        outline: 0;
        box-shadow: none;
    }

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
}

.navbar-collapse {
    min-width: 0;
}

.navbar-nav {
    min-width: 0;
}

.navbar .nav-item {
    position: relative;
    min-width: 0;
}

.navbar .nav-link {
    color: var(--fd-text);
    font-family: inherit;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
    border: 0;
    border-radius: 12px;
    padding: 10px 10px !important;
    white-space: nowrap;
    background: transparent;
    transition: .2s ease;
}

.navbar button.nav-link {
    cursor: pointer;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .nav-link:focus,
.navbar .nav-link.show {
    color: var(--fd-primary);
    background: rgba(8,123,255,.08);
}

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    z-index: 3000;
    min-width: 260px;
    padding: 10px;
    background: var(--fd-surface);
    border: 1px solid var(--fd-border);
    border-radius: 18px;
    box-shadow: var(--fd-shadow);
}

.navbar .dropdown-item {
    color: var(--fd-text);
    border-radius: 11px;
    padding: 9px 12px;
    font-size: 14px;
    white-space: nowrap;
}

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: rgba(8,123,255,.08);
        color: var(--fd-primary);
    }

.navbar-actions {
    flex-shrink: 0;
    white-space: nowrap;
}

.btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 11px 20px;
}

.btn-primary {
    border: none;
    background: linear-gradient(135deg,var(--fd-primary),#0564e9);
    box-shadow: 0 10px 25px rgba(8,123,255,.25);
}

    .btn-primary:hover {
        background: linear-gradient(135deg,#128aff,#034ebf);
        transform: translateY(-1px);
    }

.btn-outline-primary {
    border-color: rgba(8,123,255,.35);
    color: var(--fd-primary);
}

.btn-soft {
    background: rgba(8,123,255,.09);
    color: var(--fd-primary);
    border: 1px solid rgba(8,123,255,.12);
}

.theme-toggle {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 13px;
    background: var(--fd-surface-2);
    color: var(--fd-text);
    border: 1px solid var(--fd-border);
}

.hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 145px 0 80px;
    overflow: hidden;
    isolation: isolate;
}

    .hero:before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        top: -220px;
        right: -250px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(0,214,255,.26), rgba(8,123,255,.05) 50%, transparent 70% );
        z-index: -2;
    }

    .hero:after {
        content: "";
        position: absolute;
        width: 650px;
        height: 650px;
        left: -300px;
        bottom: -300px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(8,123,255,.18), transparent 68% );
        z-index: -2;
    }

.grid-bg {
    position: absolute;
    inset: 0;
    opacity: .28;
    z-index: -3;
    background-image: linear-gradient(rgba(8,123,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(8,123,255,.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom,#000,transparent);
    -webkit-mask-image: linear-gradient(to bottom,#000,transparent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fd-primary);
    background: rgba(8,123,255,.08);
    border: 1px solid rgba(8,123,255,.14);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
}

.dot-live {
    width: 8px;
    height: 8px;
    background: #17c982;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(23,201,130,.12);
}

.hero-title {
    margin-top: 24px;
    font-size: clamp(39px,5.4vw,78px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(100deg,#057aff,#00cdef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text {
    color: var(--fd-muted);
    max-width: 690px;
    font-size: 18px;
    margin: 24px 0 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.hero-badge {
    padding: 8px 12px;
    border-radius: 11px;
    background: var(--fd-surface);
    border: 1px solid var(--fd-border);
    color: var(--fd-muted);
    font-size: 12px;
    box-shadow: 0 10px 25px rgba(25,70,130,.05);
}

.dashboard-window {
    position: relative;
    max-width: 100%;
    background: linear-gradient( 145deg, rgba(7,23,61,.98), rgba(6,44,112,.97) );
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 32px;
    box-shadow: 0 45px 100px rgba(5,41,110,.30);
    padding: 18px;
    color: white;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

    .dashboard-window:before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 32px;
        background: linear-gradient( 135deg, rgba(0,220,255,.6), transparent 35%, transparent 65%, rgba(8,123,255,.45) );
        z-index: -1;
    }

.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 3px 4px 16px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

    .window-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,.35);
    }

.db-card {
    height: 100%;
    min-width: 0;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 17px;
    padding: 14px;
}

.db-label {
    font-size: 11px;
    color: #abc5ed;
}

.db-value {
    margin-top: 6px;
    font-size: 23px;
    font-weight: 900;
}

.db-up {
    color: #48e6a6;
    font-size: 11px;
}

.chart {
    height: 155px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding-top: 15px;
    overflow: hidden;
}

    .chart span {
        flex: 1;
        min-width: 8px;
        border-radius: 7px 7px 2px 2px;
        background: linear-gradient(180deg,#00d7ff,#087bff);
        opacity: .85;
    }

.alert-mini {
    padding: 9px;
    margin-top: 8px;
    border-radius: 11px;
    background: rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 10px;
}

    .alert-mini strong {
        color: #ffbc64;
    }

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-dark {
    background: linear-gradient(145deg,#061331,#092561);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .section-dark .text-muted-custom {
        color: #abc0e0;
    }

.section-heading {
    max-width: 820px;
    margin-bottom: 48px;
}

    .section-heading.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.section-title {
    font-size: clamp(30px,4vw,48px);
    font-weight: 900;
    line-height: 1.4;
    margin: 13px 0;
}

.section-lead {
    color: var(--fd-muted);
    font-size: 17px;
}

.card-modern {
    height: 100%;
    min-width: 0;
    border-radius: var(--fd-radius);
    border: 1px solid var(--fd-border);
    background: var(--fd-surface);
    padding: 27px;
    box-shadow: 0 15px 45px rgba(24,65,125,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .card-modern:hover {
        transform: translateY(-7px);
        box-shadow: var(--fd-shadow);
    }

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, rgba(8,123,255,.13), rgba(0,214,255,.13) );
    color: var(--fd-primary);
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 18px;
}

.card-modern h3,
.card-modern h4 {
    font-weight: 800;
}

.card-modern p {
    color: var(--fd-muted);
    font-size: 14px;
}

.feature-link {
    color: var(--fd-primary);
    font-weight: 800;
    font-size: 13px;
}

.image-shell {
    position: relative;
    max-width: 100%;
}

    .image-shell img {
        display: block;
        width: 100%;
        border-radius: 30px;
        min-height: 420px;
        object-fit: cover;
        box-shadow: var(--fd-shadow);
        border: 1px solid rgba(8,123,255,.18);
    }

    .image-shell:after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 30px;
        border: 1px solid rgba(8,123,255,.18);
        z-index: -1;
    }

.floating-stat {
    position: absolute;
    bottom: 28px;
    right: -25px;
    background: var(--fd-surface);
    border: 1px solid var(--fd-border);
    padding: 16px 20px;
    border-radius: 17px;
    box-shadow: var(--fd-shadow);
    min-width: 185px;
}

    .floating-stat strong {
        font-size: 24px;
        color: var(--fd-primary);
    }

.process-line {
    position: relative;
}

.process-step {
    display: flex;
    gap: 18px;
    position: relative;
    padding-bottom: 28px;
}

.process-number {
    flex: 0 0 47px;
    height: 47px;
    border-radius: 14px;
    background: linear-gradient( 135deg, var(--fd-primary), var(--fd-cyan) );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 9px 25px rgba(8,123,255,.25);
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    right: 23px;
    top: 50px;
    height: calc(100% - 47px);
    border-right: 2px dashed rgba(8,123,255,.22);
}

.process-text {
    min-width: 0;
}

    .process-text h5 {
        font-weight: 800;
    }

    .process-text p {
        margin: 0;
        color: var(--fd-muted);
        font-size: 14px;
    }

.flow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

.flow-item {
    flex: 1 1 130px;
    max-width: 170px;
    min-width: 0;
    min-height: 115px;
    padding: 17px 10px;
    text-align: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 17px;
}

    .flow-item strong {
        display: block;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .flow-item small {
        color: #adc2df;
    }

.flow-arrow {
    display: flex;
    align-items: center;
    color: #45dfff;
    font-size: 22px;
}

.metric-strip {
    padding: 25px;
    background: var(--fd-surface);
    border: 1px solid var(--fd-border);
    border-radius: 25px;
    box-shadow: 0 18px 50px rgba(15,58,117,.06);
}

.metric-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--fd-primary);
}

.metric-caption {
    color: var(--fd-muted);
    font-size: 12px;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .check-list li {
        position: relative;
        padding: 8px 32px 8px 0;
        color: var(--fd-muted);
    }

        .check-list li:before {
            content: "✓";
            position: absolute;
            right: 0;
            top: 8px;
            width: 21px;
            height: 21px;
            line-height: 21px;
            text-align: center;
            border-radius: 50%;
            background: rgba(16,185,129,.12);
            color: #10b981;
            font-weight: 900;
            font-size: 12px;
        }

.page-hero {
    padding: 165px 0 85px;
    background: radial-gradient( circle at 90% 10%, rgba(0,214,255,.18), transparent 30% ), radial-gradient( circle at 10% 70%, rgba(8,123,255,.12), transparent 35% );
}

.page-title {
    font-size: clamp(38px,5vw,62px);
    font-weight: 900;
    line-height: 1.3;
    margin: 16px 0;
}

.breadcrumb-custom {
    color: var(--fd-muted);
    font-size: 13px;
}

    .breadcrumb-custom a {
        color: var(--fd-primary);
    }

.content-box {
    max-width: 100%;
    background: var(--fd-surface);
    border: 1px solid var(--fd-border);
    border-radius: 27px;
    padding: 32px;
}

    .content-box h2,
    .content-box h3 {
        font-weight: 900;
    }

.scenario {
    max-width: 100%;
    background: linear-gradient( 135deg, rgba(8,123,255,.08), rgba(0,214,255,.05) );
    border: 1px solid rgba(8,123,255,.11);
    border-radius: 24px;
    padding: 28px;
}

.scenario-code {
    max-width: 100%;
    direction: ltr;
    text-align: left;
    border-radius: 17px;
    padding: 18px;
    background: #061332;
    color: #cbe6ff;
    font-family: Consolas,monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
}

.price-card {
    height: 100%;
    background: var(--fd-surface);
    border: 1px solid var(--fd-border);
    border-radius: 27px;
    padding: 30px;
    position: relative;
    transition: .25s ease;
}

    .price-card.featured {
        border: 2px solid var(--fd-primary);
        transform: scale(1.025);
        box-shadow: 0 30px 70px rgba(8,123,255,.14);
    }

.price-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 5px 11px;
    color: white;
    background: var(--fd-primary);
    border-radius: 100px;
    font-size: 11px;
}

.price-name {
    font-size: 22px;
    font-weight: 900;
}

.price-value {
    margin: 18px 0;
    font-size: 30px;
    color: var(--fd-primary);
    font-weight: 900;
}

.blog-card {
    overflow: hidden;
    border-radius: 23px;
    background: var(--fd-surface);
    border: 1px solid var(--fd-border);
    height: 100%;
}

    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.blog-body {
    padding: 23px;
}

    .blog-body h3 {
        font-size: 18px;
        line-height: 1.7;
        font-weight: 900;
    }

.form-control,
.form-select {
    border-radius: 13px;
    border-color: var(--fd-border);
    background-color: var(--fd-surface);
    color: var(--fd-text);
    min-height: 50px;
}

    .form-control:focus,
    .form-select:focus {
        background: var(--fd-surface);
        color: var(--fd-text);
        border-color: var(--fd-primary);
        box-shadow: 0 0 0 .2rem rgba(8,123,255,.1);
    }

.form-label {
    font-weight: 700;
    font-size: 13px;
}

.accordion-item {
    border: 1px solid var(--fd-border) !important;
    background: var(--fd-surface);
    border-radius: 17px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-button {
    background: var(--fd-surface);
    color: var(--fd-text);
    font-weight: 800;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background: rgba(8,123,255,.07);
        color: var(--fd-primary);
    }

.accordion-body {
    color: var(--fd-muted);
}

.cta-box {
    max-width: 100%;
    border-radius: 36px;
    padding: 60px;
    background: radial-gradient( circle at 10% 10%, rgba(0,214,255,.3), transparent 30% ), linear-gradient(135deg,#07183f,#075dcf);
    color: white;
    position: relative;
    overflow: hidden;
}

    .cta-box h2 {
        font-size: clamp(30px,4vw,48px);
        font-weight: 900;
    }

    .cta-box p {
        color: #c3d8f4;
    }

footer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #05122e;
    color: #d8e5f8;
    padding: 75px 0 25px;
}

.footer-logo {
    max-height: 52px;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: #8fa7cb;
    font-size: 13px;
}

.footer-title {
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 17px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #9bb1d2;
        font-size: 13px;
    }

        .footer-links a:hover {
            color: #48dfff;
        }

.footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #7892b7;
    font-size: 12px;
}

.toast-custom {
    position: fixed;
    z-index: 9999;
    bottom: 25px;
    left: 25px;
    max-width: calc(100vw - 30px);
    min-width: 280px;
    display: none;
    background: var(--fd-surface);
    color: var(--fd-text);
    border: 1px solid var(--fd-border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--fd-shadow);
}

    .toast-custom.show {
        display: block;
        animation: toastin .3s ease;
    }

@keyframes toastin {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.vina-glow {
    position: relative;
}

    .vina-glow::before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        max-width: 90vw;
        max-height: 90vw;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(0,214,255,.20), transparent 70% );
        filter: blur(10px);
        z-index: -1;
    }

.vina-message {
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 12px;
    line-height: 1.9;
}

    .vina-message.user {
        background: rgba(255,255,255,.07);
    }

    .vina-message.ai {
        background: linear-gradient( 135deg, rgba(8,123,255,.20), rgba(0,214,255,.08) );
        border: 1px solid rgba(0,214,255,.12);
    }

.task-frequency {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    color: var(--fd-primary);
    background: rgba(8,123,255,.08);
}

@media (min-width: 1400px) {

    .navbar {
        overflow: visible;
    }

        .navbar > .container,
        .navbar > .container-fluid {
            position: relative;
            overflow: visible;
        }

    .navbar-collapse {
        position: static;
        display: flex !important;
        align-items: center;
        width: 100%;
        min-width: 0;
        overflow: visible;
    }

    .navbar .navbar-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        width: max-content;
        max-width: calc(100% - 540px);
        margin: 0 !important;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transform: translate(-50%, -50%);
        overflow: visible;
    }

    .navbar .nav-item {
        position: relative;
        width: auto;
        overflow: visible;
    }

    .navbar .dropdown-menu {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        right: 0 !important;
        left: auto !important;
        inset: auto 0 auto auto !important;
        min-width: 260px;
        margin: 0 !important;
        transform: none !important;
        z-index: 3000;
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        margin-right: auto;
        margin-inline-start: auto;
        flex-shrink: 0;
    }
}

@media (max-width: 1399.98px) {

    .navbar {
        padding: 9px 0;
    }

        .navbar > .container,
        .navbar > .container-fluid {
            padding-right: 20px;
            padding-left: 20px;
        }

    .navbar-brand img {
        height: 42px;
        max-width: 190px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        max-height: calc(100vh - 70px);
        margin: 0;
        padding: 14px 20px 20px;
        overflow-x: hidden;
        overflow-y: auto;
        background: var(--fd-surface);
        border-top: 1px solid var(--fd-border);
        border-bottom: 1px solid var(--fd-border);
        box-shadow: 0 18px 45px rgba(23,67,131,.12);
    }

    .navbar-collapse.collapsing {
        overflow: hidden;
    }

    .navbar .navbar-nav {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        padding: 0;
        transform: none;
    }

    .navbar .nav-item {
        width: 100%;
        max-width: 100%;
    }

    .navbar .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        padding: 12px 12px !important;
        white-space: normal;
        text-align: right;
    }

    .navbar button.nav-link {
        text-align: right;
    }

    .navbar .dropdown-toggle::after {
        margin-right: auto;
        margin-left: 0;
    }

    .navbar .dropdown-menu {
        position: static !important;
        inset: auto !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 4px 0 10px !important;
        padding: 7px;
        transform: none !important;
        background: var(--fd-surface-2);
        border-radius: 13px;
        box-shadow: none;
    }

    .navbar .dropdown-item {
        width: 100%;
        white-space: normal;
        text-align: right;
        padding: 10px 14px;
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid var(--fd-border);
    }

        .navbar-actions .btn {
            flex: 1;
        }

    .hero {
        min-height: auto;
        padding-top: 140px;
    }

    .dashboard-window {
        margin-top: 55px;
        transform: none;
    }
}

@media (max-width: 991.98px) {

    .section {
        padding: 80px 0;
    }

    .section-sm {
        padding: 55px 0;
    }

    .hero {
        padding-top: 125px;
    }

    .dashboard-window {
        margin-top: 30px;
    }

    .image-shell img {
        min-height: 350px;
    }

    .floating-stat {
        right: 20px;
    }

    .cta-box {
        padding: 45px 35px;
    }
}

@media (max-width: 767.98px) {

    .section {
        padding: 70px 0;
    }

    .section-sm {
        padding: 45px 0;
    }

    .hero {
        padding: 115px 0 60px;
    }

    .hero-title {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 15px;
    }

    .page-hero {
        padding: 125px 0 65px;
    }

    .page-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-lead {
        font-size: 15px;
    }

    .cta-box {
        padding: 35px 23px;
        border-radius: 25px;
    }

    .floating-stat {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -35px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .price-card.featured {
        transform: none;
    }

    .navbar-brand img {
        max-width: 175px;
        height: 40px;
    }

    .navbar-collapse {
        padding: 12px 15px 18px;
    }

    .flow-arrow {
        display: none;
    }

    .image-shell:after {
        inset: 10px -8px -10px 8px;
    }

    .content-box {
        padding: 25px;
    }

    .scenario {
        padding: 20px;
    }

    .dashboard-window {
        border-radius: 24px;
        padding: 14px;
    }

        .dashboard-window:before {
            border-radius: 24px;
        }

    .db-card {
        padding: 12px;
    }

    .db-value {
        font-size: 20px;
    }

    .toast-custom {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        min-width: 0;
        max-width: none;
    }
}

@media (max-width: 575.98px) {

    .navbar {
        min-height: 64px;
        padding: 8px 0;
    }

        .navbar > .container,
        .navbar > .container-fluid {
            width: 100%;
            max-width: 100%;
            padding-right: 14px !important;
            padding-left: 14px !important;
        }

    .navbar-brand img {
        height: 37px;
        max-width: 165px;
    }

    .navbar-toggler {
        padding: 5px;
    }

    .navbar-toggler-icon {
        width: 28px;
        height: 28px;
    }

    .navbar-collapse {
        top: 100%;
        padding: 10px 14px 16px;
        max-height: calc(100dvh - 64px);
    }

    .navbar .nav-link {
        font-size: 14px;
        padding: 11px 10px !important;
    }

    .navbar .dropdown-menu {
        margin-bottom: 7px !important;
        padding: 6px;
    }

    .navbar .dropdown-item {
        font-size: 13px;
        padding: 9px 12px;
    }

    .navbar-actions {
        gap: 8px !important;
    }

        .navbar-actions .btn {
            padding-right: 12px;
            padding-left: 12px;
            font-size: 13px;
        }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding: 105px 0 50px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.4;
    }

    .hero-text {
        margin: 18px 0 25px;
    }

    .hero .btn-lg {
        width: 100%;
    }

    .hero-badges {
        gap: 6px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 9px;
    }

    .section {
        padding: 55px 0;
    }

    .section-sm {
        padding: 38px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-modern {
        padding: 22px;
        border-radius: 20px;
    }

    .metric-strip {
        padding: 20px 12px;
    }

    .metric-number {
        font-size: 23px;
    }

    .image-shell img {
        min-height: 280px;
        border-radius: 23px;
    }

    .image-shell:after {
        display: none;
    }

    .floating-stat {
        margin-right: 12px;
        margin-left: 12px;
        padding: 13px 15px;
        min-width: 0;
    }

        .floating-stat strong {
            font-size: 20px;
        }

    .cta-box {
        padding: 28px 20px;
    }

    .content-box {
        padding: 20px;
        border-radius: 20px;
    }

    .scenario {
        padding: 17px;
        border-radius: 20px;
    }

    .scenario-code {
        padding: 14px;
        font-size: 11px;
    }

    .dashboard-window {
        margin-top: 20px;
        padding: 12px;
        border-radius: 21px;
    }

        .dashboard-window:before {
            border-radius: 21px;
        }

    .window-header {
        padding-bottom: 12px;
    }

    .chart {
        height: 130px;
        gap: 5px;
    }

    .db-card {
        padding: 10px;
    }

    .db-value {
        font-size: 18px;
    }

    .vina-message {
        padding: 13px 14px;
        font-size: 13px;
    }

    footer {
        padding-top: 55px;
    }

    .footer-logo {
        max-width: 210px;
    }
}

@media (max-width: 420px) {

    .navbar-brand img {
        height: 35px;
        max-width: 150px;
    }

    .hero-title {
        font-size: 31px;
    }

    .eyebrow {
        font-size: 11px;
        padding: 6px 10px;
    }

    .section-title {
        font-size: 26px;
    }

    .page-title {
        font-size: 32px;
    }

    .dashboard-window .col-6 {
        min-width: 0;
    }

    .db-label {
        font-size: 10px;
    }

    .db-value {
        font-size: 17px;
    }

    .alert-mini {
        font-size: 9px;
    }
}

@media (max-width: 360px) {

    .navbar > .container,
    .navbar > .container-fluid {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .navbar-brand img {
        max-width: 138px;
        height: 33px;
    }

    .navbar-toggler-icon {
        width: 27px;
        height: 27px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }
}

.smaller {
    font-size: 0.8rem;
}