/* ===================================================================
   DEMO PAGE – cch001-demo-page.css
   Book-a-Demo page styles (mirrors trial-page patterns)
   =================================================================== */

/* ── Page wrapper ── */
.demo-page {
    color: #203540;
    overflow-x: hidden;
}

/* ── Hero section ── */
.dp-hero {
    position: relative;
    display: flex;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 50px 60px;
    align-items: flex-start;
}

/* Background blobs / image */
.dp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    border-radius: 30px;
    background: #f5fafa url('/assets/img/demo-page/demo-bg.webp') center center / cover no-repeat;
}

/* ── Left column content ── */
.dp-hero__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: 580px;
}

.dp-hero__title {
    color: #203540;
    margin: 0 0 20px;
}

.dp-hero__subtitle {
    color: #203540;
    margin: 0 0 24px;
    max-width: 505px;
}

/* Benefit pills row */
.dp-hero__benefits {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.dp-hero__benefit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dp-hero__benefit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dp-hero__benefit-text {
    font-size: 18px;
    color: #203540;
}

/* ── What to expect section ── */
.dp-expect__title {
    color: #203540;
    margin: 0 0 30px;
}

.dp-expect__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dp-expect__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dp-expect__icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
}

.dp-expect__text {
    flex: 1;
    min-width: 0;
}

.dp-expect__item-title {
    color: #203540;
    margin: 0 0 5px;
}

.dp-expect__item-desc {
    color: #203540;
    margin: 0;
}

/* Calendar note */
.dp-hero__calendar-note {
    color: #203540;
    margin: 0;
    max-width: 516px;
}

/* ── Right column: Calendly widget card ── */
.dp-hero__widget-col {
    flex: 0 0 510px;
    max-width: 510px;
}

.dp-widget-card {
    background: rgba(255, 255, 255, 0.01);
    border: 0.5px solid #E8E9EB;
    border-radius: 15px;
    box-shadow: 0 50px 15px 0 rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.dp-widget-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 30px 30px 20px;
}

.dp-widget-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dp-widget-card__info {
    display: flex;
    flex-direction: column;
}

.dp-widget-card__name {
    color: #203540;
    margin: 0;
}

.dp-widget-card__role {
    color: #203540;
    margin: 4px 0 0;
}

.dp-widget-card__body {
    padding: 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

/* ── Spacer ── */
.dp-spacer--large {
    height: 100px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .dp-hero {
        flex-direction: column;
        padding: 60px 30px 40px;
        gap: 40px;
    }

    .dp-hero__content {
        max-width: 100%;
    }

    .dp-hero__widget-col {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

}

@media (max-width: 600px) {
    .dp-hero {
        padding: 40px 20px 30px;
    }

    .dp-hero__bg {
        background-size: 170% auto;
        background-position: center bottom;
    }

    .dp-hero__benefits {
        flex-direction: column;
        gap: 8px;
    }

    .dp-expect__icon {
        width: 42px;
        height: 42px;
    }

    .dp-widget-card__header {
        padding: 20px 20px 15px;
    }

    .dp-widget-card__avatar {
        width: 60px;
        height: 60px;
    }

    .dp-spacer--large {
        height: 50px;
    }
}
