:root {
	--bg: #f5f5f7;
	--surface: #ffffff;
	--surface-soft: #efeff3;
	--text: #18284b;
	--text-soft: #6f7384;
	--accent: #1957d8;
	--accent-dark: #0f43ae;
	--stroke: #e4e6ee;
	--shadow: 0 18px 40px rgba(24, 40, 75, 0.08);
	--radius: 20px;
	/* --container: 1140px; */
}

•⁠ ⁠ {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/* body {
	line-height: 1.5;
} */

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}



.section {
	padding: 32px 0;
}

.eyebrow {
	text-align: center;
	font-size: 14px;
	color: var(--text-soft);
	margin-bottom: 16px;
}


.hero h1 {
	margin: 0 auto 18px;
	max-width: 760px;
	/* line-height: 0.95; */
	font-weight: 700;
	color: var(--text);
	text-align: center;

}

.hero h1 .muted {
	color: #6d7285;
}

.hero p {
	max-width: 640px;
	margin: 0 auto 28px;
	font-size: 18px;
	color: var(--text-soft);
}

.hero-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin: 0 auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 15px;
	transition: 0.2s ease;
	border: 1px solid transparent;
}

.btn-primary {
	background: var(--accent);
	color: white;
	box-shadow: 0 14px 26px rgba(25, 87, 216, 0.2);
}

.btn-primary:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
}

.btn-secondary {
	background: white;
	color: var(--text);
	border-color: var(--stroke);
}

.btn-secondary:hover {
	background: #fafbff;
}

.problem-box {
	background: #ececef;
	border-radius: var(--radius);
	padding: 56px 40px;
	text-align: center;
	margin-top: 28px;
}

.problem-box h2 {
	margin: 0 0 18px;
/* 	line-height: 1.05; */
	color: #111111;
}

.problemTitle {
	color: var(--blue);
}

.problem-box p {
	max-width: 920px;
	margin: 0 auto;
	font-size: 17px;
	color: #3d4353;
}

.features-shell {
	background: #efeff2;
	border-radius: var(--radius);
	padding: 34px;
	margin-top: 36px;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr 1fr;
	gap: 22px;
	align-items: stretch;
}

.feature-col {
	display: grid;
	gap: 22px;
}

.feature-card,
.feature-highlight {
	background: white;
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow);
	min-height: 186px;
	position: relative;
	overflow: hidden;
}

.feature-card .icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #f1f4fb;
	color: var(--accent);
	margin-bottom: 18px;
	font-size: 18px;
	font-weight: 700;
}

.feature-card h3,
.feature-highlight h3 {
	margin: 0 0 12px;
	font-size: 18px;
}

.feature-card p,
.feature-highlight p {
	margin: 0;
	color: #4f5566;
	font-size: 15px;
}

.feature-highlight {
	background: linear-gradient(180deg, #f0eef6 0%, #e9e7f2 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 394px;
	padding: 34px;
}

.feature-highlight .mini-label {
	font-size: 13px;
	color: #6b7081;
	margin-bottom: 8px;
}

.feature-highlight h3 {
	font-size: clamp(28px, 2.4vw, 40px);
	max-width: 280px;
	color: var(--text);
	margin-bottom: 18px;
}

.feature-highlight .orb {
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: white;
	box-shadow: 0 12px 24px rgba(24, 40, 75, 0.08);
	display: grid;
	place-items: center;
	color: var(--accent);
	font-size: 16px;
	font-weight: 700;
}

.feature-highlight .orb.one {
	top: 10px;
	left: 28px;
}

.feature-highlight .orb.two {
	top: 10px;
	right: 28px;
}

.feature-highlight .orb.three {
	bottom: 7.5px;
	left: 28px;
}

.feature-highlight .orb.four {
	bottom: 7.5px;
	right: 28px;
}

.impact {
	padding-top: 52px;
}

.impact .eyebrow {
	margin-bottom: 10px;
}

.impact h2 {
	margin: 0 auto 18px;
	max-width: 820px;
/* 	text-align: center;
	font-size: clamp(38px, 4.6vw, 72px); */
	/* line-height: 0.98; */
}

.impact h2 .muted {
	color: #6d7285;
}

.impact .intro {
	max-width: 980px;
	margin: 0 auto 34px;
	text-align: center;
	color: #5a6070;
	font-size: 17px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.benefit-card {
	background: #efeff2;
	border-radius: var(--radius);
	padding: 28px;
	min-height: 302px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.benefit-card h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.benefit-card p {
	margin: 0;
	color: #575d6e;
	font-size: 15px;
	max-width: 470px;
}

.visual {
	margin-top: 24px;
	background: white;
	border-radius: var(--radius);
	border: 1px solid #edf0f5;
	min-height: 150px;
	position: relative;
	overflow: hidden;
}

.chart-visual {
	padding: 18px 18px 10px;
}

.chart-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #7a8090;
	margin-bottom: 12px;
}

.pill {
	border-radius: 999px;
	background: #edf3ff;
	color: var(--accent);
	padding: 5px 10px;
	font-weight: 600;
}

.chart-lines {
	position: absolute;
	inset: 56px 16px 16px 16px;
}

.chart-lines svg {
	width: 100%;
	height: 100%;
}

.stats-visual {
	padding: 18px;
}

.stats-visual .stat-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid #eef1f6;
	font-size: 14px;
	color: #384055;
}

.stats-visual .stat-row:last-child {
	border-bottom: 0;
}

.flag {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	background: linear-gradient(90deg, #e33 0 33%, white 33% 66%, #1e57d7 66% 100%);
}

.metric-visual {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.metric-label {
	font-size: 12px;
	color: #7b8192;
}

.metric-value {
	font-size: 40px;
	font-weight: 700;
	color: var(--text);
	margin: 14px 0 4px;
}

.metric-sub {
	font-size: 13px;
	color: #36a269;
}

.progress-track {
	margin-top: 18px;
	height: 8px;
	border-radius: 999px;
	background: #eef2f8;
	overflow: hidden;
}

.progress-bar {
	width: 74.7%;
	height: 100%;
	background: linear-gradient(90deg, #1957d8, #7aa6ff);
	border-radius: inherit;
}

.dashboard-visual {
	padding: 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	align-items: stretch;
}

.mini-panel {
	border: 1px solid #edf0f5;
	border-radius: 14px;
	padding: 14px;
	background: #fff;
}

.mini-panel .kicker {
	font-size: 12px;
	color: #7a8090;
	margin-bottom: 8px;
}

.mini-panel .number {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
}

.mini-panel .delta {
	font-size: 12px;
	color: #36a269;
	margin-top: 8px;
}

.img_webinar {
    border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: 90%;
}
.webinar-content {
	margin-top: 14px;
}

.webinar-content p {
	color: #596071;
	font-size: 16px;
	margin: 0 0 14px;
	max-width: 520px;
}

.small-note {
	font-size: 14px;
	color: #6d7285;
	margin-top: 10px;
}

@media (max-width: 1099.99px) {
	.features-grid {
		grid-template-columns: 1fr;
	}

	.feature-highlight {
		min-height: 280px;
	}

	.feature-highlight .mini-label,
	.feature-highlight .btn {
		text-align: center;
	}

	.benefits-grid,
	.webinar {
		grid-template-columns: 1fr;
	}

	.feature-highlight .orb.one {
		top: 10px;
		left: 28px;
	}

	.feature-highlight .orb.two {
		top: 10px;
		right: 28px;
	}

	.feature-highlight .orb.three {
		bottom: 7.5px;
		left: 28px;
	}

	.feature-highlight .orb.four {
		bottom: 7.5px;
		right: 28px;
	}

    .feature-card {
        display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: start;
    }
}

@media (max-width: 768px) {
	.problem-box,
	.features-shell {
		padding: 24px;
		border-radius: var(--radius);
	}

	.feature-card,
	.feature-highlight,
	.benefit-card {
		padding: 22px;
	}

	.dashboard-visual {
		grid-template-columns: 1fr;
	}

	.btn {
		width: 100%;
	}

	.hero-actions {
		display: grid;
		width: 100%;
	}

	.webinar-photo {
		min-height: 260px;
	}
}