﻿.main-header {
    background: linear-gradient( 90deg, #5ea769, #7cc48a );
    padding: 16px 0;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.system-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.system-subtitle {
    font-size: 14px;
    opacity: .9;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.custom-btn {
    min-width: 120px;
    border-radius: 12px;
    font-weight: 600;
}
.landing-section {
    padding: 70px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--third-color);
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}
@media (max-width: 480px) {
    .hero-title {
        line-height: 1.4;
        margin-bottom: 16px;
    }
}
.hero-title {
    font-size: clamp(17px, 5vw, 30px);
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--dark-color);
}

.hero-text {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.info-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .info-card h3 {
        margin-bottom: 25px;
        color: var(--dark-color);
    }

    .info-card ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .info-card li {
        padding: 14px 0;
        border-bottom: 1px solid #eee;
    }
.dashboard-welcome-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .dashboard-welcome-card h2 {
        font-weight: 700;
        margin-bottom: 15px;
    }
