/* Insights Section Styling - Refined */
.paragraph--type--insights {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.insights-container {
    max-width: 1240px;
    margin: 0 auto;
}

.insights-header-row {
    margin-bottom: 2.5rem;
}

/* Eyebrow with blue dot */
.insights-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 20px;
}

.insights-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #3b82f6; /* Vibrant blue */
    border-radius: 50%;
}

/* Layout Grid */
.insights-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
    align-items: start;
}

/* Left Column: Hero Image */
.insights-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    filter: grayscale(100%);
}

/* Right Column Content */
.insights-right {
    padding-top: 10px;
}

/* Big Stat Section */
.insights-stats-wrapper {
    display: flex;
    align-items: center;
    gap: 44px;
}

.insights-stat-number {
    font-size: 80px;
    font-weight: 800;
    color: #111;
    display: flex;
    margin-bottom: 30px;
}

.insights-stat-number .plus {
    font-size: 40px;
    color: #ccc;
    margin-top: 15px;
    margin-left: 5px;
}

.insights-stat-heading {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
}

.insights-stat-description {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    max-width: 480px;
}

/* ROI & Avatars */
.insights-roi-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #f8f8f8;
    padding: 12px 30px;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    }

.insights-avatars,
.insights-avatars .field__items {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.insights-avatars img,
.insights-avatars .field__item {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border-left: 1px solid #fff;
    margin-right: -12px;
    position: relative;
    display: block;
}

.insights-avatars .field__item:last-child {
    margin-right: 0 !important;
}

.insights-roi-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-left: 10px;
}

/* Progress Section */
/* Impressions Label */
.insights-progress-label {
    font-size: 28px;
    font-weight: 500;
    color: #bbb;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Heading - Ensure visibility and style */
.insights-heading {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.1;
    color: #111;
    letter-spacing: 0px;
    margin: 0;
    display: block;
    min-height: 1.1em;
    padding-right: 2rem;
}

.insights-heading span {
    color: #b5b5b5;
}

/* Progress & Success Card Wrapper */
.insights-progress-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-top: 40px;
    position: relative;
}

.insights-progress-wrapper {
    width: 100%;
}

.insights-progress-label {
    font-size: 32px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.insights-bg-watermark {
    position: absolute;
    left: 17rem;
    top: 2px;
    /* opacity: 0.1; */
    z-index: 5;
    width: 200px;
  pointer-events: none;
}

.insights-progress-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-top: 9rem;
}

.progress-item-card {
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-radius: 10px;
    position: relative;
    background: #f1f1f1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 2px solid #D2CDCD;
}

/* Staggered Staircase Layout */
.progress-item-card:nth-child(1) { margin-left: 0; }
.progress-item-card:nth-child(2) { margin-left: 15px; }
.progress-item-card:nth-child(3) { margin-left: 30px; }
.progress-item-card:nth-child(4) { margin-left: 45px; }

.progress-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.progress-card-label {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.progress-card-percentage {
    font-weight: 700;
    font-size: 15px;
    color: #111;
}

/* Dark Bar Style */
.progress-item-card.item-dark {
    background: #0d0d0d;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.progress-item-card.item-dark .progress-card-label,
.progress-item-card.item-dark .progress-card-percentage {
    color: #fff;
}

/* Success Card - Floating Image Design */
.insights-success-card {
    background: #000;
    border-radius: 12px;
    color: #fff;
    flex: 0 0 340px;
    border: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 4.4rem;
}

.insights-success-card-bg {
    width: 100%;
    height: auto;
    z-index: 5;
}

.insights-success-card-bg img,
.insights-success-card-bg .field__item img {
    width: 80%;
    display: block;
    margin: auto;
}

.insights-success-card-content {
    padding: 0 4rem;
}

.insights-success-card-caption {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    line-height: 1.5;
    padding-top: 2rem;
}

.insights-success-card-stat {
    font-size: 29px;
    font-weight: 700;
}
.field--name-field-progress-items .field__item {
  margin-top: -23px;
  padding-bottom: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .insights-row {
        gap: 40px;
    }
    .insights-heading {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .insights-row {
        grid-template-columns: 1fr;
    }
    .insights-progress-card {
        flex-direction: column;
        gap: 30px;
    }
    .insights-success-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    .insights-header-row .col-lg-5,
    .insights-header-row .col-lg-7 {
        width: 100%;
    }
}
