:root {
	--bg: #f4f7fb;
	--bg-soft: #eaf3ff;
	--surface: #ffffff;
	--surface-strong: #091a2d;
	--surface-border: rgba(9, 26, 45, 0.08);
	--text: #132238;
	--text-muted: #5f7084;
	--text-inverse: #f9fbff;
	--primary: #27a9ff;
	--primary-strong: #0b7ad1;
	--accent: #ffd166;
	--success: #dff7e8;
	--success-text: #166534;
	--error: #ffe4e6;
	--error-text: #9f1239;
	--shadow: 0 24px 64px rgba(8, 21, 38, 0.12);
	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--container: 1240px;
	--font-body: "Inter Tight", "Avenir Next", "Trebuchet MS", sans-serif;
	--font-heading: "Jost", "Arial Narrow", "Avenir Next Condensed", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	background:
		radial-gradient(circle at top left, rgba(39, 169, 255, 0.16), transparent 28%),
		radial-gradient(circle at top right, rgba(255, 209, 102, 0.18), transparent 22%),
		var(--bg);
	color: var(--text);
	line-height: 1.6;
}

body.lead-modal-open {
	overflow: hidden;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.container {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

.site-main {
	padding-bottom: 48px;
}

.section,
.page-hero,
.hero-section {
	padding: 28px 0;
}

.section--soft {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(234, 243, 255, 0.9));
}

.section--contrast {
	background: linear-gradient(135deg, #0d2036 0%, #102d4c 100%);
	color: var(--text-inverse);
}

.section-kicker {
	margin: 0 0 8px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--primary-strong);
}

.section-heading {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.section-heading h2,
.hero-section h1,
.page-hero h1,
.content-card h1,
.content-card h2,
.product-single__content h1,
.lead-modal__dialog h2 {
	margin: 0;
	font-family: var(--font-heading);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.section-heading h2,
.page-hero h1,
.content-card h1,
.product-single__content h1,
.lead-modal__dialog h2 {
	font-size: clamp(2rem, 4vw, 4rem);
}

.section-link {
	color: var(--primary-strong);
	font-weight: 700;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
	color: var(--text-inverse);
	box-shadow: 0 16px 28px rgba(11, 122, 209, 0.24);
}

.button--ghost {
	border-color: rgba(11, 122, 209, 0.22);
	background: rgba(255, 255, 255, 0.7);
	color: var(--text);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(18px);
	background: rgba(244, 247, 251, 0.82);
	border-bottom: 1px solid rgba(19, 34, 56, 0.06);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto auto;
	gap: 14px;
	align-items: center;
	padding: 14px 0;
}

.site-branding {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 320px;
}

.site-branding__logo,
.site-footer__logo {
	display: block;
}

.site-branding__logo-link,
.site-footer__logo-link {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.site-branding__logo-image,
.site-footer__logo-image {
	display: block;
	width: 100%;
	height: auto;
}

.site-branding__logo-image {
	max-width: 320px;
	filter: drop-shadow(0 10px 24px rgba(39, 169, 255, 0.18));
}

.site-footer__logo {
	margin-bottom: 12px;
}

.site-footer__logo-image {
	max-width: 280px;
}

.site-branding__logo-link:hover,
.site-footer__logo-link:hover {
	transform: none;
}

.site-branding__name,
.site-footer__name {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.site-branding__tagline {
	margin: 0;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.site-header__toggle {
	width: 48px;
	height: 48px;
	padding: 0;
	margin-left: auto;
	border: 1px solid var(--surface-border);
	border-radius: 50%;
	background: var(--surface);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	cursor: pointer;
}

.site-header__toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--text);
}

.site-nav {
	grid-column: 1 / -1;
	display: none;
	padding: 16px;
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.site-nav.is-open {
	display: block;
}

.menu,
.contact-list,
.spec-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.menu a {
	font-weight: 700;
	color: var(--text);
}

.site-header__actions {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.site-header__phone {
	font-weight: 700;
}

.hero-section__grid,
.page-hero__grid,
.two-column-layout,
.lead-section {
	display: grid;
	gap: 20px;
}

.hero-section__content,
.hero-section__panel,
.page-hero__aside,
.content-card,
.catalog-filters,
.lead-form,
.product-card,
.promo-card,
.advantage-card,
.category-card,
.chip-card,
.contact-panel,
.product-single__image {
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.hero-section__content,
.hero-section__panel,
.page-hero__aside,
.content-card,
.catalog-filters,
.lead-form,
.contact-panel {
	padding: 24px;
}

.hero-section h1 {
	font-size: clamp(2.5rem, 8vw, 5.5rem);
	max-width: 10ch;
}

.hero-section__text,
.page-hero p,
.product-single__summary,
.content-entry,
.promo-card p,
.product-card__text {
	color: var(--text-muted);
}

.hero-section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.hero-section__panel {
	background:
		linear-gradient(135deg, rgba(39, 169, 255, 0.12), rgba(255, 209, 102, 0.24)),
		var(--surface);
}

.hero-section__panel-title {
	margin: 0 0 12px;
	font-weight: 700;
}

.hero-section__list {
	padding-left: 18px;
	margin: 0;
	display: grid;
	gap: 10px;
}

.chip-grid,
.card-grid,
.advantage-grid {
	display: grid;
	gap: 16px;
}

.chip-card,
.category-card,
.advantage-card {
	padding: 20px;
}

.chip-card {
	background: linear-gradient(135deg, rgba(39, 169, 255, 0.12), rgba(255, 255, 255, 0.98));
	min-height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.chip-card strong,
.category-card h3,
.advantage-card h3,
.product-card__title,
.promo-card h3 {
	margin: 0;
	font-family: var(--font-heading);
	letter-spacing: -0.03em;
}

.chip-card span,
.category-card p {
	color: var(--text-muted);
}

.card-grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid--promo {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card,
.promo-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.product-card__media,
.promo-card__media {
	min-height: 220px;
	background: linear-gradient(180deg, rgba(39, 169, 255, 0.08), rgba(9, 26, 45, 0.02));
}

.product-card__media img,
.promo-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 220px;
	padding: 20px;
	color: var(--text-muted);
}

.product-card__body,
.promo-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
}

.product-card__eyebrow,
.promo-card__eyebrow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--primary-strong);
}

.product-card__meta,
.product-card__actions,
.promo-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}

.product-card__meta strong {
	font-size: 1.15rem;
}

.page-hero__aside {
	background: linear-gradient(180deg, #0b1728, #14385c);
	color: var(--text-inverse);
}

.catalog-layout {
	display: grid;
	gap: 20px;
}

.catalog-filters form,
.lead-form {
	display: grid;
	gap: 16px;
}

.catalog-filters h2,
.lead-form h3 {
	margin: 0;
	font-size: 1.35rem;
}

.catalog-filters__field,
.lead-form__field {
	display: grid;
	gap: 8px;
}

.catalog-filters label,
.lead-form label {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--text-muted);
}

.catalog-filters select,
.lead-form input,
.lead-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--surface-border);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--text);
}

.catalog-filters__actions,
.lead-form__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}

.lead-form__grid {
	display: grid;
	gap: 14px;
}

.lead-form--compact .lead-form__header p {
	display: none;
}

.lead-form__notice {
	padding: 14px 16px;
	border-radius: 16px;
	font-weight: 700;
}

.lead-form__notice--success {
	background: var(--success);
	color: var(--success-text);
}

.lead-form__notice--error {
	background: var(--error);
	color: var(--error-text);
}

.lead-form__policy {
	margin: 0;
	max-width: 32ch;
	font-size: 0.88rem;
	color: var(--text-muted);
}

.lead-form__trap {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.lead-form__checkbox {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	max-width: 40ch;
	font-size: 0.92rem;
	color: var(--text-muted);
}

.lead-form__checkbox input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
}

.lead-form__checkbox a {
	color: var(--primary-strong);
	text-decoration: underline;
}

.section--contrast .lead-form {
	background: rgba(255, 255, 255, 0.98);
	color: var(--text);
}

.section--contrast .lead-section__intro p,
.section--contrast .lead-section__intro h2 {
	color: var(--text-inverse);
}

.lead-section__intro h2 {
	font-size: clamp(2rem, 4vw, 4rem);
	margin: 0 0 16px;
	font-family: var(--font-heading);
	line-height: 1.05;
}

.contact-list {
	display: grid;
	gap: 12px;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.contact-actions--stack {
	flex-direction: column;
	align-items: stretch;
}

.button--contact {
	min-width: 0;
}

.contact-list--large {
	font-size: 1.05rem;
}

.contact-panel {
	display: grid;
	gap: 18px;
}

.product-single {
	display: grid;
	gap: 20px;
}

.product-single__gallery {
	display: grid;
	gap: 14px;
}

.product-single__image {
	overflow: hidden;
	padding: 0;
	min-height: 220px;
}

.product-single__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-single__image--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	color: var(--text-muted);
}

.product-single__content {
	display: grid;
	gap: 18px;
}

.product-meta-list {
	display: grid;
	gap: 12px;
}

.product-meta-list div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(19, 34, 56, 0.06);
}

.product-meta-list span {
	color: var(--text-muted);
}

.product-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.content-card--wide {
	display: grid;
	gap: 18px;
}

.content-entry > *:first-child {
	margin-top: 0;
}

.content-entry > *:last-child {
	margin-bottom: 0;
}

.spec-list {
	display: grid;
	gap: 12px;
}

.spec-list li {
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(39, 169, 255, 0.08);
}

.promo-cover {
	overflow: hidden;
	border-radius: var(--radius-md);
}

.advantage-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.advantage-card {
	min-height: 160px;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(145deg, #25a9ff, #7ed5ff);
	color: var(--text-inverse);
}

.site-footer {
	padding: 32px 0 24px;
	background: linear-gradient(180deg, #0d1622, #07111d);
	color: var(--text-inverse);
}

.site-footer__grid {
	display: grid;
	gap: 20px;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__contacts,
.site-footer__form {
	padding: 24px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer h3 {
	margin-top: 0;
}

.menu--footer a,
.site-footer a,
.site-footer p,
.site-footer li {
	color: rgba(249, 251, 255, 0.82);
}

.site-footer .lead-form label,
.site-footer .lead-form__header p,
.site-footer .lead-form__checkbox {
	color: rgba(249, 251, 255, 0.88);
}

.site-footer .lead-form__checkbox a {
	color: #8ddcff;
}

.site-footer .button--ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--text-inverse);
}

.site-footer__bottom {
	padding-top: 18px;
	font-size: 0.88rem;
	color: rgba(249, 251, 255, 0.56);
}

.empty-state {
	color: var(--text-muted);
}

.empty-state--panel {
	padding: 32px;
	text-align: center;
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.pagination-wrap {
	margin-top: 28px;
}

.pagination-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pagination-wrap .page-numbers {
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.stack {
	display: grid;
	gap: 20px;
}

.lead-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 20px;
}

.lead-modal[hidden] {
	display: none;
}

.lead-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 17, 29, 0.64);
}

.lead-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 640px);
	padding: 28px;
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: 0 36px 100px rgba(7, 17, 29, 0.3);
}

.lead-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: rgba(19, 34, 56, 0.08);
	font-size: 1.6rem;
	cursor: pointer;
}

@media (min-width: 768px) {
	.section,
	.page-hero,
	.hero-section {
		padding: 40px 0;
	}

	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 18px;
	}

	.site-header__toggle {
		display: none;
	}

	.site-nav {
		display: block;
		grid-column: auto;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	.menu {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.site-header__actions {
		grid-column: auto;
		justify-content: flex-end;
	}

	.hero-section__grid,
	.page-hero__grid,
	.lead-section {
		grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
		align-items: stretch;
	}

	.catalog-layout {
		grid-template-columns: 320px minmax(0, 1fr);
		align-items: start;
	}

	.two-column-layout {
		grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
		align-items: start;
	}

	.product-single {
		grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
		align-items: start;
	}

	.product-single__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-single__gallery .product-single__image:first-child {
		grid-column: 1 / -1;
		min-height: 420px;
	}

	.lead-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lead-form__field--full {
		grid-column: 1 / -1;
	}

	.site-footer__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		align-items: start;
	}
}

@media (min-width: 1024px) {
	.section,
	.page-hero,
	.hero-section {
		padding: 56px 0;
	}

	.hero-section h1 {
		max-width: 11ch;
	}

	.card-grid {
		gap: 20px;
	}
}

/* Visual refresh aligned to docs screenshot references. */
:root {
	--bg: #f5f7fb;
	--bg-soft: #edf2fa;
	--surface: #ffffff;
	--surface-soft: #f8faff;
	--surface-strong: #353745;
	--surface-muted: #657ca5;
	--surface-border: rgba(53, 55, 69, 0.12);
	--text: #353745;
	--text-muted: #72798b;
	--text-soft: #9699a5;
	--text-inverse: #f8fbff;
	--primary: #2d55cd;
	--primary-strong: #2347b0;
	--accent: #657ca5;
	--success: #e5f4ea;
	--success-text: #1f5e36;
	--error: #fff0f1;
	--error-text: #a01f35;
	--shadow: 0 24px 72px rgba(44, 53, 78, 0.08);
	--shadow-soft: 0 18px 48px rgba(44, 53, 78, 0.06);
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 10px;
	--container: 1320px;
	--font-body: "Inter Tight", "Avenir Next", "Trebuchet MS", sans-serif;
	--font-heading: "Jost", "Arial Narrow", "Avenir Next Condensed", sans-serif;
}

body {
	font-family: var(--font-body);
	background: linear-gradient(180deg, #f5f7fb 0%, #fbfcff 100%);
	color: var(--text);
}

.site-main {
	padding-bottom: 72px;
}

.section,
.page-hero,
.hero-section {
	padding: 44px 0;
}

.section--soft {
	background: linear-gradient(180deg, rgba(101, 124, 165, 0.06), rgba(255, 255, 255, 0));
}

.section-kicker {
	margin: 0 0 10px;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--surface-muted);
}

.section-heading {
	gap: 10px;
	margin-bottom: 34px;
}

.section-heading h2,
.hero-section h1,
.page-hero h1,
.content-card h1,
.content-card h2,
.product-single__content h1,
.lead-modal__dialog h2,
.hero-showcase__card h2 {
	font-family: var(--font-heading);
	letter-spacing: -0.045em;
}

.section-heading h2,
.page-hero h1,
.content-card h1,
.product-single__content h1,
.lead-modal__dialog h2 {
	font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.button {
	padding: 14px 22px;
	border-radius: 8px;
	min-height: 52px;
	font-size: 0.96rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	transform: none;
}

.button:hover {
	transform: none;
}

.button--primary {
	background: var(--primary);
	box-shadow: none;
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--primary-strong);
}

.button--ghost {
	background: #fff;
	border-color: rgba(45, 85, 205, 0.34);
	color: var(--primary);
}

.button--header {
	min-width: 200px;
}

.site-header {
	background: rgba(101, 124, 165, 0.94);
	border-bottom: 0;
	backdrop-filter: blur(10px);
}

.site-header__inner {
	padding: 12px 0;
	gap: 16px;
}

.site-branding__name,
.site-footer__name {
	font-family: var(--font-heading);
	letter-spacing: -0.05em;
}

.site-branding__name {
	color: var(--text-inverse);
	font-size: 2rem;
	line-height: 0.92;
}

.site-branding__tagline {
	max-width: 30ch;
	color: rgba(248, 251, 255, 0.74);
	font-size: 0.78rem;
	line-height: 1.35;
}

.site-header__toggle {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.16);
}

.site-header__toggle span:not(.screen-reader-text) {
	background: var(--text-inverse);
}

.site-nav {
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.menu {
	gap: 14px;
}

.menu a {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-header__actions {
	gap: 16px;
}

.site-header__contact {
	display: grid;
	gap: 2px;
}

.site-header__contact-label {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(248, 251, 255, 0.64);
}

.site-header__phone {
	color: var(--text-inverse);
	font-size: 1rem;
	font-weight: 600;
}

.hero-section__grid,
.page-hero__grid,
.two-column-layout,
.lead-section,
.catalog-layout,
.product-single {
	gap: 28px;
}

.hero-section__content,
.hero-section__panel,
.page-hero__aside,
.content-card,
.catalog-filters,
.lead-form,
.product-card,
.promo-card,
.advantage-card,
.category-card,
.chip-card,
.contact-panel,
.product-single__image {
	border-radius: var(--radius-lg);
	border: 1px solid rgba(53, 55, 69, 0.08);
	box-shadow: var(--shadow-soft);
}

.hero-section__content,
.page-hero__aside,
.content-card,
.catalog-filters,
.lead-form,
.contact-panel {
	padding: 32px;
}

.hero-section__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 560px;
	overflow: hidden;
	background: linear-gradient(135deg, #7188b2 0%, #5c77a7 38%, #8ea4c8 100%);
	color: var(--text-inverse);
}

.hero-section__content::before {
	content: "";
	position: absolute;
	inset: auto auto -80px -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	filter: blur(10px);
}

.hero-section__content::after {
	content: "";
	position: absolute;
	top: 28px;
	right: 28px;
	width: 120px;
	height: 120px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
}

.hero-section__content > * {
	position: relative;
	z-index: 1;
}

.hero-section__content .section-kicker {
	color: rgba(248, 251, 255, 0.72);
}

.hero-section h1 {
	max-width: 8ch;
	font-size: clamp(3.3rem, 6vw, 6rem);
}

.hero-section__text {
	max-width: 42ch;
	color: rgba(248, 251, 255, 0.88);
	font-size: 1rem;
}

.hero-section__actions {
	margin-top: 28px;
}

.hero-section__actions .button--ghost {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.18);
	color: var(--text-inverse);
}

.hero-section__facts {
	display: grid;
	gap: 12px;
	margin-top: 32px;
}

.hero-fact {
	display: grid;
	gap: 4px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-fact strong {
	font-size: 1rem;
	font-weight: 600;
}

.hero-fact span {
	color: rgba(248, 251, 255, 0.82);
}

.hero-section__visual {
	display: flex;
}

.hero-showcase {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 560px;
	padding: 24px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #eff3fa 0%, #dce6f4 100%);
	box-shadow: var(--shadow);
}

.hero-showcase::before {
	content: "";
	position: absolute;
	top: -90px;
	right: -60px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(45, 85, 205, 0.12);
	filter: blur(10px);
}

.hero-showcase__media,
.hero-showcase__card {
	position: relative;
	z-index: 1;
}

.hero-showcase__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 24px;
}

.hero-showcase__media img {
	width: 100%;
	max-height: 340px;
	object-fit: contain;
	filter: drop-shadow(0 28px 56px rgba(53, 55, 69, 0.16));
}

.hero-showcase__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 280px;
	padding: 24px;
	text-align: center;
	color: var(--text-muted);
	border-radius: 20px;
	border: 1px dashed rgba(53, 55, 69, 0.16);
	background: rgba(255, 255, 255, 0.55);
}

.hero-showcase__card {
	width: min(100%, 420px);
	margin-left: auto;
	padding: 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 20px 54px rgba(53, 55, 69, 0.08);
}

.hero-showcase__eyebrow {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--surface-muted);
}

.hero-showcase__card h2 {
	margin: 0;
	font-size: clamp(1.6rem, 2.2vw, 2.4rem);
	line-height: 0.98;
}

.hero-showcase__card p {
	margin: 12px 0 0;
	color: var(--text-muted);
}

.hero-showcase__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.hero-showcase__meta span,
.product-card__badge {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(45, 85, 205, 0.08);
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 600;
}

.hero-showcase__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 20px;
}

.hero-showcase__footer strong {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 2.2vw, 2.5rem);
	letter-spacing: -0.04em;
}

.chip-grid,
.card-grid,
.advantage-grid {
	gap: 20px;
}

.chip-card,
.category-card,
.advantage-card {
	padding: 24px;
}

.chip-card {
	min-height: 180px;
	background: linear-gradient(180deg, #fff 0%, #f1f5fb 100%);
}

.category-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 220px;
	background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
}

.category-card p {
	max-width: 24ch;
}

.advantage-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.advantage-card {
	min-height: 220px;
	align-items: flex-start;
	background: linear-gradient(135deg, #6c84b5 0%, #4e689a 100%);
	color: var(--text-inverse);
}

.advantage-card h3 {
	max-width: 12ch;
	font-size: clamp(1.25rem, 2vw, 1.8rem);
	line-height: 1.02;
}

.card-grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card,
.promo-card {
	overflow: hidden;
	border-radius: 14px;
	box-shadow: none;
}

.product-card__media,
.promo-card__media {
	position: relative;
	min-height: 290px;
	padding: 20px;
	background: linear-gradient(180deg, #fcfdff 0%, #eff4fa 100%);
}

.product-card__topline {
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	z-index: 1;
}

.product-card__quicklink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(53, 55, 69, 0.14);
	background: rgba(255, 255, 255, 0.92);
	color: var(--surface-strong);
	font-size: 1rem;
}

.product-card__media img,
.promo-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-card__placeholder {
	min-height: 250px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
}

.product-card__body,
.promo-card__body {
	padding: 18px 18px 20px;
	gap: 12px;
}

.product-card__eyebrow,
.promo-card__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-soft);
}

.product-card__title {
	font-size: 1.12rem;
	line-height: 1.2;
}

.product-card__text,
.promo-card p {
	font-size: 0.94rem;
}

.product-card__meta {
	align-items: flex-end;
}

.product-card__meta strong {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: -0.04em;
}

.product-card__meta span {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-soft);
}

.product-card__actions {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: stretch;
	gap: 10px;
}

.product-card__actions .button {
	width: 100%;
}

.page-hero__aside {
	border: 0;
	background: linear-gradient(180deg, #586f9e 0%, #435b8f 100%);
}

.catalog-filters {
	padding: 26px;
	background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
}

.catalog-filters select,
.lead-form input,
.lead-form textarea {
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid rgba(53, 55, 69, 0.16);
	border-radius: 0;
	background: transparent;
}

.catalog-filters select:focus,
.lead-form input:focus,
.lead-form textarea:focus {
	outline: none;
	border-bottom-color: var(--primary);
}

.catalog-results {
	display: grid;
	gap: 18px;
}

.catalog-results__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(53, 55, 69, 0.08);
}

.catalog-results__kicker {
	margin: 0 0 4px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-soft);
}

.catalog-results__count {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 2vw, 2rem);
	letter-spacing: -0.04em;
}

.product-single__content {
	padding: 28px;
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(53, 55, 69, 0.08);
}

.product-single__image {
	min-height: 280px;
	background: linear-gradient(180deg, #ffffff 0%, #f1f5fb 100%);
}

.product-single__image img {
	object-fit: contain;
}

.product-meta-list div {
	padding: 16px 18px;
	border-radius: 12px;
	background: rgba(101, 124, 165, 0.05);
	border-color: rgba(101, 124, 165, 0.12);
}

.spec-list li {
	border-radius: 12px;
	background: rgba(101, 124, 165, 0.06);
}

.lead-form {
	padding: 28px;
	background: #fff;
}

.site-footer {
	padding: 44px 0 24px;
	background: linear-gradient(180deg, #657ca5 0%, #7189af 100%);
}

.site-footer__grid {
	gap: 18px;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__contacts,
.site-footer__form {
	padding: 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__eyebrow {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(248, 251, 255, 0.72);
}

.site-footer__name {
	margin: 0 0 12px;
	font-size: 2rem;
	line-height: 0.92;
	color: var(--text-inverse);
}

.menu--footer {
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.site-footer__bottom {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .lead-form {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

.site-footer .lead-form input,
.site-footer .lead-form textarea {
	color: var(--text-inverse);
	border-bottom-color: rgba(255, 255, 255, 0.24);
}

.site-footer .lead-form input::placeholder,
.site-footer .lead-form textarea::placeholder {
	color: rgba(248, 251, 255, 0.48);
}

.site-footer .button--primary {
	background: #fff;
	color: var(--primary);
}

.site-footer .button--primary:hover,
.site-footer .button--primary:focus-visible {
	background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
	.site-header__actions {
		grid-column: 1 / -1;
		justify-content: space-between;
	}

	.site-header__actions .button {
		width: 100%;
	}

	.hero-section__content,
	.hero-showcase {
		min-height: auto;
	}

	.hero-section__content,
	.page-hero__aside,
	.content-card,
	.catalog-filters,
	.lead-form,
	.contact-panel {
		padding: 24px;
	}

	.hero-showcase__card {
		width: 100%;
	}

	.product-card__actions {
		grid-template-columns: 1fr;
	}

	.catalog-results__head {
		align-items: flex-start;
	}
}

@media (min-width: 768px) {
	.site-nav {
		background: transparent;
		box-shadow: none;
	}

	.site-nav .menu a {
		color: rgba(248, 251, 255, 0.84);
	}

	.site-nav .current-menu-item > a,
	.site-nav .current_page_item > a,
	.site-nav .current-menu-ancestor > a {
		color: var(--text-inverse);
	}

	.hero-section__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	}

	.catalog-layout {
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.catalog-filters {
		position: sticky;
		top: 92px;
	}
}

@media (min-width: 1024px) {
	.section,
	.page-hero,
	.hero-section {
		padding: 64px 0;
	}

	.hero-section__content,
	.hero-showcase {
		min-height: 610px;
	}

	.card-grid {
		gap: 22px;
	}
}

.product-single__gallery-wrap {
	display: grid;
	gap: 14px;
}

.product-single__image {
	position: relative;
}

.product-single__image-label {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--surface-strong);
	font-size: 0.76rem;
	font-weight: 600;
}

.product-single__price {
	font-family: var(--font-heading);
	font-size: clamp(2.2rem, 3vw, 3.3rem);
	line-height: 0.95;
	letter-spacing: -0.05em;
	color: var(--surface-strong);
}

.product-single__note {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.contact-page,
.about-page__intro {
	display: grid;
	gap: 28px;
}

.contact-page__info,
.contact-page__form,
.about-page__lead {
	padding: 32px;
}

.contact-page__summary,
.about-page__summary {
	max-width: 42ch;
	font-size: 1rem;
	color: var(--text-muted);
}

.contact-page__tiles,
.team-grid {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.info-tile,
.team-card {
	padding: 20px;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f2f6fc 100%);
	border: 1px solid rgba(53, 55, 69, 0.08);
}

.info-tile h3,
.team-card h3,
.value-row__content h3 {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: clamp(1.2rem, 1.8vw, 1.6rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.info-tile p,
.team-card p,
.value-row__content p {
	margin: 0;
	color: var(--text-muted);
}

.about-values {
	display: grid;
	gap: 18px;
}

.value-row {
	display: grid;
	gap: 12px;
	padding: 22px 24px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(53, 55, 69, 0.08);
	box-shadow: var(--shadow-soft);
}

.value-row__index {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--surface-muted);
}

.team-card {
	display: grid;
	gap: 12px;
}

.team-card__avatar {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 5 / 6;
	border-radius: 18px;
	background: linear-gradient(180deg, #f2f6fc 0%, #dce6f3 100%);
}

.team-card__avatar::before {
	content: "";
	position: absolute;
	top: 18%;
	left: 50%;
	width: 34%;
	aspect-ratio: 1;
	transform: translateX(-50%);
	border-radius: 50%;
	background: #f2d8c7;
	box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.28);
}

.team-card__avatar::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -3%;
	width: 68%;
	height: 48%;
	transform: translateX(-50%);
	border-radius: 42% 42% 18% 18% / 34% 34% 14% 14%;
	background: linear-gradient(180deg, #ffffff 0%, #dfe8f4 100%);
}

.team-card__avatar--1 {
	background:
		radial-gradient(circle at 50% 20%, rgba(78, 101, 138, 0.42) 0 18%, transparent 19%),
		linear-gradient(180deg, #edf3fb 0%, #d7e2f1 100%);
}

.team-card__avatar--2 {
	background:
		radial-gradient(circle at 50% 18%, rgba(158, 108, 86, 0.26) 0 20%, transparent 21%),
		linear-gradient(180deg, #f7f2ee 0%, #e7dcd4 100%);
}

.team-card__avatar--3 {
	background:
		radial-gradient(circle at 50% 18%, rgba(89, 101, 125, 0.36) 0 18%, transparent 19%),
		linear-gradient(180deg, #f1f4f8 0%, #d6dde7 100%);
}

.team-card__avatar--4 {
	background:
		radial-gradient(circle at 50% 18%, rgba(92, 72, 72, 0.34) 0 19%, transparent 20%),
		linear-gradient(180deg, #f7f0ef 0%, #e6d8d6 100%);
}

.team-card p {
	max-width: 28ch;
}

@media (min-width: 768px) {
	.contact-page {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
		align-items: start;
	}

	.about-page__intro {
		grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
		align-items: start;
	}

	.contact-page__tiles,
	.team-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.team-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.value-row {
		grid-template-columns: 84px minmax(0, 1fr);
		align-items: start;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.contact-page__info,
	.contact-page__form,
	.about-page__lead {
		padding: 24px;
	}

	.team-card__avatar {
		aspect-ratio: 4 / 5;
	}
}

.advantage-rows {
	display: grid;
	gap: 18px;
}

.advantage-row {
	display: grid;
	gap: 12px;
	padding: 24px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(53, 55, 69, 0.08);
	box-shadow: var(--shadow-soft);
}

.advantage-row__index {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--surface-muted);
}

.advantage-row__content h3 {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 1.8vw, 1.7rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.advantage-row__content p {
	margin: 0;
	max-width: 52ch;
	color: var(--text-muted);
}

.editorial-panel {
	display: grid;
	gap: 28px;
	padding: 28px;
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f2f6fc 100%);
	border: 1px solid rgba(53, 55, 69, 0.08);
	box-shadow: var(--shadow-soft);
}

.editorial-panel__visual {
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #edf2fa 100%);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
}

.editorial-panel__visual img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 24px 48px rgba(44, 53, 78, 0.12));
}

.editorial-panel__content {
	display: grid;
	gap: 18px;
}

.editorial-panel__content > p:not(.section-kicker) {
	max-width: 58ch;
	color: var(--text-muted);
}

.editorial-panel__content h2 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3.5vw, 3.6rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.editorial-points {
	display: grid;
	gap: 14px;
}

.editorial-point {
	display: grid;
	gap: 10px;
	padding: 18px 0;
	border-top: 1px solid rgba(53, 55, 69, 0.08);
}

.editorial-point__index {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--surface-muted);
}

.editorial-point h3 {
	margin: 0 0 6px;
	font-family: var(--font-heading);
	font-size: clamp(1.2rem, 1.8vw, 1.55rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.editorial-point p {
	margin: 0;
	color: var(--text-muted);
}

.editorial-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.lead-section__intro--light h2,
.lead-section__intro--light p {
	color: var(--text);
}

.lead-section__intro--light p:not(.section-kicker) {
	color: var(--text-muted);
}

.lead-section__form--light .lead-form {
	border: 1px solid rgba(53, 55, 69, 0.08);
	box-shadow: var(--shadow-soft);
}

.catalog-filters__intro {
	margin: -4px 0 8px;
	max-width: 28ch;
	font-size: 0.92rem;
	color: var(--text-muted);
}

.catalog-results .card-grid {
	align-items: stretch;
}

.catalog-results .product-card,
.catalog-results .promo-card {
	height: 100%;
}

.pagination-wrap .nav-links {
	justify-content: center;
}

.pagination-wrap .page-numbers {
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 8px;
	box-shadow: none;
	border: 1px solid rgba(53, 55, 69, 0.1);
	background: #fff;
	color: var(--text);
	font-size: 0.92rem;
	font-weight: 600;
}

.pagination-wrap .page-numbers.current {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--text-inverse);
}

@media (min-width: 768px) {
	.advantage-row {
		grid-template-columns: 84px minmax(0, 1fr);
		align-items: start;
		gap: 20px;
	}

	.editorial-panel {
		grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
		align-items: stretch;
	}

	.editorial-point {
		grid-template-columns: 80px minmax(0, 1fr);
		align-items: start;
		gap: 18px;
	}

	.catalog-results .card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ui-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
}

.ui-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-header__actions {
	align-items: center;
}

.site-header__contact-label,
.site-header__phone,
.contact-actions .button--contact,
.site-header__quicklink,
.product-card__quicklink {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-header__contact-label .ui-icon,
.site-header__phone .ui-icon {
	color: rgba(248, 251, 255, 0.78);
}

.site-header__quick-actions {
	margin-top: 0;
}

.site-header__quicklink {
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(248, 251, 255, 0.22);
	background: rgba(248, 251, 255, 0.1);
	color: var(--text-inverse);
}

.site-header__quicklink:hover,
.site-header__quicklink:focus-visible {
	background: rgba(248, 251, 255, 0.16);
	border-color: rgba(248, 251, 255, 0.34);
}

.contact-actions .button--contact {
	justify-content: center;
}

.contact-actions--icon-only .contact-actions__label {
	display: none;
}

.lead-form {
	gap: 22px;
}

.lead-form__field {
	gap: 10px;
}

.lead-form label {
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-soft);
}

.lead-form input,
.lead-form textarea {
	padding: 10px 0 12px;
	border: 0;
	border-bottom: 1px solid rgba(53, 55, 69, 0.16);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.lead-form textarea {
	min-height: 108px;
	resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
	color: rgba(53, 55, 69, 0.42);
}

.lead-form input:focus,
.lead-form textarea:focus {
	border-bottom-color: var(--primary);
}

.lead-form input:invalid:not(:focus):not(:placeholder-shown),
.lead-form textarea:invalid:not(:focus):not(:placeholder-shown) {
	border-bottom-color: #e06b75;
}

.lead-form__footer {
	align-items: flex-end;
}

.lead-form__checkbox {
	gap: 12px;
	font-size: 0.86rem;
}

.lead-form__checkbox input {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	accent-color: var(--primary);
}

.lead-form__notice--error {
	background: rgba(224, 107, 117, 0.14);
	color: #8f2730;
}

.site-footer .lead-form label,
.site-footer .lead-form__checkbox {
	color: rgba(248, 251, 255, 0.72);
}

.site-footer .lead-form input,
.site-footer .lead-form textarea {
	color: var(--text-inverse);
	border-bottom-color: rgba(248, 251, 255, 0.24);
}

.site-footer .lead-form input::placeholder,
.site-footer .lead-form textarea::placeholder {
	color: rgba(248, 251, 255, 0.48);
}

.site-footer .lead-form input:focus,
.site-footer .lead-form textarea:focus {
	border-bottom-color: #fff;
}

.site-footer .lead-form input:invalid:not(:focus):not(:placeholder-shown),
.site-footer .lead-form textarea:invalid:not(:focus):not(:placeholder-shown) {
	border-bottom-color: rgba(255, 181, 186, 0.92);
}

.product-card__quicklink {
	gap: 0;
}

.details-group {
	display: grid;
	gap: 12px;
}

.details-card {
	padding: 0 24px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(53, 55, 69, 0.08);
	box-shadow: var(--shadow-soft);
}

.details-card summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-heading);
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	letter-spacing: -0.04em;
}

.details-card summary::-webkit-details-marker {
	display: none;
}

.details-card summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(53, 55, 69, 0.14);
	color: var(--primary);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	transition: transform 0.2s ease;
}

.details-card[open] summary::after {
	transform: rotate(45deg);
}

.details-card__content {
	padding: 0 0 24px;
	color: var(--text-muted);
}

.details-card__content > :first-child {
	margin-top: 0;
}

.details-card__content > :last-child {
	margin-bottom: 0;
}

.product-single__note {
	max-width: 34ch;
}

@media (max-width: 767px) {
	.site-header__quick-actions {
		width: 100%;
		justify-content: flex-start;
	}

	.details-card {
		padding: 0 18px;
	}

	.details-card summary {
		padding: 18px 0;
		font-size: 1.15rem;
	}
}

.page-hero__grid,
.two-column-layout {
	align-items: start;
}

.page-hero__copy {
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 32px;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
	border: 1px solid rgba(53, 55, 69, 0.08);
	box-shadow: var(--shadow-soft);
}

.page-hero__copy p:not(.section-kicker) {
	max-width: 56ch;
	color: var(--text-muted);
}

.page-hero__copy--wide {
	gap: 20px;
}

.content-entry {
	max-width: 68ch;
}

.content-entry p,
.content-entry li {
	color: var(--text-muted);
}

.content-entry h2,
.content-entry h3,
.content-entry h4 {
	color: var(--surface-strong);
}

.hero-showcase__media {
	position: relative;
	min-height: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(226, 234, 247, 0.92) 100%);
}

.hero-showcase__media::before {
	content: "";
	position: absolute;
	inset: auto auto -28px -28px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(45, 85, 205, 0.09);
	filter: blur(4px);
}

.hero-showcase__media img {
	max-height: none;
	height: 100%;
}

.product-card__media,
.promo-card__media {
	min-height: 0;
	aspect-ratio: 5 / 4;
}

.card-grid--promo .promo-card__media {
	aspect-ratio: 16 / 11;
}

.product-card__placeholder {
	min-height: 0;
	aspect-ratio: 5 / 4;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(235, 241, 250, 0.88) 100%);
}

.product-single__image {
	min-height: 0;
	aspect-ratio: 4 / 3;
}

.promo-cover {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	aspect-ratio: 16 / 10;
	padding: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #edf3fb 100%);
}

.promo-cover::before {
	content: "";
	position: absolute;
	top: -28px;
	right: -28px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(45, 85, 205, 0.08);
}

.promo-cover img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 24px 42px rgba(53, 55, 69, 0.12));
}

.promo-card,
.content-card,
.page-hero__copy,
.contact-page__info,
.contact-page__form,
.about-page__lead {
	background-clip: padding-box;
}

.promo-card__body p {
	max-width: 32ch;
}

.info-tile,
.team-card,
.value-row,
.advantage-row {
	background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.about-page__intro .content-card--wide,
.contact-page__info,
.contact-page__form,
.page-hero__copy {
	min-height: 100%;
}

@media (max-width: 767px) {
	.page-hero__copy {
		padding: 24px;
	}

	.content-entry {
		max-width: none;
	}
}
