﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

.bg-ine {
    background: #0d3a5e !important;
}

.navbar {
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.hero {
    min-height: calc(100vh - 181px);
    display: flex;
    align-items: center;
    position: relative;
}

.hero ul {
    padding-left: 40px;
    margin-bottom: 1rem;
}

.hero p,
.hero li {
    text-align: justify;
    text-align-last: left;
    margin-bottom: 8px;
}

.hero-badge {
    background: rgba(16,87,162,.12);
    color: #0abfc8;
    border: 1px solid rgba(16,87,162,.18);
    border-radius: 50px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

    .hero-title span {
        color: #0D6EFD;
    }

.hero-text {
    color: #5c697b;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 580px;
}

.btn-main {
    border: none;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(99,102,241,.35);
}

    .btn-main:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(99,102,241,.45);
    }

.btn-outline-custom {
    margin-left: 15px;
    transition: .3s;
}

    .btn-outline-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(99,102,241,.45);
    }

.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(18px);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.mockup {
    background: #111827;
    border-radius: 18px;
    padding: 20px;
}

.mockup-top {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .dot.red {
        background: #ef4444;
    }

    .dot.yellow {
        background: #f59e0b;
    }

    .dot.green {
        background: #10b981;
    }

.dashboard-box {
    background: linear-gradient(135deg,#1e293b,#334155);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat-item {
    background: rgba(255,255,255,.05);
    padding: 15px;
    border-radius: 15px;
    width: 32%;
    text-align: center;
}

.features {
    padding: 100px 0;
}

.feature-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    padding: 35px;
    transition: .3s;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.08);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#3b82f6,#8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 30px 0;
    text-align: center;
    color: #94a3b8;
}

@media(max-width:991px) {
    .hero {
        text-align: center;
    }

        .hero h1 {
            font-size: 2.8rem;
        }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-outline-custom {
        margin-left: 0;
    }

    .hero-card {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .bg-ine .container,
    .bg-ine .container .text-end {
        text-align: center !important;
    }
}
