/* Price Page Styles */
.price-page {
    line-height: 1.8;
    color: #333;
}

.price-hero {
    background: #000;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.price-hero__title {
    font-size: 2.5rem;
}

.price-content {
    padding: 60px 20px 100px;
}

.price-content__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Price Cards */
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.price-card {
    border: 1px solid #eee;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.price-card.highlight {
    border: 2px solid #000;
    background: #fafafa;
}

.price-card__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.price-card__amount {
    margin: 20px 0;
    font-weight: bold;
}

.price-card__amount .number {
    font-size: 3rem;
    line-height: 1;
}

.price-card__notes {
    margin-top: auto;
    text-align: left;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.price-card__notes li {
    margin-bottom: 8px;
    list-style: disc;
    margin-left: 20px;
}

/* Rule Block */
.rule-block {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 40px;
    border-radius: 8px;
}

.rule-block__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.rule-item {
    margin-bottom: 30px;
}

.rule-item h3 {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

.rule-item p {
    font-size: 0.95rem;
    color: #666;
}

.rule-item strong {
    color: #000;
    text-decoration: underline;
}

/* CTA */
.price-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .price-grid { grid-template-columns: 1fr; }
}