.cta-container-0426edbd {
	display: flex;
	flex-wrap: wrap;
	background-color: #1e2440;
	border-radius: 12px;
	overflow: hidden;
	font-family: sans-serif;
	position: relative;
}

.cta-left-0426edbd {
	flex: 1 1 300px;
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}

.cta-heading-0426edbd {
	color: #ffffff;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 20px;
}

.cta-desc-0426edbd {
	color: #e2e8f0;
	font-size: 18px;
	line-height: 1.5;
	margin: 0 0 30px;
}

.cta-button-0426edbd {
	color: #4ade80;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-button-0426edbd:hover {
	opacity: 0.8;
}

.cta-right-0426edbd {
	flex: 1 1 400px;
	position: relative;
	min-height: 300px;
	padding: 40px 0 0 40px; /* Offset for mockup/image */
	overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end; /* Align contents to the right */
}

.cta-custom-image-0426edbd {
    width: calc(100% + 20px); /* Extend past right edge like mockup */
    height: 100%;
    object-fit: cover;
    object-position: left top; /* Pin image to top left of its container */
    border-radius: 12px 0 0 0;
    margin-bottom: -1px; /* Tidy up potential bottom gap */
    margin-right: -20px; /* Counteract the extra width to push past edge */
    display: block; /* Remove baseline gap */
}

/* Dashboard Mockup */
.dash-mockup-0426edbd {
	background: #ffffff;
	border-radius: 12px 0 0 0; /* Only top-left rounded to merge with container edges */
	box-shadow: -10px -10px 30px rgba(0,0,0,0.1);
	padding: 30px;
	width: calc(100% + 20px); /* Extend past right edge */
	height: 100%;
	display: flex;
	flex-direction: column;
}

.dash-header-0426edbd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.dash-title-0426edbd {
	color: #1e293b;
	font-size: 18px;
	font-weight: 700;
}

.dash-badge-0426edbd {
	background: #dcfce7;
	color: #166534;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
}

.dash-stats-0426edbd {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.dash-stat-0426edbd {
	flex: 1;
	background: #f8fafc;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
}

.stat-val-0426edbd {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.stat-lbl-0426edbd {
	color: #64748b;
	font-size: 12px;
}

.dash-chart-0426edbd {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 100px;
	gap: 10px;
	margin-bottom: 15px;
	flex-grow: 1;
}

.chart-col-0426edbd {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

.chart-bar-0426edbd {
	width: 100%;
	background: #e2e8f0;
	border-radius: 4px 4px 0 0;
	position: relative;
}

.chart-bar-0426edbd::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: #4ade80;
}

.chart-lbl-0426edbd {
	color: #94a3b8;
	font-size: 10px;
	margin-top: 8px;
}

.dash-footer-0426edbd {
	text-align: center;
	color: #94a3b8;
	font-size: 12px;
	margin-top: auto;
}

@media (max-width: 768px) {
	.cta-left-0426edbd {
		padding: 40px 20px;
        text-align: center; /* Center text on mobile */
        align-items: center; /* Center button on mobile */
	}
	.cta-right-0426edbd {
		padding: 20px 0 0 0;
        justify-content: center;
        min-height: 200px; /* Reduce min height on mobile */
	}
	.dash-mockup-0426edbd {
		border-radius: 12px 12px 0 0;
		width: 100%;
        padding: 20px; /* less padding */
	}
    .cta-custom-image-0426edbd {
        border-radius: 12px 12px 0 0;
        width: 100%;
        margin-right: 0;
        height: auto; /* Allow image to resize properly */
    }
	.cta-heading-0426edbd {
		font-size: 28px; /* Smaller heading on mobile */
        margin-bottom: 15px;
	}
    .cta-desc-0426edbd {
        font-size: 16px; /* slightly smaller description */
    }
    .hide-on-mobile-0426edbd {
        display: none !important;
    }
    .dash-stats-0426edbd {
        flex-direction: column; /* Stack stats on mobile */
        gap: 10px;
    }
}