.pg-roi-live-preview {
    position: sticky;
    top: 110px;
}

.pg-roi-preview-card {
    padding: 34px;
    border: 1px solid var(--pg-border);
    border-radius: 18px;
    background: #1a1a1a;
}

.pg-roi-preview-header {
    margin-bottom: 28px;
}

.pg-roi-preview-header h3 {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
}

.pg-roi-preview-header p {
    color: var(--pg-text-secondary);
    font-size: 14px;
    line-height: 1.45;
}

.pg-roi-preview-main-number {
    padding-bottom: 26px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--pg-border);
}

.pg-roi-preview-main-number strong {
    display: block;
    margin-bottom: 4px;
    color: var(--pg-orange);
    font-size: clamp(42px, 4vw, 56px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
}

.pg-roi-preview-main-number span {
    display: block;
    color: var(--pg-text-secondary);
    font-size: 14px;
}

.pg-roi-preview-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--pg-border);
}

.pg-roi-preview-kpis strong {
    display: block;
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pg-roi-preview-kpis span {
    display: block;
    margin-top: 6px;
    color: var(--pg-text-secondary);
    font-size: 13px;
}

.pg-roi-preview-breakdown > p {
    margin-bottom: 18px;
    color: var(--pg-text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pg-roi-preview-bar {
    margin-bottom: 18px;
}

.pg-roi-preview-bar:last-child {
    margin-bottom: 0;
}

.pg-roi-preview-bar > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.pg-roi-preview-bar span {
    color: var(--pg-text-secondary);
    font-size: 14px;
}

.pg-roi-preview-bar strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.pg-roi-preview-track {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.pg-roi-preview-fill {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    transition: width 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.pg-roi-preview-fill--orange {
    background: #FF5F00;
}

.pg-roi-preview-fill--cyan {
    background: #16B8CF;
}

.pg-roi-preview-fill--silver {
    background: #C8C8C8;
}

.pg-roi-preview-fill--peach {
    background: #FF8A4C;
}

.pg-roi-preview-cta {
    width: 100%;
    margin-top: 34px;
    background: transparent;
    color: #ffffff;
}

.pg-roi-preview-cta:hover {
    background: var(--pg-orange);
    color: #ffffff;
}

.pg-roi-business-result-label:not(:empty) {
    color: var(--pg-text-secondary);
}

.pg-roi-results-panel,
.pg-roi-chart-container,
.pg-roi-cta-banner,
.pg-roi-result-header,
.pg-roi-kpi-grid,
.pg-roi-results-actions {
    display: none;
}

@media (max-width: 1100px) {
    .pg-roi-live-preview {
        position: static;
    }
}

@media (max-width: 768px) {
    .pg-roi-preview-card {
        padding: 24px;
    }

    .pg-roi-preview-kpis {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pg-roi-preview-main-number strong {
        font-size: 42px;
    }
}