.landing-modern {
    --landing-primary: var(--base-1, #ff6602);
    --landing-secondary: var(--base-2, #ff914d);
    --landing-surface: #ffffff;
    --landing-surface-soft: rgba(255, 255, 255, 0.65);
    --landing-border: rgba(15, 23, 42, 0.08);
    --landing-text: #0f172a;
    --landing-text-light: rgba(255, 255, 255, 0.85);
    background: #f5f7fb;
    color: var(--landing-text);
    font-feature-settings: 'ss01' on, 'ss02' on;
}

.landing-modern header {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-top: 1.5rem;
}

.landing-modern header .container,
.landing-modern header .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.landing-modern .navbar-bottom {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    position: relative;
    transition: padding 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease;
}

.landing-modern .navbar-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 3rem;
    min-width: 0;
}

.landing-modern .navbar-bottom .logo {
    display: flex;
    align-items: center;
    height: 50px;
    max-width: 220px;
}

.landing-modern .navbar-bottom .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
    transition: transform 0.25s ease;
}

.landing-modern .navbar-bottom .menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    flex: 0 1 auto;
    min-width: 0;
    margin-inline-start: auto;
    transition: all ease 0.3s;
    transform-origin: top;
}

.landing-modern .navbar-bottom .menu li a {
    color: var(--landing-text);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.landing-modern .navbar-bottom .menu li a.active,
.landing-modern .navbar-bottom .menu li a:hover {
    color: var(--landing-primary);
}

.landing-modern .nav-toggle {
    flex-shrink: 0;
    display: none;
    align-self: center;
    margin-inline-start: 1.5rem !important;
    margin-inline-end: 0 !important;
}

.landing-modern .landing-modern__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-inline-start: auto;
    flex-shrink: 0;
}

.landing-modern .landing-modern__actions .cmn--btn {
    background: linear-gradient(135deg, #ff6602, #ff914d) !important;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 20px 45px rgba(255, 102, 2, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.landing-modern .landing-modern__actions .cmn--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(255, 102, 2, 0.45);
}

.landing-modern .landing-modern__actions .dropdown--btn {
    white-space: nowrap;
}

.hero-modern {
    margin-top: 2.5rem;
    margin-bottom: 4rem;
    padding: clamp(3.5rem, 5vw + 2rem, 6rem) 0;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 102, 2, 0.08), rgba(255, 145, 77, 0.08)),
        var(--landing-surface);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
}

.hero-modern::before {
    content: "";
    position: absolute;
    inset: -20% 10% auto -10%;
    height: 70%;
    background: radial-gradient(closest-side, rgba(255, 102, 2, 0.25), transparent 70%);
    filter: blur(20px);
    opacity: 0.85;
}

.hero-modern::after {
    content: "";
    position: absolute;
    inset: auto -20% -25% 40%;
    height: 60%;
    background: radial-gradient(closest-side, rgba(255, 153, 51, 0.25), transparent 70%);
    filter: blur(30px);
    opacity: 0.7;
}

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

.hero-modern__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 102, 2, 0.12);
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(204, 66, 0, 0.95);
    font-weight: 600;
}

.hero-modern__eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 115, 24, 1), rgba(255, 153, 51, 1));
    box-shadow: 0 0 0 6px rgba(255, 115, 24, 0.2);
}

.hero-modern__title {
    font-size: clamp(2.6rem, 4vw + 1rem, 3.8rem);
    line-height: 1.15;
    margin: 1.6rem 0 1.2rem;
    color: var(--landing-primary);
    font-weight: 700;
}

.hero-modern__subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.8);
    max-width: 540px;
}

.hero-modern__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0 2.5rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(20px);
}

.hero-modern__brand span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.6);
}

.hero-modern__brand img {
    height: 32px;
    width: auto;
}

.hero-modern__cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.hero-modern__cta .cmn--btn {
    border-radius: 999px;
    box-shadow: 0 20px 45px rgba(255, 102, 2, 0.25);
    padding: 0.9rem 2.4rem;
    font-weight: 600;
}

.hero-modern__cta .cmn--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(255, 102, 2, 0.32);
}

.hero-modern__ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.78rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 102, 2, 0.3);
    color: rgba(204, 66, 0, 0.95);
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.85);
}

.hero-modern__ghost:hover {
    background: rgba(255, 102, 2, 0.08);
    border-color: rgba(255, 102, 2, 0.45);
    color: rgba(204, 66, 0, 1);
}

.hero-modern__ghost-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.hero-modern__ghost:hover .hero-modern__ghost-icon {
    transform: translateX(6px);
}

.hero-modern__insights {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hero-modern__insight {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: var(--landing-surface-soft);
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.hero-modern__insight-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 0.3rem;
    background: linear-gradient(135deg, rgba(255, 102, 2, 1), rgba(255, 153, 51, 1));
    box-shadow: 0 0 0 5px rgba(255, 115, 24, 0.18);
    flex-shrink: 0;
}

.hero-modern__insight-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--landing-primary);
    margin-bottom: 0.35rem;
}

.hero-modern__insight-sub {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.65);
    display: block;
    line-height: 1.5;
}

.hero-modern__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 1.5rem 1rem;
}

.hero-modern__mockup {
    position: relative;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(255, 102, 2, 0.12), rgba(255, 145, 77, 0.15));
    border: 2px solid rgba(255, 102, 2, 0.25);
    box-shadow: 0 40px 70px rgba(255, 102, 2, 0.22);
    overflow: hidden;
    padding: 2.5rem 2.4rem;
    width: clamp(360px, 40vw, 540px);
    transition: transform 0.35s ease;
}

.hero-modern__mockup::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 102, 2, 0.15), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-modern__mockup:hover {
    transform: translateY(-8px);
}

.hero-modern__image {
    width: 100%;
    height: auto;
}

.hero-modern__floating-stack {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    min-width: clamp(260px, 26vw, 340px);
}

.hero-modern__floating-card {
    position: relative;
    padding: 1.2rem 1.4rem;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-modern__floating-card--bottom {
    background: linear-gradient(135deg, rgba(255, 102, 2, 0.95), rgba(255, 132, 0, 0.95));
}

.hero-modern__floating-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.3);
}


.hero-modern__floating-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    word-break: break-word;
}

.hero-modern__floating-sub {
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.2rem;
    word-break: break-word;
}

.hero-modern__floating-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    margin-bottom: 0.9rem;
    background: linear-gradient(135deg, rgba(255, 102, 2, 0.9), rgba(255, 153, 51, 0.9));
    box-shadow: 0 12px 25px rgba(255, 102, 2, 0.3);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.landing-modern .navbar-bottom.is-shrunk {
    padding: 0.55rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.landing-modern .navbar-bottom.is-shrunk .logo {
    height: 46px;
}

.landing-modern .navbar-bottom.is-shrunk .logo img {
    transform: scale(0.92);
}

@media (max-width: 1199.98px) {
    .landing-modern .navbar-bottom {
        padding: 0.85rem 1.5rem;
        border-radius: 10px;
    }

    .landing-modern .navbar-bottom-wrapper {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .landing-modern .navbar-bottom .menu {
        margin-inline-start: 0;
        flex-wrap: wrap;
    }

    .hero-modern {
        padding: 3.5rem 0;
        border-radius: 28px;
    }

    .hero-modern__floating-card {
        grid-column: 1 / -1;
        grid-row: auto;
        width: 100%;
        margin-top: 1.2rem;
    }

    .hero-modern__visual {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .hero-modern__mockup {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .landing-modern header {
        padding-top: 1rem;
    }

    .landing-modern .navbar-bottom {
        border-radius: 8px;
        padding: 0.75rem 1.25rem;
    }

    .landing-modern .navbar-bottom-wrapper {
        flex-wrap: nowrap;
        column-gap: 1rem;
    }

    .landing-modern .navbar-bottom .menu {
        order: 3;
        flex: 0 0 auto;
        width: auto;
        justify-content: flex-start;
        gap: 0.9rem;
        margin-inline-start: 0;
        position: absolute;
        top: 100%;
        inset-inline-start: 0;
        width: 100%;
        padding: 1.25rem 1.5rem;
        background: #ffffff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
        transform: scaleY(0);
        pointer-events: none;
        opacity: 0;
    }
    .landing-modern .navbar-bottom .menu.active {
        transform: scaleY(1);
        pointer-events: auto;
        opacity: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 0.5rem;
    }

    .landing-modern .landing-modern__actions {
        order: 3;
        margin-inline-start: auto;
        gap: 0.45rem;
    }
    .landing-modern .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 20px;
        margin-inline-start: 0.75rem !important;
        margin-inline-end: 0 !important;
        order: 2;
    }

    .landing-modern .navbar-bottom .logo {
        max-width: 180px;
    }

    .landing-modern .landing-modern__actions .cmn--btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .landing-modern .navbar-bottom .menu li a {
        font-size: 0.95rem;
    }

    .hero-modern__title {
        font-size: clamp(2.2rem, 5.5vw, 2.8rem);
    }

    .hero-modern__brand {
        margin: 1.6rem 0 2rem;
    }
}

@media (max-width: 767.98px) {
    .landing-modern {
        background: #f8f9fe;
    }

    .landing-modern .navbar-bottom {
        padding: 0.65rem 1rem;
    }

    .landing-modern .navbar-bottom-wrapper {
        justify-content: space-between;
        gap: 0.6rem;
    }

    .landing-modern .landing-modern__actions {
        flex-wrap: nowrap;
        gap: 0.45rem;
    }

    .landing-modern .navbar-bottom .logo {
        max-width: 150px;
    }

    .landing-modern .landing-modern__actions .cmn--btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }

    .landing-modern .landing-modern__actions .dropdown--btn {
        font-size: 0.82rem;
    }

    .landing-modern .navbar-bottom .menu {
        flex: 0 0 auto;
        gap: 0.65rem;
        font-size: 0.88rem;
        margin-inline-start: 0;
        transform: scaleY(0);
        pointer-events: none;
        opacity: 0;
    }
    .landing-modern .navbar-bottom .menu.active {
        transform: scaleY(1);
        pointer-events: auto;
        opacity: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding-top: 0.45rem;
    }
    .landing-modern .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 18px;
        margin-inline-start: 0.65rem !important;
        margin-inline-end: 0 !important;
        order: 2;
    }

    .hero-modern {
        margin-top: 2rem;
        padding: 3rem 0;
        border-radius: 24px;
    }

    .hero-modern__insights {
        grid-template-columns: 1fr;
    }

    .hero-modern__cta {
        gap: 0.75rem;
    }

    .hero-modern__mockup {
        padding: 2rem 1.6rem;
    }

    .hero-modern__floating-card {
        padding: 1rem 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .landing-modern .navbar-bottom-wrapper {
        gap: 0.5rem;
    }

    .landing-modern .navbar-bottom .logo {
        width: 60px;
        max-width: 130px;
        margin-inline-end: 10px;
    }

    .landing-modern .landing-modern__actions {
        gap: 0.35rem;
    }

    .landing-modern .landing-modern__actions .cmn--btn {
        padding: 0.32rem 0.7rem;
        font-size: 0.72rem;
    }

    .landing-modern .landing-modern__actions .dropdown--btn {
        font-size: 0.78rem;
        padding: 0.28rem 0.6rem;
    }

    .landing-modern .navbar-bottom .menu {
        flex: 0 0 auto;
        gap: 0.5rem;
        font-size: 0.82rem;
        margin-inline-start: 0;
        transform: scaleY(0);
        pointer-events: none;
        opacity: 0;
    }
    .landing-modern .navbar-bottom .menu.active {
        transform: scaleY(1);
        pointer-events: auto;
        opacity: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        padding-top: 0.4rem;
    }

    .landing-modern .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 18px;
        margin-inline-start: 0.6rem !important;
        margin-inline-end: 0 !important;
        order: 2;
    }
}
