.pricing-main {
    max-width: 1120px;
    padding: 0;
    background: #fff;
}

.pricing-page {
    color: #17212f;
}

.pricing-page p {
    color: #344154;
}

.pricing-hero,
.pricing-plans,
.comparison-section,
.roadmap-section,
.pricing-final-cta {
    padding: clamp(22px, 4vw, 42px);
}

.pricing-hero {
    border-bottom: 1px solid #dfe8ee;
    background:
        linear-gradient(135deg, rgba(248, 251, 253, 0.98), rgba(255, 255, 255, 0.98)),
        #fff;
}

.pricing-kicker,
.pricing-plan-label {
    margin: 0 0 8px;
    color: #146c5c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-hero h1,
.comparison-section h2,
.roadmap-section h2 {
    margin: 0;
    color: #111827;
    line-height: 1.18;
}

.pricing-hero h1 {
    max-width: 760px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.pricing-intro {
    max-width: 820px;
    margin: 18px 0 0;
    font-size: clamp(1.02rem, 2.2vw, 1.2rem);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    border-bottom: 1px solid #e2ebf1;
}

.pricing-plan {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border: 1px solid #d8e3eb;
    border-radius: 8px;
    background: #f9fbfc;
}

.pricing-plan-featured {
    border-color: #8bc6aa;
    background: #f2fbf6;
    box-shadow: 0 14px 28px rgba(22, 108, 88, 0.1);
}

.pricing-plan h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 1.35rem;
    line-height: 1.22;
}

.pricing-price {
    margin: 0 0 12px;
    color: #0b4f92;
    font-size: 1.05rem;
    font-weight: 800;
}

.pricing-plan ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
}

.pricing-plan li {
    color: #27364a;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 6px;
    background: #0078d7;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.pricing-button:hover {
    background: #005bb5;
    color: #fff;
    text-decoration: none;
}

.pricing-button-secondary {
    border: 1px solid #b9cad9;
    background: #fff;
    color: #123d63;
}

.pricing-button-secondary:hover {
    border-color: #7aa6c9;
    background: #f7fbff;
    color: #123d63;
}

.pricing-button-support {
    border-color: #75b58f;
    background: #f6fff9;
    color: #17643a;
}

.pricing-button-support:hover {
    border-color: #237a4d;
    background: #eaf8f0;
    color: #0f5132;
}

.comparison-section {
    border-bottom: 1px solid #e2ebf1;
}

.comparison-header {
    max-width: 760px;
}

.comparison-header h2,
.roadmap-section h2 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.comparison-table-wrap {
    margin-top: 22px;
    overflow-x: auto;
    border: 1px solid #d8e3eb;
    border-radius: 8px;
    background: #fff;
}

.comparison-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 14px;
    border-bottom: 1px solid #e4edf3;
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    background: #edf4f8;
    color: #17212f;
    font-size: 0.92rem;
}

.comparison-table tbody th {
    width: 18%;
    color: #123d63;
    font-weight: 800;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.roadmap-section {
    border-bottom: 1px solid #e2ebf1;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.roadmap-grid article {
    padding: 18px;
    border: 1px solid #dce6ee;
    border-radius: 8px;
    background: #fbfcfd;
}

.roadmap-grid h3 {
    margin: 0 0 8px;
    color: #17212f;
    font-size: 1.06rem;
}

.roadmap-grid p {
    margin: 0;
}

.pricing-final-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

@media (max-width: 900px) {
    .pricing-plans,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pricing-hero,
    .pricing-plans,
    .comparison-section,
    .roadmap-section,
    .pricing-final-cta {
        padding: 20px 16px;
    }

    .pricing-button {
        width: 100%;
        box-sizing: border-box;
    }
}
