:root {
    --primary: #ff9f1c;
    --primary-dark: #e88900;

    --navy: #071426;
    --navy-light: #0d2038;

    --text-dark: #162033;
    --text-muted: #6d7788;

    --white: #ffffff;

    --light-bg: #f5f7fa;

    --border: #e7ebf0;

    --success: #19b56b;

    --shadow:
        0 20px 50px rgba(8, 20, 38, 0.10);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}


h1,
h2,
h3,
h4,
h5,
.brand-logo {
    font-family: 'Manrope', sans-serif;
}


.custom-navbar {
    background: rgba(7, 20, 38, 0.92);
    backdrop-filter: blur(15px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.brand-logo {
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}


.brand-logo:hover {
    color: #ffffff;
}


.brand-highlight {
    color: var(--primary);
}


.brand-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #071426;

    background:
        linear-gradient(
            135deg,
            #ffc15c,
            var(--primary)
        );
}


.navbar .nav-link {
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    margin: 0 7px;
}


.navbar .nav-link:hover {
    color: var(--primary);
}


.btn-primary-custom {
    border: none;
    color: #071426;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #ffc15c,
            var(--primary)
        );

    box-shadow:
        0 10px 30px rgba(255,159,28,0.25);
}


.btn-primary-custom:hover {
    color: #071426;

    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #ffb03a
        );
}


.hero-section {
    position: relative;
    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(255,159,28,0.17),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(42,96,165,0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071426 0%,
            #0d2038 55%,
            #081729 100%
        );
}


.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.06;

    background-image:
        linear-gradient(
            rgba(255,255,255,.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.4) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    border-radius: 100px;

    color: #ffd28d;

    background:
        rgba(255,159,28,0.10);

    border:
        1px solid rgba(255,159,28,0.25);

    font-size: 0.86rem;
    font-weight: 600;
}


.hero-title {
    font-size: clamp(3rem, 5.8vw, 5.8rem);
    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -0.05em;

    max-width: 780px;
}


.hero-title span {
    display: block;
    color: var(--primary);
}


.hero-description {
    max-width: 630px;

    margin-top: 28px;

    color: rgba(255,255,255,0.72);

    font-size: 1.14rem;
    line-height: 1.8;
}


.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    margin-top: 35px;
}


.btn-hero-outline {
    color: #ffffff;

    border:
        1px solid rgba(255,255,255,.28);

    background:
        rgba(255,255,255,.05);
}


.btn-hero-outline:hover {
    color: #ffffff;

    background:
        rgba(255,255,255,.12);
}


.hero-trust {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    color: rgba(255,255,255,.68);

    font-size: 0.88rem;
}


.hero-trust i {
    color: var(--success);
    margin-right: 5px;
}


.dashboard-preview {
    position: relative;

    border-radius: 24px;

    overflow: hidden;

    background: #f6f8fb;

    box-shadow:
        0 30px 90px rgba(0,0,0,.38);

    transform:
        perspective(1200px)
        rotateY(-3deg)
        rotateX(2deg);

    border:
        1px solid rgba(255,255,255,.15);
}


.dashboard-preview::before {
    content: "";

    position: absolute;
    inset: -2px;

    border-radius: 25px;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,159,28,.5),
            transparent 30%
        );
}


.dashboard-topbar {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 20px;

    background: #ffffff;

    border-bottom: 1px solid #edf0f3;
}


.mini-dot {
    width: 8px;
    height: 8px;

    display: inline-block;

    margin-right: 4px;

    border-radius: 50%;

    background: #ccd2da;
}


.dashboard-title {
    color: #263348;

    font-size: .85rem;
    font-weight: 700;
}


.dashboard-content {
    position: relative;
    z-index: 2;

    padding: 22px;

    color: var(--text-dark);
}


.metric-card {
    min-height: 125px;

    padding: 18px;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 6px 20px rgba(13,32,56,.06);
}


.metric-card span {
    color: #7d8795;

    font-size: .78rem;
}


.metric-card h4 {
    margin: 8px 0 4px;

    font-size: 1.35rem;

    font-weight: 800;
}


.metric-card small {
    color: #8a93a0;
}


.text-success-custom {
    color: var(--success) !important;
}


.progress-card,
.activity-card {
    padding: 18px;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 6px 20px rgba(13,32,56,.06);
}


.progress {
    height: 8px;
}


.progress-bar {
    background:
        linear-gradient(
            90deg,
            var(--primary),
            #ffc25b
        );
}


.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 0;

    border-top: 1px solid #edf0f3;
}


.activity-item:first-of-type {
    border-top: 0;
}


.activity-item small {
    display: block;

    color: #8a94a3;

    margin-top: 3px;
}


.activity-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    color: #704300;

    background: #fff3df;
}


.activity-icon.secondary {
    color: #175783;
    background: #e6f4ff;
}


.stats-section {
    padding: 34px 0;

    background: #ffffff;

    border-bottom: 1px solid var(--border);
}


.stats-section h3 {
    margin-bottom: 5px;

    font-size: 1.55rem;
    font-weight: 800;

    color: var(--navy);
}


.stats-section p {
    margin: 0;

    color: var(--text-muted);
}


.section-padding {
    padding: 105px 0;
}


.bg-light-custom {
    background: var(--light-bg);
}


.section-heading {
    max-width: 760px;

    margin: auto;
}


.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-dark);

    font-size: .79rem;
    font-weight: 800;

    letter-spacing: .15em;
}


.section-heading h2,
.display-heading {
    font-size: clamp(2.1rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -.04em;
}


.section-heading p {
    margin-top: 18px;

    color: var(--text-muted);

    font-size: 1.05rem;

    line-height: 1.75;
}


.feature-card {
    height: 100%;

    padding: 34px;

    border-radius: 20px;

    background: #ffffff;

    border:
        1px solid rgba(12,30,50,.07);

    box-shadow:
        0 8px 30px rgba(10,30,50,.04);

    transition:
        .3s ease;
}


.feature-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(10,30,50,.10);

    border-color:
        rgba(255,159,28,.35);
}


.feature-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 16px;

    color: #744700;

    background:
        linear-gradient(
            135deg,
            #fff2d9,
            #ffe1ae
        );

    font-size: 1.3rem;
}


.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
}


.feature-card p {
    margin-bottom: 0;

    color: var(--text-muted);

    line-height: 1.75;
}


.solution-list {
    margin-top: 35px;
}


.solution-item {
    display: flex;
    gap: 17px;

    margin-bottom: 25px;
}


.solution-item > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    color: #754600;

    background: #fff3df;
}


.solution-item h5 {
    margin-bottom: 5px;

    font-weight: 800;
}


.solution-item p {
    margin: 0;

    color: var(--text-muted);
}


.project-overview-card {
    max-width: 470px;

    margin-left: auto;

    padding: 38px;

    border-radius: 24px;

    background: #ffffff;

    box-shadow: var(--shadow);

    border: 1px solid var(--border);
}


.small-label {
    font-size: .75rem;

    letter-spacing: .12em;

    color: #8c96a5;

    font-weight: 700;
}


.project-overview-card h3 {
    margin-top: 10px;

    font-weight: 800;
}


.project-progress-circle {
    width: 155px;
    height: 155px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 28px auto;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--primary) 0 68%,
            #edf0f4 68% 100%
        );

    position: relative;
}


.project-progress-circle::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: #ffffff;
}


.project-progress-circle div {
    position: relative;
    z-index: 2;

    text-align: center;
}


.project-progress-circle strong {
    display: block;

    font-size: 1.8rem;

    font-weight: 800;
}


.project-progress-circle span {
    color: var(--text-muted);

    font-size: .8rem;
}


.overview-item {
    display: flex;
    justify-content: space-between;

    padding: 15px 0;

    border-top: 1px solid #edf0f3;
}


.overview-item span {
    color: var(--text-muted);
}


.dashboard-section {
    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,159,28,.16),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #071426,
            #0b213b
        );
}


.dashboard-section .section-heading p {
    color: rgba(255,255,255,.65);
}


.dashboard-section .section-label {
    color: #ffc15d;
}


.insight-card {
    height: 100%;

    padding: 35px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(10px);
}


.insight-card i {
    margin-bottom: 22px;

    color: var(--primary);

    font-size: 1.8rem;
}


.insight-card h4 {
    font-weight: 800;
}


.insight-card p {
    margin-bottom: 0;

    color: rgba(255,255,255,.65);

    line-height: 1.75;
}


.why-card {
    padding: 55px;

    border-radius: 28px;

    color: #ffffff;

    background:
        linear-gradient(
            140deg,
            #0c2039,
            #071426
        );

    box-shadow: var(--shadow);
}


.why-number {
    color: var(--primary);

    font-size: 5.5rem;

    font-weight: 800;

    letter-spacing: -.08em;
}


.why-card h3 {
    font-size: 2rem;

    font-weight: 800;
}


.why-card p {
    color: rgba(255,255,255,.65);

    line-height: 1.8;
}


.check-list {
    margin-top: 30px;
}


.check-list div {
    margin-bottom: 17px;

    font-weight: 600;
}


.check-list i {
    margin-right: 10px;

    color: var(--success);
}


.cta-section {
    padding: 50px 0 90px;
}


.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 55px;

    border-radius: 26px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #d97800,
            #ff9f1c
        );

    box-shadow:
        0 30px 60px rgba(255,159,28,.20);
}


.cta-box .section-label {
    color: #fff3de;
}


.cta-box h2 {
    max-width: 720px;

    font-size: clamp(2rem, 4vw, 3.2rem);

    font-weight: 800;

    letter-spacing: -.04em;
}


.cta-box p {
    max-width: 700px;

    margin-bottom: 0;

    color: rgba(255,255,255,.88);
}


.cta-action {
    flex-shrink: 0;
}


.footer {
    padding: 70px 0 30px;

    color: #ffffff;

    background: #071426;
}


.footer-description {
    max-width: 430px;

    color: rgba(255,255,255,.58);

    line-height: 1.75;
}


.footer h6 {
    margin-bottom: 20px;

    font-weight: 700;
}


.footer a {
    display: block;

    margin-bottom: 12px;

    color: rgba(255,255,255,.58);

    text-decoration: none;
}


.footer a:hover {
    color: var(--primary);
}


.footer hr {
    margin: 45px 0 25px;

    border-color:
        rgba(255,255,255,.10);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(255,255,255,.48);

    font-size: .86rem;
}


@media (max-width: 991px) {

    .hero-section {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .min-vh-100 {
        min-height: auto !important;
    }

    .dashboard-preview {
        transform: none;
    }

    .project-overview-card {
        margin-left: 0;
        max-width: 100%;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 576px) {

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

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

    .hero-actions .btn {
        width: 100%;
    }

    .section-padding {
        padding: 75px 0;
    }

    .feature-card {
        padding: 27px;
    }

    .why-card {
        padding: 35px;
    }

    .cta-box {
        padding: 35px 28px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}