.page {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 108px 24px 86px;
}

.hero {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 760px;
}

.eyebrow {
    color: #5b4ee8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

h1 {
    margin: 0;
    color: #1a1730;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.hero p {
    margin: 16px auto 0;
    color: #6b6a8a;
    font-size: 18px;
    line-height: 1.55;
    max-width: 620px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.price-card {
    background: rgba(255,255,255,.94);
    border: 1px solid #e5e3f5;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(15,23,42,.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
}

.price-card.featured {
    border-color: #c9c3ff;
    box-shadow: 0 24px 70px rgba(91,78,232,.18);
}

.package-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eeedfe;
    color: #5b4ee8;
    font-weight: 900;
    margin-bottom: 18px;
}

.price-card h2 {
    margin: 0;
    color: #1a1730;
    font-size: 23px;
    line-height: 1.15;
}

.desc {
    margin: 12px 0 22px;
    color: #6b6a8a;
    line-height: 1.5;
    min-height: 68px;
}

.price {
    margin-top: auto;
    font-size: 34px;
    font-weight: 900;
    color: #1a1730;
    letter-spacing: -.04em;
}

.unit-price {
    margin-top: 6px;
    color: #6b6a8a;
    font-size: 14px;
    font-weight: 700;
}

.buy-btn {
    margin-top: 18px;
    width: 100%;
    border: 0;
    border-radius: 18px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(37,99,235,.26);
}

.buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37,99,235,.34);
}

.buy-btn:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.benefits {
    margin-top: 28px;
    background: rgba(255,255,255,.78);
    border: 1px solid #e5e3f5;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.benefits h2 {
    margin: 0 0 20px;
    color: #1a1730;
    font-size: 24px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.benefit {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
    min-height: 108px;
    border: 1px solid #ebe9f8;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    padding: 16px;
    color: #1a1730;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: #eeedfe;
    color: #5b4ee8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) saturate(100%) invert(36%) sepia(91%) saturate(1638%) hue-rotate(226deg) brightness(91%) contrast(98%);
}

.benefit-title {
    color: #1a1730;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.benefit-copy p {
    margin: 6px 0 0;
    color: #6b6a8a;
    font-size: 14px;
    line-height: 1.45;
}

.notice {
    display: none;
    margin: 18px auto 0;
    max-width: 760px;
    border: 1px solid #bfe7d8;
    background: #e1f5ee;
    color: #1d7b5d;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 800;
    text-align: center;
}

.notice.is-error {
    border-color: #fecaca;
    background: #fff1f2;
    color: #b91c1c;
}

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

    .hero {
        text-align: left;
    }

    h1 {
        font-size: 34px;
    }

    .page {
        padding: 96px 14px 38px;
    }

    .price-card {
        min-height: 0;
    }
}
