* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 100vh;
    color: #0f172a;
    padding: 24px;
}

.navbar {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto 28px auto;
    background: rgba(255,255,255,0.96);
    padding: 14px 22px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

.navbar-logo a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none !important;
}

.navbar-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.navbar-links a {
    color: #0f172a !important;
    text-decoration: none !important;
    font-weight: bold;
    padding: 9px 12px;
    border-radius: 10px;
}

.navbar-links a:hover {
    background: #e5e7eb;
}

.premium-page {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.hero,
.premium-card,
.stat-card,
.container,
.card,
.proiect-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.hero {
    padding: 55px;
    margin-bottom: 28px;
}

.hero h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-buttons a,
.premium-link,
.link-center,
button {
    display: inline-block;
    background: #2563eb;
    color: white !important;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none !important;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: center;
}

.hero-buttons a:hover,
.premium-link:hover,
.link-center:hover,
button:hover {
    background: #1d4ed8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.stat-card {
    padding: 25px;
}

.stat-card span {
    font-size: 32px;
}

.stat-card h3 {
    margin: 12px 0 8px;
}

.stat-card p {
    color: #475569;
    line-height: 1.5;
}

.premium-card {
    padding: 35px;
    margin-bottom: 28px;
}

.premium-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.premium-card p {
    font-size: 17px;
    margin-bottom: 16px;
}

.premium-card.accent {
    background: linear-gradient(135deg, #2563eb, #16a34a);
    color: white;
}

.premium-card.accent h2,
.premium-card.accent p {
    color: white;
}

.premium-link.dark {
    background: white;
    color: #0f172a !important;
}

.container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 40px;
}

.card,
.proiect-card {
    background: #f8fafc;
    padding: 24px;
    margin-bottom: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 28px;
}

h2 {
    font-size: 28px;
    margin: 22px 0 14px;
}

h3 {
    margin: 16px 0 10px;
}

p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
}

input,
select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    margin-bottom: 16px;
    font-size: 16px;
}

button,
.link-center {
    width: 100%;
    margin-top: 12px;
}

.progres-wrapper {
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin: 12px 0 20px;
}

.progres-bar {
    background: linear-gradient(90deg, #2563eb, #16a34a);
    color: white;
    padding: 9px;
    text-align: center;
    font-weight: bold;
}

.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 18px;
}

.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 18px;
}

hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 25px 0;
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
    }

    .navbar-links {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding: 32px;
    }

    .hero h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .container,
    .hero,
    .premium-card {
        padding: 24px;
    }

    h1 {
        font-size: 32px;
    }
}