/* ---------- Simple Landing: base + landing blocks ---------- */

:root {
	--sl-brand: #1f6cff;
	--sl-brand-dark: #0e4b8c;
	--sl-brand-deep: #0a2d5a;
	--sl-accent: #ffb703;
	--sl-accent-hover: #ff9e00;
	--sl-ink: #0c2236;
	--sl-muted: #5c6f82;
	--sl-soft: #eef4ff;
	--sl-bg: #f5f9ff;
	--sl-card: #ffffff;
	--sl-radius: 24px;
	--sl-radius-lg: 32px;
	--sl-shadow: 0 14px 30px rgba(10, 45, 90, .08);
	--sl-shadow-strong: 0 20px 35px rgba(10, 45, 90, .22);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: var(--sl-ink);
	background: linear-gradient(160deg, var(--sl-bg) 0%, #e9f2fa 100%);
}
.sl-inner.sl-features img {
    border-radius: 25px;
    width: 100%;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
span.phone-code {
    position: absolute;
    top: 42px;
    right: 15px;
    z-index: 2;
}
p.i {
    position: relative;
}
a { color: var(--sl-brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; }

/* ---------- Layout ---------- */
.site-header,
.site-footer { background: #fff; }

.site-header__inner,
.site-footer__inner,
.sl-block > .sl-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-header { border-bottom: 1px solid #e5e7eb; }
.site-header--sticky {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(160%) blur(8px);
	box-shadow: 0 4px 14px rgba(10,45,90,.06);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.site-title { font-weight: 800; font-size: 20px; color: var(--sl-brand-dark); }

.site-nav__list { display: flex; gap: 18px; margin: 0; padding: 0; list-style: none; align-items: center; }
.site-nav__list a { color: #374151; font-weight: 600; }
.site-nav__list--anchors a {
	display: inline-block;
	padding: 6px 4px;
	border-bottom: 2px solid transparent;
	transition: color .15s, border-color .15s;
	text-decoration: none;
}
.site-nav__list--anchors a:hover { color: var(--sl-brand); }
.site-nav__list--anchors a.is-active {
	color: var(--sl-brand-dark);
	border-bottom-color: var(--sl-brand);
}

/* CTA-style nav link for order anchor */
.site-nav__list--anchors a[href="#sl-order"] {
	background: var(--sl-accent);
	color: #0a1e32;
	padding: 10px 22px;
	border-radius: 50px;
	border-bottom: none;
	font-weight: 800;
	letter-spacing: .3px;
	box-shadow: 0 8px 16px rgba(255,180,0,.35);
	transition: background .2s, transform .2s, box-shadow .2s;
}
.site-nav__list--anchors a[href="#sl-order"]:hover {
	background: var(--sl-accent-hover);
	color: #0a1e32;
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(255,180,0,.45);
}
.site-nav__list--anchors a[href="#sl-order"].is-active {
	background: var(--sl-accent-hover);
	color: #0a1e32;
	border-bottom: none;
}

/* Burger toggle (mobile) */
.site-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 40px; height: 40px;
	padding: 9px 8px;
	background: transparent;
	border: 1px solid #dbe3ec;
	border-radius: 10px;
	cursor: pointer;
}
.site-nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--sl-brand-dark);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-footer { border-top: 1px solid #e5e7eb; background: #f9fafb; margin-top: 60px; }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; gap: 24px; }
.site-footer__list { display: flex; gap: 16px; margin: 0; padding: 0; list-style: none; }

/* ---------- Landing wrapper ---------- */
.sl-landing { padding-bottom: 40px; }
.sl-landing .sl-block { padding: 56px 0; scroll-margin-top: 80px; }
.sl-landing .sl-block + .sl-block { border-top: none; }

.sl-section__title {
	font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
	font-weight: 800;
	margin: 0 0 28px;
	color: var(--sl-brand-dark);
	letter-spacing: -0.3px;
}

/* ---------- Buttons ---------- */
.sl-btn {
	display: inline-block;
	background: var(--sl-accent);
	color: #0a1e32;
	font-weight: 800;
	font-size: 1.05rem;
	padding: 16px 32px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	transition: transform .2s, box-shadow .2s, background .2s;
	box-shadow: 0 10px 18px rgba(255, 180, 0, .4);
	letter-spacing: .4px;
}
.sl-btn:hover { background: var(--sl-accent-hover); transform: translateY(-1px); text-decoration: none; }
.sl-btn--block { width: 100%; }
.sl-btn--cta { font-size: 1.15rem; }

/* ---------- Hero ---------- */
.sl-block--hero { padding: 0 !important; }
.sl-block--hero .sl-hero__inner {
	background: radial-gradient(circle at 20% 20%, #2b7ef0, #0f4a8a);
	color: #fff;
	border-radius: 0 0 48px 48px;
	padding: 70px 0 80px;
	box-shadow: var(--sl-shadow-strong);
}
.sl-hero__row {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
}
.sl-hero__content {
	text-align: center;
	min-width: 0;
}
.sl-hero__media {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}
.sl-hero__image {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: max-content;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
    width: 100%;
    border-radius: 25px;
    height: auto;
}
@media (max-width: 720px) {
	.sl-block--hero .sl-hero__inner {
		padding: 48px 0 56px;
	}
	.sl-hero__row {
		grid-template-columns: 1fr;
		gap: 24px;
	}

}
.sl-hero__title {
	font-size: clamp(2.2rem, 1.4rem + 4vw, 4rem);
	font-weight: 900;
	letter-spacing: -1px;
	margin: 0 0 12px;
	text-transform: uppercase;
	text-shadow: 0 4px 12px rgba(0,0,0,.25);
	line-height: 1.05;
}
.sl-hero__volume {
	display: inline-block;
	font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
	font-weight: 900;
	padding: 10px 30px;
	margin: 14px 0 18px;
	background: rgba(255,255,255,.17);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 60px;
	backdrop-filter: blur(8px);
}
.sl-hero__lead {
	max-width: 680px;
	margin: 0 auto 26px;
	font-size: 1.05rem;
	opacity: .95;
}

/* ---------- Usage grid ---------- */
.sl-usage-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}
.sl-usage {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border-radius: var(--sl-radius);
	padding: 16px 18px;
	box-shadow: var(--sl-shadow);
	transition: transform .2s, box-shadow .2s;
}
.sl-usage:hover { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(10,45,90,.12); }
.sl-usage__icon {
	flex: 0 0 auto;
	width: 58px; height: 58px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--sl-soft);
	color: #fff;
	border-radius: 14px;
	overflow: hidden;
}
.sl-usage__icon svg { width: 28px; height: 28px; }
.sl-usage__icon img { width: 100%; height: 100%; object-fit: cover; }
.sl-usage__text { font-weight: 600; color: var(--sl-brand-deep); }

/* ---------- Product ---------- */
.sl-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.sl-product__media {
    /* background: linear-gradient(180deg, #d6e6ff, #b8d4ff); */
    border-radius: var(--sl-radius-lg);
    /* padding: 20px; */
    /* box-shadow: var(--sl-shadow); */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* min-height: 280px; */
}

.sl-product__body p { margin: 0 0 16px; }
.sl-product__subtitle {
	margin: 22px 0 10px;
	font-size: 1.15rem;
	color: var(--sl-brand-dark);
	font-weight: 800;
}

.sl-list { margin: 0; padding: 0 0 0 22px; }
.sl-list li { margin: 6px 0; }
.sl-list--check { list-style: none; padding: 0; }
.sl-list--check li {
	position: relative;
	padding-left: 28px;
	margin: 8px 0;
}
.sl-list--check li::before {
	content: '';
	position: absolute;
	left: 0; top: .35em;
	width: 18px; height: 18px;
	background: var(--sl-brand);
	border-radius: 50%;
	box-shadow: inset 0 0 0 4px #fff, 0 0 0 2px var(--sl-brand);
}
.sl-list--dot { list-style: none; padding: 0; }
.sl-list--dot li {
	position: relative;
	padding-left: 22px;
	margin: 10px 0;
}
.sl-list--dot li::before {
	content: '';
	position: absolute;
	left: 0; top: .55em;
	width: 10px; height: 10px;
	background: #fff;
	border-radius: 50%;
}

/* ---------- Targets ---------- */
.sl-targets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}
.sl-target {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border-radius: var(--sl-radius);
	padding: 20px;
	box-shadow: var(--sl-shadow);
	border-left: 6px solid var(--sl-brand);
}
.sl-target__icon {
	width: 56px; height: 56px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--sl-soft);
	color: var(--sl-brand-dark);
	border-radius: 16px;
}
.sl-target__icon svg { width: 32px; height: 32px; }
.sl-target__text { font-weight: 700; color: var(--sl-brand-deep); }

/* ---------- Benefits (two cards) ---------- */
.sl-twocol {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}
.sl-card {
	border-radius: var(--sl-radius-lg);
	padding: 28px;
	box-shadow: var(--sl-shadow);
}
.sl-card--blue {
	background: linear-gradient(160deg, #2b7ef0, #0e4b8c);
	color: #fff;
}
.sl-card__title { margin: 0 0 18px; font-size: 1.4rem; font-weight: 800; }

/* ---------- Order ---------- */
.sl-order {
	background: #fff;
	border-radius: var(--sl-radius-lg);
	padding: 32px 24px;
	box-shadow: var(--sl-shadow-strong);

	margin: 0 auto;
	text-align: center;
}
.sl-order__price { margin-bottom: 18px; }
.sl-order__media {
	max-width: 260px;
	margin: 0 auto 18px;
	border-radius: 22px;
	background: #f3f7ff;
	overflow: hidden;
}
.sl-order__media img {
	width: 100%;
	aspect-ratio: 1014 / 1280;
	object-fit: contain;
}
.sl-order__old { text-decoration: line-through; color: var(--sl-muted); font-size: 1.1rem; margin-right: 8px; }
.sl-order__badge {
	display: inline-block;
	background: #ffe9b5;
	color: #7a5a00;
	font-weight: 800;
	padding: 2px 12px;
	border-radius: 20px;
	font-size: .95rem;
}
.sl-order__new {
	font-size: clamp(1.8rem, 1.2rem + 2vw, 2.4rem);
	font-weight: 900;
	color: var(--sl-brand-dark);
	margin-top: 8px;
}
.sl-order__note { color: var(--sl-muted); margin: 4px 0 0; }

.sl-packs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 22px 0 16px;
}
.sl-pack {
	background: var(--sl-soft);
	border: 2px solid transparent;
	border-radius: 18px;
	padding: 12px 18px;
	font-weight: 700;
	color: var(--sl-brand-deep);
	cursor: pointer;
	transition: .2s;
	min-width: 90px;
}
.sl-pack:hover { background: #dde9ff; }
.sl-pack.is-active {
	background: #d6e6ff;
	border-color: var(--sl-brand);
	box-shadow: 0 6px 14px rgba(43,126,240,.3);
}

.sl-order__total { font-size: 1.05rem; margin: 10px 0 18px; }
.sl-order__total strong { color: var(--sl-brand-dark); font-size: 1.25rem; }

.sl-form { text-align: left; }
.sl-field { display: block; margin: 12px 0; }
.sl-field > span {
	display: block;
	font-weight: 700;
	color: var(--sl-brand-deep);
	font-size: .9rem;
	margin-bottom: 6px;
}
.sl-field input {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #ccdcec;
	border-radius: 50px;
	font-size: 1rem;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.sl-field input:focus {
	outline: none;
	border-color: var(--sl-brand);
	box-shadow: 0 0 0 3px rgba(31,108,255,.18);
}
.sl-form__hint { text-align: center; font-size: .85rem; color: var(--sl-muted); margin-top: 14px; }

/* ---------- CF7 inside .sl-form ---------- */
.sl-form .wpcf7 { width: 100%; }
.sl-form .wpcf7-form,
.sl-form form.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}
.sl-form .wpcf7-form p {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}
.sl-form .wpcf7-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-weight: 700;
	color: var(--sl-brand-deep);
	font-size: .9rem;
	width: 100%;
}
.sl-form .wpcf7-form-control-wrap { width: 100%; display: block; }
.sl-form .wpcf7-form input[type="text"],
.sl-form .wpcf7-form input[type="email"],
.sl-form .wpcf7-form input[type="tel"],
.sl-form .wpcf7-form input[type="url"],
.sl-form .wpcf7-form input[type="number"],
.sl-form .wpcf7-form input[type="date"],
.sl-form .wpcf7-form select,
.sl-form .wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 18px;
	border: 1px solid #ccdcec;
	border-radius: 50px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--sl-brand-deep);
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
	box-shadow: 0 2px 8px rgba(20,55,110,.04);
}
.sl-form .wpcf7-form textarea {
	min-height: 120px;
	border-radius: 18px;
	resize: vertical;
}
.sl-form .wpcf7-form input:focus,
.sl-form .wpcf7-form select:focus,
.sl-form .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--sl-brand);
	box-shadow: 0 0 0 3px rgba(31,108,255,.18);
}
.sl-form .wpcf7-form input::placeholder,
.sl-form .wpcf7-form textarea::placeholder { color: #98a8bd; }
.sl-form .wpcf7-form input[type="submit"] {
	width: 100%;
	background: var(--sl-accent);
	color: #0a1e32;
	font-weight: 800;
	font-size: 1.1rem;
	letter-spacing: .4px;
	padding: 16px 32px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 10px 18px rgba(255,180,0,.4);
	transition: background .2s, transform .2s;
	margin-top: 6px;
}
.sl-form .wpcf7-form input[type="submit"]:hover {
	background: var(--sl-accent-hover);
	transform: translateY(-1px);
}
.sl-form .wpcf7-spinner { display: none; }
.sl-form .wpcf7-not-valid-tip {
	color: #d23a3a;
	font-size: .85rem;
	font-weight: 600;
	margin-top: 4px;
}
.sl-form .wpcf7 form .wpcf7-response-output {
	margin: 14px 0 0;
	padding: 12px 16px;
	border-radius: 14px;
	font-size: .95rem;
}

/* ---------- Contacts ---------- */
.sl-block--contacts .sl-contacts {
	background: linear-gradient(160deg, #2b7ef0, #0e4b8c);
	color: #fff;
	border-radius: var(--sl-radius-lg);
	padding: 56px 28px;
	text-align: center;
	box-shadow: var(--sl-shadow-strong);
}
.sl-contacts__title { margin: 0 0 12px; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); font-weight: 800; }
.sl-contacts__lead { opacity: .9; margin: 0 0 22px; }
.sl-contacts__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
}
.sl-contacts__list li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.05rem;
	font-weight: 700;
}
.sl-contacts__list a { color: #fff; text-decoration: underline; }

@media (max-width: 1120px) {
.sl-hero__title {
    font-size: 41px;
}
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
	.sl-block--hero .sl-hero__inner {
    padding: 114px 0 56px;
}
	.site-nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
	.site-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		padding: 14px 20px 20px;
		box-shadow: 0 12px 24px rgba(10,45,90,.12);
		display: none;
	}
.site-header {
    position: fixed;
    width: 100%;
}
	.site-nav.is-open { display: block; }
	.site-nav__list { flex-direction: column; align-items: stretch; gap: 6px; }
	.site-nav__list--anchors a { display: block; padding: 10px 6px; border-bottom: none; border-left: 3px solid transparent; padding-left: 10px; }
	.site-nav__list--anchors a.is-active { border-left-color: var(--sl-brand); background: var(--sl-soft); border-radius: 8px; }
	.site-nav__list--anchors a[href="#sl-order"] {
		text-align: center;
		padding: 12px 18px;
		border-left: none;
		margin-top: 6px;
	}
	.site-nav__list--anchors a[href="#sl-order"].is-active {
		border-left: none;
		background: var(--sl-accent-hover);
	}
}

@media (max-width: 720px) {
	.sl-product { grid-template-columns: 1fr; }
	.sl-product__media { min-height: 220px; }
	.site-footer__inner { flex-direction: column; gap: 10px; text-align: center; }
	.sl-landing .sl-block { padding: 40px 0; scroll-margin-top: 70px; }
}

/* ---------- Features collage block ---------- */
.sl-features { display: flex; flex-direction: column; gap: 36px; }
.sl-section__title--center { text-align: center; text-transform: uppercase; }

.sl-features__top {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 20px;
	align-items: stretch;
}
.sl-features__hero {
	background: #fff;
	border-radius: var(--sl-radius);
	box-shadow: var(--sl-shadow);
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
}
.sl-features__hero img {
	max-width: 70%;
	max-height: 460px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 28px rgba(14,75,140,.25));
}
.sl-features__sides { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }

.sl-feature-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--sl-radius);
	box-shadow: var(--sl-shadow);
	overflow: hidden;
	padding: 18px 18px 16px;
	gap: 12px;
}
.sl-feature-card__head { display: flex; flex-direction: column; gap: 4px; }
.sl-feature-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 900;
	color: var(--sl-brand-dark);
	text-transform: uppercase;
	letter-spacing: .3px;
	line-height: 1.15;
}
.sl-feature-card__title span {
	display: block;
	font-weight: 800;
	text-transform: none;
	font-size: 1rem;
	color: var(--sl-brand-deep);
}
.sl-feature-card__subtitle { margin: 0; color: var(--sl-muted); font-size: .9rem; }
.sl-feature-card__media {
	flex: 1;
	border-radius: 18px;
	overflow: hidden;
	min-height: 160px;
	background: #f0f5fb;
}
.sl-feature-card__media img {
	width: 100%;
	height: 100%;
	min-height: 160px;
	object-fit: cover;
	display: block;
}
.sl-feature-card__media--triple {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	background: transparent;
}
.sl-feature-card__media--triple img {
	object-fit: contain;
	background: #f0f5fb;
	border-radius: 12px;
	padding: 6px;
}
.sl-feature-card__badge,
.sl-feature-card__badges span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--sl-brand-dark);
}
.sl-feature-card__badges { display: flex; flex-wrap: wrap; gap: 14px; }
.sl-feature-card__dot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--sl-soft);
	border: 2px solid var(--sl-brand);
	display: inline-block;
	flex: none;
	position: relative;
}
.sl-feature-card__dot::after {
	content: "✓";
	color: var(--sl-brand);
	font-weight: 900;
	font-size: 12px;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.sl-feature-card__caption { margin: 0; text-align: center; color: var(--sl-muted); font-weight: 600; }
.sl-feature-card--volume .sl-feature-card__media { background: #eef6ff; padding: 12px; }
.sl-feature-card--volume .sl-feature-card__media img { object-fit: contain; }

.sl-features__scenarios { display: flex; flex-direction: column; gap: 16px; }
.sl-scenarios-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.sl-scenario { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.sl-scenario__media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--sl-shadow);
	background: #e6eef8;
}
.sl-scenario__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}
.sl-scenario:hover .sl-scenario__media img { transform: scale(1.04); }
.sl-scenario__icon {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--sl-brand);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 14px rgba(14,75,140,.35);
}
.sl-scenario__icon svg { width: 22px; height: 22px; }
.sl-scenario__label { font-weight: 700; color: var(--sl-brand-deep); font-size: .95rem; }

.sl-features__bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 860px) {
	.sl-features__top,
	.sl-features__bottom { grid-template-columns: 1fr; }
	.sl-features__hero { min-height: 280px; }
	.sl-features__hero img { max-height: 320px; }
	.sl-scenarios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.sl-scenarios-grid { grid-template-columns: 1fr; }
}
