/* Onorarii Hero */
.onorarii-hero {
    background-color: #0a0a0a;
    padding: 4rem 1rem 3rem;
    color: white;
}

.onorarii-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.onorarii-note {
    font-size: 1.05rem;
    color: var(--primary-color);
    line-height: 1.8;
}

.onorarii-note strong {
    color: white;
}

/* Grid Section */
.onorarii-grid-section {
    background-color: #111111;
    padding: 3rem 0 4rem;
    color: white;
}

/* Price Item */
.price-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-item:last-child {
    border-bottom: none;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    flex: 1;
}

.price-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA */
.onorarii-cta {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.onorarii-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.btn-onorarii-wa {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-onorarii-wa:hover {
    background-color: #1ebe5d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Mobile */
@media (max-width: 767.98px) {
    .onorarii-title {
        font-size: 2rem;
    }

    .onorarii-note {
        font-size: 0.95rem;
    }

    .price-name {
        font-size: 0.82rem;
    }

    .price-value {
        font-size: 0.88rem;
    }

    .price-header {
        flex-direction: column;
        gap: 0.15rem;
    }
}
