/* ==========================================================================
   Summary Wrapper
   ========================================================================== */
.bdps-wrapper {
    margin-bottom: 60px;
}

/* ==========================================================================
   Summary Hero
   ========================================================================== */
.bdps-summary-hero {
    padding: 16px 0 80px;
}

.bdps-summary-hero__container {
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
}

.bdps-summary-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 326px;
    gap: 30px;
    align-items: start;
}

.bdps-summary-hero__breadcrumbs {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef2f7;
    color: #7a8699;
    font-size: 14px;
    line-height: 1.4;
}

.bdps-summary-hero__breadcrumbs p {
    margin: 0;
}

.bdps-summary-hero__breadcrumbs a {
    color: #7a8699;
    text-decoration: none;
}

.bdps-summary-hero__title {
    max-width: 900px;
    margin: 0 0 16px;
    font-size: 36px;
    font-weight: 700;
    line-height: 150%;
    background: linear-gradient(90deg, #101828 0%, #59168B 83.17%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bdps-summary-hero__intro {
    max-width: 920px;
    margin: 0 0 40px;
    color: #4A5565;
    font-size: 20px;
    line-height: 150%;
    font-weight: 300;
}

.bdps-summary-hero__intro strong {
    color: #344256;
    font-weight: 800;
}

/* ==========================================================================
   Summary Card
   ========================================================================== */

.bdps-summary-card {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 34px;
    background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(
                    275.09deg,
                    #7F1FD7 11.27%,
                    #821EC4 42.04%,
                    #CB5BE6 57.67%,
                    #E080A9 76.28%,
                    #FFA425 90.61%
            ) border-box;
}

.bdps-summary-card__inner {
    background: #fff;
    border-radius: 33px;
    padding: 25px 15px;
}

.bdps-summary-card__headline-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bdps-summary-card__headline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border: 1px solid #ffe0b8;
    border-radius: 999px;
    background: #fff5ea;
    box-shadow: 0 6px 18px rgba(255, 158, 45, 0.18);
}

.bdps-summary-card__headline-icon svg {
    display: block;
    width: 34px;
    height: 37px;
}

.bdps-summary-card__headline {
    max-width: 860px;
    margin: 0;
    color: #232B37;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
}

.bdps-summary-card__headline-highlight {
    color: #E95C1D;
    font-weight: 700;
}

.bdps-summary-card__meaning {
    margin-bottom: 32px;
}

.bdps-summary-card__meaning-title {
    margin: 0 0 16px;
    color: #757E8C;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.bdps-summary-card__meaning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 40px;
}

.bdps-summary-card__meaning-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bdps-summary-card__meaning-item p {
    margin: 0;
    color: #3A475B;
    font-size: 16px;
    line-height: 24px;
}

.bdps-summary-card__meaning-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid #ff6d5e;
    border-radius: 999px;
}

.bdps-summary-card__metrics-wrap {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(73.49deg, #06DADE 0.03%, #2B66D4 16.69%, #3E56D4 33.35%, #5245D4 50.01%, #801DD4 66.68%, #741AC0 83.34%, #5F159D 100%);
}

/* ==========================================================================
   Summary Metrics
   ========================================================================== */

.bdps-summary-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bdps-summary-metric__box {
    height: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(22, 31, 70, 0.12);
}

.bdps-summary-metric__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.bdps-summary-metric__value {
    color: #0B0E18;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
}

.bdps-summary-metric__title {
    color: #0B0E18;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.bdps-summary-metric__result-label {
    margin-bottom: 8px;
    color: #0B0E18;
    font-size: 12px;
    font-weight: 300;
    line-height: 100%;
}

.bdps-summary-metric__badge {
    display: inline-flex;
    padding: 4px 8px;
    margin-bottom: 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
}

.bdps-summary-metric__badge.is-positive {
    background: #25b05a;
    color: #fff;
}

.bdps-summary-metric__badge.is-review {
    background: #f08a3e;
    color: #fff;
}

.bdps-summary-metric__badge.is-improvable {
    background: #f35b46;
    color: #fff;
}

.bdps-summary-metric__gauge {
    position: relative;
    width: calc(100% + 10px);
    margin: 0 0 -15px -5px;
}

.bdps-summary-metric__gauge-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.bdps-summary-metric__needle {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.bdps-summary-metric__needle svg {
    display: block;
    width: 40px;
    height: 40px;
}

/* ==========================================================================
   Summary Impact
   ========================================================================== */

.bdps-summary-impact {
    position: relative;
    overflow: visible;
    margin-top: 30px;
    padding: 20px 24px 20px 28px;
    border: 2px solid transparent;
    border-radius: 22px;
    background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(
                    275.09deg,
                    #7F1FD7 11.27%,
                    #821EC4 42.04%,
                    #CB5BE6 57.67%,
                    #E080A9 76.28%,
                    #FFA425 90.61%
            ) border-box;
    box-shadow: 0 10px 24px rgba(22, 31, 70, 0.14);
}

.bdps-summary-impact__icon {
    position: absolute;
    left: -12px;
    top: -20px;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    padding: 8px;

    border-radius: 8px;
    background: linear-gradient(44.63deg, #7F1FD7 5.35%, #E080A9 81.36%, #FFA425 98.11%);
    box-shadow: 0px 8px 12px -12px #0B0E1826;
}

.bdps-summary-impact__icon svg {
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.bdps-summary-impact__text {
    margin: 0;
    padding-left: 8px;
    color: #334155;
    font-size: 18px;
    line-height: 1.5;
}

.bdps-summary-impact__text strong {
    color: #111827;
    font-weight: 800;
}

/* ==========================================================================
   Summary Aside
   ========================================================================== */

.bdps-summary-aside {
    position: sticky;
    top: 65px;
    overflow: hidden;
    padding: 20px 15px;
    border-radius: 24px;
    background: linear-gradient(34.13deg, #06DADE 0%, #2B66D4 16.67%, #3E56D4 33.33%, #5245D4 50%, #801DD4 66.67%, #741AC0 83.33%, #5F159D 100%);
    color: #fff;
}

.bdps-summary-aside__spark {
    position: absolute;
    top: 16px;
    right: 16px;
}

.bdps-summary-aside__eyebrow {
    margin: 0 0 20px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
}

.bdps-summary-aside__pill {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px;
    border-radius: 999px;
    background: #E9F8EF;
    color: #1B8442;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.bdps-summary-aside__plan {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bdps-summary-aside__plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
}

.bdps-summary-aside__plan-icon svg {
    display: block;
    width: 27px;
    height: 27px;
}

.bdps-summary-aside__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

.bdps-summary-aside__description {
    margin: 0 0 24px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 150%;
}

.bdps-summary-aside__list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.bdps-summary-aside__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

.bdps-summary-aside__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1px solid #3be36d;
    border-radius: 999px;
}

.bdps-summary-aside__price {
    margin-bottom: 24px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 150%;
}

.bdps-summary-aside__price strong {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    vertical-align: baseline;
}

.bdps-summary-aside__price-rest {
    font-size: 20px;
}

.bdps-summary-aside__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    background: #f9a623;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bdps-summary-aside__cta:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

/* ==========================================================================
   Listings
   ========================================================================== */

.bdps-listings {
    padding: 30px 0 80px;
}

.bdps-listings__container {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.bdps-listings__heading {
    position: relative;
    max-width: 920px;
    margin: 0 auto 60px;
    text-align: center;
}

.bdps-listings__title {
    margin: 0 0 24px;
    font-size: 36px;
    font-weight: 700;
    line-height: 135%;
    background: linear-gradient(90.31deg, #59168B 43.85%, #9810FA 97.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bdps-listings__intro {
    max-width: 900px;
    margin: 0 auto;
    color: #4A5565;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
}

.bdps-listings-group {
    margin-bottom: 64px;
}

.bdps-listings-group:has(+ .bdps-report-actions) {
    margin-bottom: 0;
}

.bdps-listings-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.bdps-listings-group__title {
    margin: 0 0 12px;
    color: #1d2433;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.bdps-listings-group__description {
    margin: 0;
    color: #3A475B;
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
}

.bdps-listings-group__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 275px;
    padding: 12px;
    border-radius: 14px;
    background: #801DD4;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(127, 31, 215, 0.18);
}

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

/* ==========================================================================
   Business Summary
   ========================================================================== */

.bdps-business-summary {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 28px;
    padding: 0 0 22px;
    border-bottom: 1px solid #d9dee8;
}

.bdps-business-summary__icon {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #FDEFE8;
    justify-content: center;
    align-items: center;
}

.bdps-business-summary__item--name {
    display: flex;
    min-height: 80px;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}

.bdps-business-summary__item span {
    display: block;
    margin-bottom: 8px;
    color: #757E8C;
    font-size: 14px;
    font-weight: 300;
    line-height: 100%;
}

.bdps-business-summary__item strong {
    display: block;
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
}

.bdps-business-summary__item--name strong {
    font-size: 24px;
    font-weight: 600;
}

/* ==========================================================================
   Report Actions
   ========================================================================== */

.bdps-report-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    margin-top: 25px;
    padding: 0 10px;
    border: 1px solid #e4e7ec;
    border-radius: 24px;
    background: #fff;
}

.bdps-report-actions__message {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    color: #232B37;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
}

.bdps-report-actions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
}

.bdps-report-actions__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.bdps-report-actions__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 45px;
    padding: 0 13px;
    border: 2px solid #801DD4;
    border-radius: 16px;
    background: #fff;
    color: #801DD4;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bdps-report-actions__button:hover {
    background: #8a1fe0;
    color: #fff;
    transform: translateY(-1px);
}

.bdps-report-actions__button svg {
    flex: 0 0 auto;
}

/* ==========================================================================
   Site Cards
   ========================================================================== */

.bdps-site-card {
    min-height: 290px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid #e3e7ef;
    background: #fff;
}

.bdps-site-card--missing {
    background: #EA43350D;
    border: unset;
}

.bdps-site-card--unavailable {
    background: #F5F6F7;
    border: unset;
}

.bdps-site-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.bdps-site-card__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.bdps-site-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #f5f7fb;
}

.bdps-site-card__logo img {
    display: block;
    max-width: 32px;
    max-height: 32px;
    width: auto;
    height: auto;
}

.bdps-site-card__title {
    margin: 0;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.bdps-site-card__help {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #344256;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}

.bdps-site-card__help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid #1E293B;
    border-radius: 999px;
    color: #26344a;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
}

.bdps-site-card__details {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bdps-site-card__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    border-bottom: 1px solid #e6e9ef;
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.bdps-site-card__status {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
}

.bdps-site-card__status.is-ok {
    border: 2px solid #20c661;
}

.bdps-site-card__status.is-ok::before {
    content: "";
    width: 9px;
    height: 5px;
    border-left: 2px solid #20c661;
    border-bottom: 2px solid #20c661;
    transform: rotate(-45deg) translate(1px, -1px);
}

.bdps-site-card__status.is-ko {
    border: 2px solid #ff3b30;
}

.bdps-site-card__status.is-ko::before,
.bdps-site-card__status.is-ko::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    border-radius: 999px;
    background: #ff3b30;
}

.bdps-site-card__status.is-ko::before {
    transform: rotate(45deg);
}

.bdps-site-card__status.is-ko::after {
    transform: rotate(-45deg);
}

.bdps-site-card__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    color: #667085;
    font-size: 22px;
    line-height: 1.2;
}

.bdps-site-card__stars {
    color: #ffa000;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1;
}

.bdps-site-card__rating-value {
    color: #3A475B;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.bdps-site-card__reviews {
    color: #757E8C;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.bdps-site-card__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    text-align: center;
}

.bdps-site-card__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #EA43351A;
}

.bdps-site-card__empty-text {
    color: #EA4335;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.bdps-site-card__empty--unavailable {
    color: #344256;
}

.bdps-site-card__unavailable-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #fff;
    color: #c9d0da;
    font-size: 19px;
    font-weight: 300;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.bdps-site-card__unavailable-text {
    color: #3A475B;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* ==========================================================================
   Closing Plan
   ========================================================================== */

.bdps-closing-plan__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 72px;
    align-items: center;
}

.bdps-closing-plan__eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    color: #232B37;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    background: #fff;
}

.bdps-closing-plan__title {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 150%;
    font-weight: 700;
    background: linear-gradient(90.4deg, #59168B 30.41%, #9810FA 70.14%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bdps-closing-plan__text {
    max-width: 760px;
    margin: 0;
    color: #344052;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

.bdps-closing-plan__text strong {
    color: #801DD4;
    font-weight: 700;
}

.bdps-closing-plan__card {
    position: relative;
    padding: 24px;
    border: 2px solid transparent;
    border-radius: 16px;
    background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(
                    95.09deg,
                    #7F1FD7 11.16%,
                    #821EC4 42.42%,
                    #CB5BE6 58.3%,
                    #E080A9 77.2%,
                    #FFA425 91.76%
            ) border-box;
}

.bdps-closing-plan__card-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 16px;
}

.bdps-closing-plan__plan-title {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bdps-closing-plan__plan-title h3 {
    margin: 0;
    color: #232B37;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.bdps-closing-plan__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9643DB;
}

.bdps-closing-plan__icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.bdps-closing-plan__badge {
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 999px;
    color: #1B8442;
    background: #E9F8EF;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.bdps-closing-plan__description {
    max-width: 720px;
    margin: 0 0 40px;
    color: #3A475B;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

.bdps-closing-plan__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.bdps-closing-plan__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 225px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    background: #801DD4;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.bdps-closing-plan__button span {
    line-height: 1;
}

.bdps-closing-plan__button-icon {
    width: 24px;
    height: 24px;
    display: block;
    flex: 0 0 24px;
}

.bdps-closing-plan__separator {
    width: 1px;
    height: 42px;
    background: #ddd;
}

.bdps-closing-plan__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #801DD4;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-decoration: underline;
}

.bdps-closing-plan__link span {
    line-height: 1;
}

.bdps-closing-plan__link-icon {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 16px;
}

.bdps-closing-plan__comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.bdps-closing-plan__column h4 {
    margin: 0 0 26px;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
}

.bdps-closing-plan__column--without h4 {
    color: #767676;
}

.bdps-closing-plan__column ul {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bdps-closing-plan__column li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
}

.bdps-closing-plan__list-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: block;
    margin-top: 3px;
}

.bdps-closing-plan__column--without .bdps-closing-plan__list-icon {
    color: #EA4335;
}

.bdps-closing-plan__column--with .bdps-closing-plan__list-icon {
    color: #17B26A;
}

.bdps-closing-plan__column--without li {
    color: #777;
}

.bdps-closing-plan__column--with li {
    color: #111;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .bdps-summary-hero__layout {
        grid-template-columns: 1fr;
    }

    .bdps-summary-aside {
        position: static;
    }

    .bdps-listings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bdps-listings-group__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .bdps-listings-group__cta {
        min-width: 0;
    }

    .bdps-report-actions {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 18px;
    }

    .bdps-report-actions__buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .bdps-report-actions__button {
        flex: 1 1 54px;
    }

    .bdps-closing-plan__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .bdps-closing-plan__card {
        padding: 28px 22px;
    }

    .bdps-closing-plan__card-header,
    .bdps-closing-plan__actions,
    .bdps-closing-plan__comparison {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .bdps-closing-plan__separator {
        display: none;
    }

    .bdps-closing-plan__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .bdps-summary-hero {
        padding-bottom: 48px;
    }

    .bdps-summary-hero__container {
        width: min(100% - 24px, 1240px);
    }

    .bdps-summary-hero__title {
        font-size: 38px;
        line-height: 120%;
    }

    .bdps-summary-hero__intro {
        font-size: 19px;
    }

    .bdps-summary-card__inner {
        padding: 24px;
    }

    .bdps-summary-card__headline-row {
        flex-direction: column;
    }

    .bdps-summary-card__headline {
        font-size: 26px;
        line-height: 130%;
    }

    .bdps-summary-card__meaning-grid {
        grid-template-columns: 1fr;
    }

    .bdps-summary-metrics {
        grid-template-columns: 1fr;
    }

    .bdps-summary-metric__gauge {
        width: 100%;
    }

    .bdps-summary-impact {
        padding-left: 24px;
    }

    .bdps-summary-impact__icon {
        position: static;
        margin-bottom: 12px;
        transform: none;
    }

    .bdps-summary-impact__text {
        padding-left: 0;
        font-size: 17px;
    }

    .bdps-summary-aside {
        padding: 24px;
    }

    .bdps-listings {
        padding: 48px 0 56px;
    }

    .bdps-listings__container {
        width: min(100% - 24px, 1180px);
    }

    .bdps-listings__heading {
        margin-bottom: 64px;
    }

    .bdps-listings__title {
        font-size: 34px;
    }

    .bdps-listings__intro {
        font-size: 18px;
    }

    .bdps-business-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bdps-listings-grid {
        grid-template-columns: 1fr;
    }

    .bdps-listings-group__cta {
        width: 100%;
    }

    .bdps-report-actions {
        padding: 18px;
        border-radius: 22px;
    }

    .bdps-report-actions__message {
        font-size: 18px;
    }

    .bdps-report-actions__buttons {
        flex-direction: column;
    }

    .bdps-report-actions__button {
        width: 100%;
        min-height: 54px;
        font-size: 17px;
    }

    .bdps-summary-metric__gauge {
        margin: 0;
    }
}

/* Popup Modal Share */

.bdps-share-modal[hidden] {
    display: none;
}

.bdps-share-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bdps-share-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 14, 24, 0.55);
}

.bdps-share-modal__content {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 24px 20px 15px 20px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11, 14, 24, 0.35);
}

.bdps-share-modal__content h3 {
    margin: 0 0 24px;
    color: #232B37;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.bdps-share-modal__field {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.bdps-share-modal__field input {
    width: 100%;
    background-color: #e9ecef;
    min-width: 0;
    opacity: 1;
    padding: 10px 10px;
    border-radius: 10px;
}

.bdps-share-modal__email {
    margin-top: 16px;
}

.bdps-share-modal__email label {
    display: block;
    margin-bottom: 4px;
    color: #232B37;
    font-size: 14px;
}

.bdps-share-modal__row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.bdps-share-modal__row input {
    width: 100%;
    height: 40px;
    min-width: 0;
    border-bottom: 1px solid #00000059;
}

.bdps-share-modal__row button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: grey;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
}

input#bdps-share-email::placeholder {
    color: #80808094;
    font-size: 13px;
}

.bdps-share-modal__row button {
    flex: 0 0 auto;
    background-color: rgb(128 29 212);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.bdps-share-modal__close {
    display: flex;
    font-size: 12px;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px;
}

.bdps-report-actions__button.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.bdps-report-actions__button.is-loading .bdps-report-actions__button-icon {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: bdps-spin 0.8s linear infinite;
}

.bdps-report-actions__button.is-loading .bdps-report-actions__button-icon svg {
    display: none;
}

@keyframes bdps-spin {
    to {
        transform: rotate(360deg);
    }
}