.hero-sectiune-principala {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
    color: #ffffff;
}
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-title-highlight {
    display: block;
    color: #3b82f6;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 750px;
    margin-bottom: 30px;
}
.hero-benefits-wrapper {
    margin-bottom: 35px;
    width: 100%;
}
.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.hero-benefits-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
}
.hero-benefits-icon svg {
    width: 18px;
    height: 18px;
    stroke: #22c55e;
    stroke-width: 3;
}
.hero-cta-wrapper {
    width: 100%;
    margin-bottom: 40px;
}
.hero-trust-divider {
    width: 100%;
    max-width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}
.hero-trust-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.trust-item-nou {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}
.icon-trust-check {
    width: 20px;
    height: 20px;
    fill: #3b82f6;
}
.icon-trust-star {
    width: 20px;
    height: 20px;
    fill: #facc15;
}
@media (max-width: 640px) {
    .hero-benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-trust-wrapper {
        flex-direction: column;
        gap: 12px;
    }
}