.pricing-examples {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);

    font-size: .95rem;
    line-height: 1.6;

    color: var(--text-dim);
}

.pricing-examples strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--text);
}

.platform-cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.platform-cost-grid article {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--apple-surface);
}

.cost-bars {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 18px;
    background: #07101f;
    color: #fff;
}

.cost-row {
    display: grid;
    grid-template-columns: 220px 1fr 120px;
    gap: 1rem;
    align-items: center;
}

.cost-row div {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    overflow: hidden;
}

.cost-row b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--apple-accent), #fff);
}

.cost-row strong {
    text-align: right;
}

.platform-note {
    margin-top: 1rem;
    color: var(--text-dim);
}


.estimate-share-url {
    width: 100%;
    padding: .65rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
}

.estimate-form {
    display: grid;
    gap: .8rem;
    margin-top: .5rem;
}

.estimate-form label {
    display: grid;
    gap: .35rem;
    color: rgba(255,255,255,.82);
    font-weight: 700;
}

.estimate-form input,
.estimate-form textarea {
    width: 100%;
    padding: .7rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
}

.estimate-form textarea {
    resize: vertical;
}

@media (max-width: 850px) {

    .platform-cost-grid,
    .cost-row {
        grid-template-columns: 1fr;
    }

    .cost-row strong {
        text-align: left;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--apple-surface);
}

.pricing-card--featured {
    border-color: var(--apple-accent);
    box-shadow: 0 10px 30px rgba(0, 122, 255, .12);
}

.price {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1;
    font-weight: 850;
    color: var(--apple-accent);
    margin: 0;
}

.timeline {
    color: var(--text-dim);
    font-weight: 700;
    margin: 0;
}

.pricing-card ul {
    display: grid;
    gap: .5rem;
    margin-top: .75rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.pricing-card ul li {
    display: list-item;
    color: var(--text-dim);
}

.estimate-builder {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.estimate-options {
    display: grid;
    gap: .75rem;
}

.estimate-option {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: .8rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--apple-surface);
    cursor: pointer;
}

.estimate-option:hover {
    border-color: var(--apple-accent);
}

.estimate-option input {
    margin-top: .25rem;
}

.estimate-option strong {
    display: block;
    margin-bottom: .25rem;
}

.estimate-option em {
    display: block;
    color: var(--text-dim);
    font-style: normal;
    line-height: 1.55;
}

.estimate-total {
    position: sticky;
    top: 86px;
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 18px;
    background: #07101f;
    color: #fff;
}

.estimate-total h3 {
    margin: 0;
}

.estimate-total p {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    line-height: 1;
    font-weight: 900;
    margin: 0;
}

.estimate-total small {
    color: rgba(255, 255, 255, .68);
    line-height: 1.5;
}

@media (max-width: 850px) {

    .pricing-grid,
    .estimate-builder {
        grid-template-columns: 1fr;
    }

    .estimate-total {
        position: static;
    }
}