/* Unified Pricing Section */
.pricing-unified {
    max-width: 1000px;
    margin: 3rem auto 0;
    border: 1px solid #000;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Left side - Main pricing info */
.pricing-main-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-rate {
    padding-bottom: 2rem;
    border-bottom: 1px solid #000;
}

.rate-amount {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.rate-description {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 1rem;
}

.rate-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #000;
}

.pricing-conditions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.condition-item {
    font-size: 0.95rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

/* Right side - What's included */
.pricing-scope {
    display: flex;
    flex-direction: column;
}

.scope-title {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scope-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.scope-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.scope-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.scope-item-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.25rem;
}

.scope-item-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-unified {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1.5rem;
    }

    .rate-amount {
        font-size: 4rem;
    }

    .scope-title {
        margin-bottom: 1.5rem;
    }
}
