.pricing-comparison {
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
font-family: 'Inter', sans-serif;
}
.section-title {
text-align: center;
font-size: 2rem;
color: #2d3748;
margin-bottom: 0.5rem;
}
.section-subtitle {
text-align: center;
color: #718096;
margin-bottom: 2rem;
}
.pricing-table {
display: grid;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pricing-header {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
background: #4a5568;
color: white;
font-weight: 600;
padding: 1rem;
}
.pricing-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
padding: 1rem;
align-items: center;
border-bottom: 1px solid #edf2f7;
}
.highlight {
background: #f7fafc;
}
.best-value {
background: #ebf8ff;
position: relative;
}
.best-value::before {
content: "САМАЯ ВЫГОДНАЯ";
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
background: #3182ce;
color: white;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.7rem;
}
.lessons-col {
font-weight: 500;
}
.tariff-col {
text-align: center;
padding: 0.5rem;
}
.standard { background: #f0fff4; }
.optimum { background: #fffaf0; }
.premium { background: #f8f5ff; }
.savings {
display: block;
font-size: 0.8rem;
color: #38a169;
margin-top: 4px;
}
.pricing-cta {
text-align: center;
margin-top: 2rem;
}
.cta-button {
background: #4299e1;
color: white;
border: none;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.cta-button:hover {
background: #3182ce;
}
.guarantee {
color: #718096;
font-size: 0.9rem;
margin-top: 1rem;
}