.pricing-hero {
    position: relative;
    padding: 34px 0 92px;
    overflow: hidden;
    background: transparent;
}

.pricing-hero::after {
    position: absolute;
    right: -130px;
    bottom: -210px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    content: "";
}

.pricing-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-hero h1 {
    margin: 18px auto 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.pricing-hero__content > p {
    max-width: 760px;
    margin: 0 auto;
    color: #475569;
    font-size: 20px;
    line-height: 1.65;
}

.pricing-hero__facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.pricing-hero__facts span {
    padding: 9px 14px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 750;
}

.pricing-hero .button {
    min-height: 50px;
    padding: 14px 23px;
}

.pricing-section {
    padding: 92px 0;
}

.pricing-section--light {
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.pricing-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 20px 58px rgba(15, 23, 42, 0.07);
}

.pricing-card--featured {
    border-color: rgba(245, 158, 11, 0.72);
    box-shadow: 0 24px 68px rgba(245, 158, 11, 0.14);
}

.pricing-card--free {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-card__badge {
    align-self: flex-start;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff7ed;
    color: #b45309;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.45;
}

.pricing-card h3 {
    margin: 22px 0 10px;
    font-size: 23px;
    line-height: 1.25;
}

.pricing-card__description {
    min-height: 75px;
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.pricing-card__price {
    margin-top: 24px;
    color: #172554;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.pricing-card__period {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    margin: 27px 0 30px;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    position: relative;
    padding-left: 27px;
    color: #334155;
    font-size: 14px;
    line-height: 1.55;
}

.pricing-card li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #d97706;
    content: "✓";
    font-weight: 900;
}

.pricing-card .button {
    margin-top: auto;
}

.pricing-card__more {
    align-self: center;
    margin-top: 15px;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.pricing-card__more:hover {
    text-decoration: underline;
}

.pricing-addon {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 60px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.pricing-addon h2 {
    margin: 12px 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.pricing-addon__content > p {
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.72;
}

.pricing-addon__features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.pricing-addon__features span {
    padding: 8px 11px;
    border-radius: 9px;
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.pricing-addon__offer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border-radius: 22px;
    background: #172554;
    color: #ffffff;
}

.pricing-addon__offer strong {
    color: #fbbf24;
    font-size: 43px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-addon__offer span {
    margin-top: 12px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-addon__offer .button {
    margin-top: 24px;
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.pricing-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.pricing-table th:first-child {
    width: 50%;
    text-align: left;
}

.pricing-table thead th {
    background: #f8fafc;
    color: #172554;
    font-size: 14px;
    font-weight: 850;
}

.pricing-table tbody th {
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.pricing-table tbody td {
    color: #64748b;
    font-size: 14px;
}

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

.pricing-table__yes {
    color: #047857;
    font-weight: 800;
}

.pricing-table__no {
    color: #94a3b8;
    font-weight: 700;
}

.pricing-table-note {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
}

.pricing-final-cta {
    padding-top: 92px;
}

@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

    .pricing-card__description {
        min-height: 0;
    }

    .pricing-addon {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 620px) {
    .pricing-hero {
        padding: 24px 0 68px;
    }

    .pricing-hero .feature-breadcrumbs {
        margin-bottom: 30px;
    }

    .pricing-hero h1 {
        font-size: 39px;
        line-height: 1.06;
    }

    .pricing-hero__content > p {
        font-size: 17px;
        line-height: 1.6;
    }

    .pricing-hero__facts {
        align-items: stretch;
        flex-direction: column;
    }

    .pricing-hero__facts span {
        text-align: center;
    }

    .pricing-hero .button {
        width: 100%;
    }

    .pricing-section {
        padding: 68px 0;
    }

    .pricing-card {
        padding: 25px 22px;
        border-radius: 22px;
    }

    .pricing-card__price {
        font-size: 40px;
    }

    .pricing-addon {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .pricing-addon__offer {
        padding: 25px 22px;
    }

    .pricing-addon__offer strong {
        font-size: 39px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 16px 18px;
    }

    .pricing-final-cta {
        padding-top: 68px;
    }
}
