/* ISO pricing page — content layout; nav/footer/base use app.css */

.pricing-page header {
    padding: 80px 0 40px;
    text-align: center;
}

.pricing-page header .lede {
    font-size: 1.16rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-page header h1 {
    font-size: clamp(2.5rem, 5.4vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.pricing-page .aud {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    background: var(--green-mist);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 6px;
}

.pricing-page .aud a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-soft);
    padding: 9px 20px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s;
}

.pricing-page .aud a.on {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 12px rgba(61, 190, 154, 0.3);
}

.pricing-page section {
    padding: 50px 0 72px;
}

.pricing-page .sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-page .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 920px) {
    .pricing-page .plans {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

.pricing-page .plan {
    border-radius: 22px;
    padding: 36px 32px;
}

.pricing-page .plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(30, 42, 58, 0.1);
}

.pricing-page .plan.featured {
    box-shadow: 0 20px 54px rgba(61, 190, 154, 0.18);
}

.pricing-page .plan h3 {
    font-size: 1.4rem;
}

.pricing-page .plan .tagline {
    font-size: 0.9rem;
    color: var(--slate-soft);
    margin-bottom: 24px;
    min-height: 60px;
}

.pricing-page .plan .price {
    font-size: 3rem;
}

.pricing-page .plan .terms {
    font-size: 0.86rem;
    margin: 12px 0 0;
    min-height: 54px;
}

.pricing-page .plan-divider {
    height: 1px;
    background: var(--line-soft);
    margin: 18px 0 24px;
}

.pricing-page .plan ul {
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-page .plan li {
    font-size: 0.92rem;
    gap: 11px;
}

.pricing-page .margin {
    background: var(--slate);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 860px) {
    .pricing-page .margin {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }
}

.pricing-page .margin::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(61, 190, 154, 0.16), transparent 70%);
    top: -90px;
    right: -70px;
}

.pricing-page .margin .sec-tag {
    color: var(--green-bright);
    position: relative;
    z-index: 1;
}

.pricing-page .margin h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.pricing-page .margin p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.pricing-page .calc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.pricing-page .calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.75);
}

.pricing-page .calc-row:last-child {
    border-bottom: none;
}

.pricing-page .calc-row .v {
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
    color: #fff;
}

.pricing-page .calc-row.total {
    margin-top: 6px;
    padding-top: 18px;
}

.pricing-page .calc-row.total .l {
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
}

.pricing-page .calc-row.total .v {
    color: var(--green-bright);
    font-size: 1.4rem;
}

.pricing-page .inc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 860px) {
    .pricing-page .inc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pricing-page .inc {
        grid-template-columns: 1fr;
    }
}

.pricing-page .inc-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
}

.pricing-page .inc-item .ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pricing-page .inc-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 5px;
}

.pricing-page .inc-item p {
    font-size: 0.85rem;
    color: var(--slate-soft);
}

.pricing-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 760px) {
    .pricing-page .faq-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-page .faq {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 28px;
}

.pricing-page .faq h4 {
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 8px;
}

.pricing-page .faq p {
    font-size: 0.92rem;
    color: var(--slate-soft);
}

.pricing-page .faq a {
    color: var(--green-deep);
    font-weight: 600;
    text-decoration: none;
}

.pricing-page .faq a:hover {
    text-decoration: underline;
}

.pricing-page .cta-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pricing-page .btn-ghost-white {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
}

.pricing-page .btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
}
