/* Measys corporate B2B lead-gen — blue / green / orange theme */
:root {
	--white: #ffffff;
	--bg: #f6fafd;
	--bg-alt: #e3f0fb;
	--text: #5a5a5a;
	--text-muted: #6b6f85;
	--heading: #004066;
	--brand: #1a92d0;
	--brand-hover: #006aa8;
	--brand-purple: #ff9500;
	--brand-purple-soft: #fff4e5;
	--brand-cyan: #1a92d0;
	--brand-light: #cee6fb;
	--brand-green: #62ae3c;
	--brand-purple-hover: #e08600;
	--border: #e4e6f0;
	--border-dark: #c8cbd9;
	--topbar: #004066;
	--footer: #0f1c35;
	--wrap: 1140px;
	--font: "Open Sans", Arial, Helvetica, sans-serif;
	--radius: 6px;
	--shadow: 0 1px 3px rgba(11, 11, 42, 0.06);
	--shadow-md: 0 4px 16px rgba(11, 11, 42, 0.08);
	--shadow-lg: 0 12px 32px rgba(11, 11, 42, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.wrap {
	width: min(100% - 2rem, var(--wrap));
	margin: 0 auto;
}

/* Top bar */
.topbar {
	background: var(--topbar);
	color: #fff;
	font-size: 13px;
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	padding: 0.6rem 0;
}

.topbar__label { opacity: 0.8; }

.topbar__phone {
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.02em;
}

.topbar__phone:hover { text-decoration: underline; }

.topbar__chat {
	color: var(--brand-cyan);
	font-weight: 600;
}

.topbar__chat:hover { text-decoration: underline; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.7rem 1.4rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
	text-align: center;
	line-height: 1.3;
}

.btn--sm { padding: 0.5rem 1.1rem; font-size: 13px; }
.btn--lg { padding: 0.9rem 1.8rem; font-size: 15px; }

.btn__play {
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 0.15rem;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent currentColor;
}

.btn--primary {
	background: var(--brand-cyan);
	border-color: var(--brand-cyan);
	color: #fff;
}

.btn--primary:hover {
	background: var(--brand);
	border-color: var(--brand);
	box-shadow: 0 4px 14px rgba(0, 194, 255, 0.28);
}

.btn--cyan {
	background: var(--brand-cyan);
	border-color: var(--brand-cyan);
	color: #fff;
}

.btn--cyan:hover {
	background: var(--brand);
	border-color: var(--brand);
	box-shadow: 0 4px 14px rgba(0, 194, 255, 0.28);
}

.btn--purple {
	background: var(--brand-purple);
	border-color: var(--brand-purple);
	color: #fff;
}

.btn--purple:hover {
	background: var(--brand-purple-hover);
	border-color: var(--brand-purple-hover);
	box-shadow: 0 4px 14px rgba(255, 149, 0, 0.28);
}

.btn--accent {
	background: var(--brand-purple);
	border-color: var(--brand-purple);
	color: #fff;
}

.btn--accent:hover {
	background: var(--brand-purple-hover);
	border-color: var(--brand-purple-hover);
	box-shadow: 0 4px 14px rgba(255, 149, 0, 0.28);
}

.btn__chat {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 0.15rem;
	background: center / contain no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 10h8M8 14h5M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 18.5L5 21v-3.5'/%3E%3C/svg%3E");
}

.btn--outline {
	background: var(--white);
	border-color: var(--border-dark);
	color: var(--heading);
}

.btn--outline:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.btn--dark {
	background: var(--topbar);
	border-color: var(--topbar);
	color: #fff;
}

/* Header */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--border);
	transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.header.is-scrolled {
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom-color: rgba(228, 230, 240, 0.85);
	box-shadow: var(--shadow-md);
}

.header.is-scrolled .header__mobile {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 0.5rem 0;
}

.header__logo img {
	display: block;
	height: 42px;
	width: auto;
}

.header__nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.header__nav a {
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
}

.header__nav a:hover { color: var(--brand); }

.header__actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	cursor: pointer;
}

.header__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--heading);
}

.header__mobile {
	display: none;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.5rem 1rem 1rem;
	border-top: 1px solid var(--border);
	background: var(--white);
}

.header__mobile.is-open { display: flex; }

.header__mobile a {
	padding: 0.65rem 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--heading);
}

/* Hero */
.hero {
	padding: 3.5rem 0 3rem;
	background:
		linear-gradient(180deg, #e3f0fb 0%, #cee6fb 45%, #ffffff 100%);
	border-bottom: 1px solid var(--border);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3.5rem;
	align-items: center;
}

.hero__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--brand);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero__title {
	margin: 0 0 1rem;
	color: var(--heading);
	font-size: clamp(1.7rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.01em;
}

.hero__lead {
	margin: 0 0 1.5rem;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.65;
	max-width: 540px;
}

.hero__list {
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
	columns: 2;
	column-gap: 2rem;
}

.hero__list li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.4rem 0;
	font-size: 14px;
	color: var(--text);
	break-inside: avoid;
}

.hero__list-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background-color: #cee6fb;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	box-shadow: inset 0 0 0 1px rgba(26, 146, 208, 0.12);
}

.hero__list-icon--hardware {
	background-color: #dbeafe;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a92d0' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath stroke-linecap='round' d='M8 9h8M8 13h5'/%3E%3C/svg%3E");
}

.hero__list-icon--speed {
	background-color: #fff4e5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff9500' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 2L4 14h7l-1 8 10-14h-7l0-6z'/%3E%3C/svg%3E");
}

.hero__list-icon--connectivity {
	background-color: #e0f2fe;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230284c7' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M8 12h8M6 8h12M10 16h4'/%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3C/svg%3E");
}

.hero__list-icon--alarms {
	background-color: #ffedd5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ea580c' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 17h5l-1.4-1.4A2 2 0 0118 14.2V11a6 6 0 10-12 0v3.2c0 .5-.2 1-.6 1.4L4 17h5m6 0a3 3 0 11-6 0'/%3E%3C/svg%3E");
}

.hero__list-icon--products {
	background-color: #dcfce7;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2316a34a' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 7h16M4 12h16M4 17h10'/%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3C/svg%3E");
}

.hero__list-icon--monitoring {
	background-color: #e0f7ff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a92d0' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 5h16v12H4V5zM8 21h8M12 17v4'/%3E%3Cpath stroke-linecap='round' d='M7 14l3-3 2 2 5-5'/%3E%3C/svg%3E");
}

.hero__list-icon--accuracy {
	background-color: #ede9fe;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237c3aed' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath stroke-linecap='round' d='M12 4v2M12 18v2M4 12h2M18 12h2'/%3E%3C/svg%3E");
}

.hero__list-icon--expand {
	background-color: #ccfbf1;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230d9488' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 8V4h4M20 8V4h-4M4 16v4h4M20 16v4h-4'/%3E%3C/svg%3E");
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.hero__form {
	padding: 1.75rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-lg);
}

.hero__form h2 {
	margin: 0 0 1.25rem;
	color: var(--heading);
	font-size: 17px;
	font-weight: 700;
	text-align: center;
}

.hero__form .btn {
	width: 100%;
	margin-top: 0.25rem;
}

/* Specs bar (after hero form) */
.specs-bar {
	background: linear-gradient(180deg, #e3f0fb 0%, #ffffff 100%);
	border-bottom: 1px solid var(--border);
	padding: 2.5rem 0;
}

.specs-bar__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}

.specs-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.45rem;
	padding: 0.5rem 0.75rem;
	text-align: center;
}

.specs-bar__icon {
	width: 64px;
	height: 64px;
	margin-bottom: 0.55rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.specs-bar__icon--inputs {
	background-image: url("../images/specs-inputs.svg");
}

.specs-bar__icon--speed {
	background-image: url("../images/specs-speed.svg");
}

.specs-bar__icon--monitor {
	background-image: url("../images/specs-monitor.svg");
}

.specs-bar__icon--alarms {
	background-image: url("../images/specs-alerts.svg");
}

.specs-bar__icon--expand {
	background-image: url("../images/specs-expand.svg");
}

.specs-bar__item strong {
	display: block;
	color: var(--heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.specs-bar__item span:not(.specs-bar__icon) {
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.4;
}

/* Sections */
.section {
	padding: 4.5rem 0;
}

.section--alt {
	background: var(--bg);
}

.section--contact {
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
}

.section-head {
	margin-bottom: 2.75rem;
}

.section-head--center {
	text-align: center;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.section-head__label {
	margin: 0 0 0.5rem;
	color: var(--brand);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.section-head h2 {
	margin: 0;
	color: var(--heading);
	font-size: clamp(1.45rem, 2.4vw, 1.85rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.section-head__lead {
	margin: 0.9rem 0 0;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.65;
}

/* Feature grid (requirements) */
.section--features {
	background:
		radial-gradient(ellipse 50% 45% at 100% 0%, rgba(26, 146, 208, 0.08), transparent 55%),
		radial-gradient(ellipse 40% 40% at 0% 100%, rgba(98, 174, 60, 0.06), transparent 50%),
		var(--white);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.feature-card {
	position: relative;
	padding: 1.35rem 1.25rem 1.4rem;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--feature-accent, var(--brand));
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: rgba(26, 146, 208, 0.35);
}

.feature-card__icon {
	display: block;
	width: 46px;
	height: 46px;
	margin-bottom: 0.9rem;
	border-radius: 12px;
	background-color: var(--feature-icon-bg, #cee6fb);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
	box-shadow: inset 0 0 0 1px rgba(26, 146, 208, 0.1);
}

.feature-card--inputs { --feature-accent: #1a92d0; --feature-icon-bg: #dbeafe; }
.feature-card--speed { --feature-accent: #ff9500; --feature-icon-bg: #fff4e5; }
.feature-card--accuracy { --feature-accent: #7c3aed; --feature-icon-bg: #ede9fe; }
.feature-card--monitor { --feature-accent: #0284c7; --feature-icon-bg: #e0f2fe; }
.feature-card--logging { --feature-accent: #006aa8; --feature-icon-bg: #cee6fb; }
.feature-card--alarms { --feature-accent: #ea580c; --feature-icon-bg: #ffedd5; }
.feature-card--expand { --feature-accent: #62ae3c; --feature-icon-bg: #dcfce7; }
.feature-card--connectivity { --feature-accent: #0d9488; --feature-icon-bg: #ccfbf1; }

.feature-card__icon--inputs { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a92d0' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M8 12h8M6 8h12M10 16h4'/%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3C/svg%3E"); }
.feature-card__icon--speed { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff9500' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 2L4 14h7l-1 8 10-14h-7l0-6z'/%3E%3C/svg%3E"); }
.feature-card__icon--accuracy { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237c3aed' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath stroke-linecap='round' d='M12 4v2M12 18v2M4 12h2M18 12h2'/%3E%3C/svg%3E"); }
.feature-card__icon--monitor { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230284c7' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M4 5h16v12H4V5zM8 21h8M12 17v4'/%3E%3Cpath stroke-linecap='round' d='M7 14l3-3 2 2 5-5'/%3E%3C/svg%3E"); }
.feature-card__icon--logging { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23006aa8' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M6 4h12v16H6zM9 8h6M9 12h6M9 16h4'/%3E%3C/svg%3E"); }
.feature-card__icon--alarms { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ea580c' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 17h5l-1.4-1.4A2 2 0 0118 14.2V11a6 6 0 10-12 0v3.2c0 .5-.2 1-.6 1.4L4 17h5m6 0a3 3 0 11-6 0'/%3E%3C/svg%3E"); }
.feature-card__icon--expand { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2316a34a' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 8V4h4M20 8V4h-4M4 16v4h4M20 16v4h-4'/%3E%3C/svg%3E"); }
.feature-card__icon--connectivity { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230d9488' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M8 7h8v10H8zM12 7V4M5 20h14'/%3E%3Cpath stroke-linecap='round' d='M10 11h4'/%3E%3C/svg%3E"); }

.feature-card h3 {
	margin: 0 0 0.55rem;
	color: var(--heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.feature-card p {
	margin: 0;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.55;
}

/* Product grid */
.section--products {
	background:
		radial-gradient(ellipse 50% 45% at 100% 0%, rgba(0, 194, 255, 0.07), transparent 55%),
		radial-gradient(ellipse 40% 40% at 0% 100%, rgba(192, 38, 211, 0.05), transparent 50%),
		var(--white);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.product-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(0, 194, 255, 0.35);
}

.product-card__media {
	position: relative;
	overflow: hidden;
}

.product-card__img {
	height: 170px;
	background: center / cover no-repeat;
	transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
	transform: scale(1.06);
}

.product-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 42, 0.45) 100%);
	pointer-events: none;
}

.product-card__img--cost { background-image: url("../images/product-cost.jpg"); }
.product-card__img--battery { background-image: url("../images/product-range.jpg"); }
.product-card__img--industrial { background-image: url("../images/product-industrial.jpg"); }
.product-card__img--wifi { background-image: url("../images/product-wifi.jpg"); }

.product-card__tag {
	position: absolute;
	left: 0.85rem;
	top: 0.85rem;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: var(--brand-cyan);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: var(--shadow);
}

.product-card__tag-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	background: #fff;
	-webkit-mask: center / contain no-repeat;
	mask: center / contain no-repeat;
}

.product-card__tag-icon--cost {
	-webkit-mask-image: url("../images/low-cost.svg");
	mask-image: url("../images/low-cost.svg");
}

.product-card__tag-icon--battery {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='6' y='7' width='12' height='14' rx='2' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M9 7V5a3 3 0 0 1 6 0v2' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M12 11v4' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='6' y='7' width='12' height='14' rx='2' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M9 7V5a3 3 0 0 1 6 0v2' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M12 11v4' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-card__tag-icon--industrial {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3l7 3v6c0 5-3.5 8.5-7 9-3.5-.5-7-4-7-9V6l7-3z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3l7 3v6c0 5-3.5 8.5-7 9-3.5-.5-7-4-7-9V6l7-3z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.product-card__tag-icon--wifi {
	-webkit-mask-image: url("../images/quick.svg");
	mask-image: url("../images/quick.svg");
}

.product-card__body {
	padding: 1.25rem 1.2rem 1.35rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card__body h3 {
	margin: 0 0 0.5rem;
	color: var(--heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.product-card__body p {
	margin: 0 0 1.15rem;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.55;
	flex: 1;
}

.product-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	align-self: flex-start;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: var(--brand-light);
	color: var(--brand);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background 0.2s, color 0.2s;
}

.product-card__link:hover {
	background: var(--brand-cyan);
	color: #fff;
	text-decoration: none;
}

.product-card__link span {
	transition: transform 0.2s;
}

.product-card__link:hover span {
	transform: translateX(3px);
}

/* Applications */
.app-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.app-card {
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	overflow: hidden;
	transition: box-shadow 0.2s, border-color 0.2s, transform 0.25s ease;
}

.app-card:hover {
	box-shadow: var(--shadow-md);
	border-color: rgba(26, 146, 208, 0.35);
	transform: translateY(-4px);
}

.app-card__media {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: #e3f0fb;
}

.app-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}

.app-card:hover .app-card__media img {
	transform: scale(1.04);
}

.app-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 64, 102, 0.04) 0%, rgba(0, 64, 102, 0.45) 100%);
	pointer-events: none;
}

.app-card__img {
	position: relative;
	height: 220px;
	background: center / cover no-repeat;
	transition: transform 0.4s ease;
}

.app-card--temp .app-card__body { border-top: 3px solid #1a92d0; }
.app-card--pressure .app-card__body { border-top: 3px solid #006aa8; }
.app-card--strain .app-card__body { border-top: 3px solid #ff9500; }
.app-card--voltage .app-card__body { border-top: 3px solid #7c3aed; }
.app-card--vibration .app-card__body { border-top: 3px solid #62ae3c; }
.app-card--flow .app-card__body { border-top: 3px solid #0d9488; }
.app-card--remote .app-card__body { border-top: 3px solid #006aa8; }
.app-card--energy .app-card__body { border-top: 3px solid #7c3aed; }
.app-card--mini .app-card__body { border-top: 3px solid #62ae3c; }
.app-card--weather .app-card__body { border-top: 3px solid #ff9500; }
.app-card--healthcare .app-card__body { border-top: 3px solid #1a92d0; }

.app-card__body {
	padding: 1.35rem;
}

.app-card__body h3 {
	margin: 0 0 0.45rem;
	color: var(--heading);
	font-size: 16px;
	font-weight: 700;
}

.app-card__body p {
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.55;
}

/* Why grid */
.why-grid {
	display: grid;
	grid-template-columns: 260px 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 1.35rem;
	margin-bottom: 2.5rem;
}

.why-card {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	border: 0;
	box-shadow: var(--shadow-md);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.why-card--years {
	grid-row: span 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 400px;
	padding: 2rem 1.5rem;
	text-align: center;
	color: #fff;
	background:
		linear-gradient(180deg, rgba(26, 146, 208, 0.25) 0%, rgba(0, 64, 102, 0.88) 100%),
		url("../images/choose-years.jpg") center / cover no-repeat;
}

.why-card--years::before {
	content: "";
	position: absolute;
	top: 1.25rem;
	left: 50%;
	width: 48px;
	height: 4px;
	border-radius: 999px;
	background: var(--brand-green);
	transform: translateX(-50%);
}

.why-card--years h3 {
	margin: 0 0 0.4rem;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.why-card--years p {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.why-card--engineers {
	grid-column: span 2;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	background: linear-gradient(135deg, #e3f0fb 0%, #cee6fb 45%, #ffffff 100%);
	border: 1px solid #b8daf0;
}

.why-card__text {
	position: relative;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.why-card__text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.75rem;
	bottom: 1.75rem;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--brand), var(--brand-green));
}

.why-card__text h3 {
	margin: 0 0 0.55rem;
	color: var(--heading);
	font-size: 1.5rem;
	font-weight: 700;
}

.why-card__text p {
	margin: 0;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
}

.why-card__img {
	min-height: 200px;
	background: url("../images/choose-engineer.jpg") center / cover no-repeat;
	transition: transform 0.35s ease;
}

.why-card--engineers:hover .why-card__img {
	transform: scale(1.04);
}

.why-card--guarantee {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.25rem;
	text-align: center;
	background:
		linear-gradient(160deg, rgba(236, 253, 245, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%),
		url("../images/choose-guarantee.png") center / cover no-repeat;
	border: 1px solid #a7f3d0;
}

.why-card__money {
	width: 56px;
	height: 56px;
	margin-bottom: 0.85rem;
	background: url("../images/choose-money.png") center / contain no-repeat;
	filter: drop-shadow(0 4px 10px rgba(5, 150, 105, 0.2));
}

.why-card--guarantee h3 {
	margin: 0 0 0.35rem;
	color: #047857;
	font-size: 1.75rem;
	font-weight: 700;
}

.why-card--guarantee p {
	margin: 0;
	color: #065f46;
	font-size: 14px;
	font-weight: 700;
}

.why-card--uk {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 200px;
	padding: 1.5rem;
	background:
		linear-gradient(180deg, rgba(220, 38, 38, 0.08) 0%, rgba(15, 23, 42, 0.65) 100%),
		url("../images/choose-uk.jpg") center / cover no-repeat;
}

.why-card--uk h3 {
	margin: 0;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
	background: #fff;
	color: var(--heading);
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.benefits-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.benefit {
	padding: 1.75rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
}

.benefit__icon {
	display: block;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 26px 26px;
	transition: transform 0.25s ease;
}

.benefit:hover .benefit__icon {
	transform: scale(1.08);
}

.benefit__icon--match {
	background-color: #dbeafe;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231d4ed8' stroke-width='1.8'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%231d4ed8' stroke='none'/%3E%3Cpath stroke-linecap='round' d='M12 2v2M12 20v2M2 12h2M20 12h2'/%3E%3C/svg%3E");
}

.benefit__icon--support {
	background-color: #d1fae5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23059669' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 3a7 7 0 00-7 7v2a3 3 0 003 3h1v-5H7a5 5 0 0110 0h-2v5h1a3 3 0 003-3v-2a7 7 0 00-7-7z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 18a3 3 0 006 0'/%3E%3C/svg%3E");
}

.benefit__icon--flexible {
	background-color: #ffedd5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ea580c' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 6a2 2 0 012-2h3v6H4V6zM15 4h3a2 2 0 012 2v3h-5V4zM4 15h5v5H6a2 2 0 01-2-2v-3zM15 15h5v3a2 2 0 01-2 2h-3v-5z'/%3E%3C/svg%3E");
}

.benefit h3 {
	margin: 0 0 0.6rem;
	color: var(--heading);
	font-size: 16px;
	font-weight: 700;
}

.benefit p {
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
}

/* How it works */
.section--how {
	background: linear-gradient(180deg, #004066 0%, #0f1c35 100%);
	color: #fff;
	overflow: hidden;
}

.section--how .section-head__label {
	color: #7dd3fc;
}

.section--how .section-head h2 {
	color: #fff;
}

.section--how .section-head__lead {
	color: rgba(255, 255, 255, 0.72);
}

.how-works {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: start;
	gap: 0.5rem 0.75rem;
	max-width: 980px;
	margin: 0 auto;
}

.how-works__step {
	text-align: center;
}

.how-works__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
	margin-bottom: 1.25rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-works__device {
	position: relative;
	width: 72px;
	height: 56px;
	border-radius: 10px;
	background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
	border: 2px solid rgba(0, 194, 255, 0.45);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.how-works__device::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--brand-cyan);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 16px rgba(0, 194, 255, 0.6);
}

.how-works__antenna {
	position: absolute;
	left: 50%;
	top: -18px;
	width: 3px;
	height: 18px;
	background: #94a3b8;
	transform: translateX(-50%);
	border-radius: 2px;
}

.how-works__antenna::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand-cyan);
	transform: translateX(-50%);
}

.how-works__pulse {
	position: absolute;
	left: 50%;
	top: -8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid var(--brand-cyan);
	transform: translateX(-50%);
	opacity: 0;
}

.how-works.is-playing .how-works__pulse {
	animation: howPulse 2.4s ease-out infinite;
}

/* Gateway — router-style device */
.how-works__gateway {
	position: relative;
	width: 110px;
	height: 78px;
}

.how-works__gateway-body {
	position: absolute;
	left: 8px;
	bottom: 0;
	width: 88px;
	height: 48px;
	border-radius: 8px 8px 6px 6px;
	background: linear-gradient(165deg, #243047 0%, #111827 100%);
	border: 2px solid rgba(0, 194, 255, 0.55);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.how-works__gateway-body::before {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	top: 0;
	height: 10px;
	border-radius: 0 0 4px 4px;
	background: rgba(0, 0, 0, 0.25);
}

.how-works__leds {
	position: absolute;
	left: 12px;
	bottom: 12px;
	display: flex;
	gap: 6px;
}

.how-works__leds span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #334155;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.how-works.is-playing .how-works__leds span:nth-child(1) {
	background: #22c55e;
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
	animation: howLed 2.4s ease-in-out infinite;
}

.how-works.is-playing .how-works__leds span:nth-child(2) {
	background: var(--brand-cyan);
	box-shadow: 0 0 8px rgba(0, 194, 255, 0.7);
	animation: howLed 2.4s ease-in-out 0.3s infinite;
}

.how-works.is-playing .how-works__leds span:nth-child(3) {
	background: var(--brand-purple);
	box-shadow: 0 0 8px rgba(192, 38, 211, 0.7);
	animation: howLed 2.4s ease-in-out 0.6s infinite;
}

.how-works__port {
	position: absolute;
	right: 12px;
	bottom: 11px;
	width: 14px;
	height: 10px;
	border-radius: 2px;
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.45);
}

.how-works__gateway-antenna {
	position: absolute;
	right: 18px;
	bottom: 46px;
	width: 4px;
	height: 34px;
	border-radius: 2px;
	background: linear-gradient(180deg, #cbd5e1 0%, #64748b 100%);
}

.how-works__gateway-antenna::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--brand-cyan);
	transform: translateX(-50%);
	box-shadow: 0 0 10px rgba(0, 194, 255, 0.7);
}

.how-works__gateway-antenna::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	width: 10px;
	height: 8px;
	border-radius: 2px;
	background: #475569;
	transform: translateX(-50%);
}

.how-works__waves {
	position: absolute;
	right: 4px;
	top: 0;
	width: 44px;
	height: 44px;
	pointer-events: none;
}

.how-works__waves span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 12px;
	border: 2px solid rgba(0, 194, 255, 0.75);
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	opacity: 0;
}

.how-works.is-playing .how-works__waves span:nth-child(1) { animation: howWaveArc 2.4s ease-out infinite; }
.how-works.is-playing .how-works__waves span:nth-child(2) { animation: howWaveArc 2.4s ease-out 0.35s infinite; }
.how-works.is-playing .how-works__waves span:nth-child(3) { animation: howWaveArc 2.4s ease-out 0.7s infinite; }

.how-works__visual--software {
	gap: 0.65rem;
}

.how-works__soft {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 22px 22px;
	opacity: 0.55;
	transform: translateY(6px);
}

.how-works.is-playing .how-works__soft {
	animation: howSoftIn 2.4s ease-in-out infinite;
}

.how-works.is-playing .how-works__soft--dash { animation-delay: 0.2s; }
.how-works.is-playing .how-works__soft--alert { animation-delay: 0.4s; }

.how-works__soft--cloud {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300c2ff' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M7 18h10a4 4 0 000-8 5.5 5.5 0 00-10.6 1.5A3.5 3.5 0 007 18z'/%3E%3C/svg%3E");
}

.how-works__soft--dash {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c026d3' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 5h16v12H4V5zM8 21h8M12 17v4'/%3E%3C/svg%3E");
}

.how-works__soft--alert {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300c2ff' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 17h5l-1.4-1.4A2 2 0 0118 14.2V11a6 6 0 10-12 0v3.2c0 .5-.2 1-.6 1.4L4 17h5m6 0a3 3 0 11-6 0'/%3E%3C/svg%3E");
}

.how-works__label {
	display: inline-block;
	margin-bottom: 0.65rem;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: rgba(0, 194, 255, 0.15);
	border: 1px solid rgba(0, 194, 255, 0.35);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.how-works__step:nth-child(3) .how-works__label {
	background: rgba(192, 38, 211, 0.15);
	border-color: rgba(192, 38, 211, 0.35);
}

.how-works__step p {
	margin: 0 auto;
	max-width: 220px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.5;
}

.how-works__flow {
	position: relative;
	height: 160px;
	width: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-works__line {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 2px;
	background: linear-gradient(90deg, rgba(0, 194, 255, 0.15), rgba(0, 194, 255, 0.7), rgba(192, 38, 211, 0.7), rgba(192, 38, 211, 0.15));
	border-radius: 2px;
}

.how-works__dot {
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand-cyan);
	box-shadow: 0 0 10px rgba(0, 194, 255, 0.8);
	transform: translate(-50%, -50%);
	opacity: 0;
}

.how-works__dot--2 {
	background: var(--brand-purple);
	box-shadow: 0 0 10px rgba(192, 38, 211, 0.8);
}

.how-works.is-playing .how-works__dot {
	animation: howDot 2.4s linear infinite;
}

.how-works.is-playing .how-works__dot--2 {
	animation-delay: 1.2s;
}

.how-works__note {
	margin: 1.75rem 0 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
}

@keyframes howPulse {
	0% { opacity: 0.8; transform: translateX(-50%) scale(0.6); }
	100% { opacity: 0; transform: translateX(-50%) scale(2.8); }
}

@keyframes howWave {
	0% { opacity: 0.7; width: 10px; height: 10px; }
	100% { opacity: 0; width: 42px; height: 42px; }
}

@keyframes howWaveArc {
	0% { opacity: 0.85; width: 10px; height: 10px; }
	100% { opacity: 0; width: 40px; height: 40px; }
}

@keyframes howLed {
	0%, 100% { opacity: 0.45; }
	50% { opacity: 1; }
}

@keyframes howDot {
	0% { left: 0; opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { left: 100%; opacity: 0; }
}

@keyframes howSoftIn {
	0%, 100% { opacity: 0.45; transform: translateY(6px); }
	40%, 70% { opacity: 1; transform: translateY(0); }
}

/* Logos */
.logo-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem 3.5rem;
}

.logo-row img {
	max-height: 42px;
	width: auto;
}

.logo-row--color img {
	opacity: 1;
	filter: none;
}

/* Testimonials */
.section--testimonials {
	background:
		radial-gradient(ellipse 60% 50% at 0% 0%, rgba(192, 38, 211, 0.06), transparent 55%),
		radial-gradient(ellipse 50% 40% at 100% 100%, rgba(0, 194, 255, 0.08), transparent 50%),
		var(--bg);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.35rem;
}

.testimonial {
	position: relative;
	overflow: hidden;
	padding: 1.85rem 1.75rem 1.6rem;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--white);
	box-shadow: var(--shadow);
}

.testimonial::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.testimonial--blue::before {
	background: var(--brand);
}

.testimonial--green::before {
	background: var(--brand-green);
}

.testimonial--cyan::before {
	background: var(--brand);
}

.testimonial--purple::before {
	background: var(--brand-green);
}

.testimonial__quote {
	position: absolute;
	top: 0.35rem;
	right: 1rem;
	font-size: 5rem;
	line-height: 1;
	font-family: Georgia, serif;
	color: rgba(0, 194, 255, 0.12);
	pointer-events: none;
}

.testimonial--blue .testimonial__quote {
	color: rgba(26, 146, 208, 0.12);
}

.testimonial--green .testimonial__quote {
	color: rgba(98, 174, 60, 0.12);
}

.testimonial__stars {
	display: flex;
	gap: 0.2rem;
	margin-bottom: 0.85rem;
}

.testimonial__stars span {
	width: 14px;
	height: 14px;
	background-color: #f59e0b;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9 1-5 4.9 1.2 6.8L12 18.3 5.8 21l1.2-6.8-5-4.9 6.9-1L12 2z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9 1-5 4.9 1.2 6.8L12 18.3 5.8 21l1.2-6.8-5-4.9 6.9-1L12 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.testimonial blockquote {
	position: relative;
	z-index: 1;
	margin: 0 0 1.4rem;
	color: var(--heading);
	font-size: 15px;
	line-height: 1.7;
	font-style: normal;
}

.testimonial__author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--border);
}

.testimonial__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.testimonial--blue .testimonial__avatar {
	background: var(--brand);
}

.testimonial--green .testimonial__avatar {
	background: var(--brand-green);
}

.testimonial--cyan .testimonial__avatar {
	background: var(--brand);
}

.testimonial--purple .testimonial__avatar {
	background: var(--brand-green);
}

.testimonial__author strong {
	display: block;
	color: var(--heading);
	font-size: 14px;
	font-weight: 700;
}

.testimonial__author span {
	color: var(--text-muted);
	font-size: 13px;
}

/* FAQ */
.faq-list {
	max-width: 780px;
	margin: 0 auto;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.faq + .faq { border-top: 1px solid var(--border); }

.faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.35rem;
	border: 0;
	background: var(--white);
	color: var(--heading);
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.faq__trigger:hover { background: var(--bg); }

.faq__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	background: var(--brand);
}

.faq__icon::before {
	top: 9px;
	left: 2px;
	width: 16px;
	height: 2px;
}

.faq__icon::after {
	top: 2px;
	left: 9px;
	width: 2px;
	height: 16px;
	transition: transform 0.2s;
}

.faq.is-open .faq__icon::after { transform: scaleY(0); }

.faq__panel p {
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.65;
}

/* Contact */
.contact-channels {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.contact-channel {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.6rem 1.1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	text-align: center;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.contact-channel:hover {
	border-color: var(--brand);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.contact-channel__icon {
	width: 56px;
	height: 56px;
	margin-bottom: 0.85rem;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 28px 28px;
	transition: transform 0.25s ease;
}

.contact-channel:hover .contact-channel__icon {
	transform: scale(1.08);
}

.contact-channel__icon--phone {
	background-color: #dbeafe;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231d4ed8' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 5a2 2 0 012-2h2.3a1 1 0 01.95.68l1.2 3.6a1 1 0 01-.27 1.06l-1.5 1.5a12 12 0 005.5 5.5l1.5-1.5a1 1 0 011.06-.27l3.6 1.2a1 1 0 01.68.95V19a2 2 0 01-2 2h-1C9.7 21 3 14.3 3 6V5z'/%3E%3C/svg%3E");
}

.contact-channel__icon--chat {
	background-color: #d1fae5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23059669' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 10h8M8 14h5M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 18.5L5 21v-3.5'/%3E%3C/svg%3E");
}

.contact-channel__icon--form {
	background-color: #ffedd5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ea580c' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5h10M9 9h10M9 13h6M5 5h.01M5 9h.01M5 13h.01M4 3h16a1 1 0 011 1v16a1 1 0 01-1 1H4a1 1 0 01-1-1V4a1 1 0 011-1z'/%3E%3C/svg%3E");
}

.contact-channel__icon--email {
	background-color: #ede9fe;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237c3aed' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 6h16a1 1 0 011 1v10a1 1 0 01-1 1H4a1 1 0 01-1-1V7a1 1 0 011-1z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 7l8 6 8-6'/%3E%3C/svg%3E");
}

.contact-channel strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--heading);
	font-size: 15px;
	font-weight: 700;
}

.contact-channel span:not(.contact-channel__icon) {
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.45;
}

.contact-form-wrap {
	max-width: 680px;
	margin: 0 auto;
	padding: 2.25rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
	margin: 0 0 1.5rem;
	color: var(--heading);
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.field label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 13px;
	font-weight: 600;
	color: var(--heading);
}

.field input,
.field textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--border-dark);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--heading);
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.18);
}

.field textarea {
	min-height: 110px;
	resize: none;
	margin-bottom: 1rem;
}

.field-error {
	min-height: 1rem;
	margin-top: 0.25rem;
	color: #c62828;
	font-size: 12px;
}

.contact-form-wrap .btn { width: 100%; }

/* Footer */
.site-footer {
	background: var(--footer);
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2.5rem;
	padding: 3rem 0 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand p {
	margin: 1rem 0 0;
	font-size: 13px;
	line-height: 1.6;
	max-width: 280px;
}

.site-footer__col h4 {
	margin: 0 0 1rem;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.site-footer__site {
	margin: 0 0 0.85rem;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.site-footer__col a,
.site-footer__col p {
	display: block;
	margin: 0 0 0.55rem;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.5;
}

.site-footer__col a:hover { color: #fff; }

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	font-size: 12px;
}

.site-footer__bottom p { margin: 0; }

/* Thank you */
.page--thankyou {
	padding: 5rem 0;
	min-height: 55vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg);
}

.thankyou {
	width: 100%;
}

.thankyou__card {
	max-width: 520px;
	margin: 0 auto;
	padding: 2.75rem 2.25rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-md);
	text-align: center;
}

.thankyou__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--brand);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.thankyou__card h1 {
	margin: 0 0 0.75rem;
	color: var(--heading);
	font-size: 1.7rem;
	font-weight: 700;
}

.thankyou__card p {
	margin: 0 0 1.5rem;
	color: var(--text-muted);
	font-size: 15px;
}

.thankyou__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
}

/* Cookie bar */
.cookie-bar {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1.2rem;
	border-radius: var(--radius);
	background: var(--topbar);
	color: #fff;
	box-shadow: var(--shadow-lg);
	font-size: 13px;
	cursor: pointer;
}

.cookie-bar a { color: var(--brand-cyan); }
.cookie-bar p { margin: 0; }

/* Video modal */
.overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 150;
	background: rgba(15, 23, 42, 0.75);
}

.video-modal {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 160;
	width: min(92vw, 900px);
	transform: translate(-50%, -50%);
}

.video-modal video {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.94);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.hero__content,
.hero__form {
	animation: fadeUp 0.7s ease both;
}

.hero__form {
	animation-delay: 0.15s;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.reveal-stagger > .reveal {
	transition-duration: 0.55s;
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

.specs-bar__icon {
	transition: transform 0.25s ease;
}

.specs-bar__item:hover .specs-bar__icon {
	transform: scale(1.1);
}

.app-card,
.testimonial,
.benefit {
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-card:hover,
.testimonial:hover,
.benefit:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.app-card__img {
	transition: transform 0.4s ease;
}

.app-card:hover .app-card__img {
	transform: scale(1.04);
}

.logo-row img {
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo-row img:hover {
	transform: scale(1.08);
}

.faq__panel {
	display: block;
	max-height: 0;
	overflow: hidden;
	padding: 0 1.35rem;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.faq.is-open .faq__panel {
	display: block;
	max-height: 200px;
	padding: 0 1.35rem 1.15rem;
	opacity: 1;
}

.btn {
	transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

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

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* Lazy-loaded background images */
.lazy-bg:not(.is-bg-loaded) {
	background-image: none !important;
}

.why-card--years:not(.is-bg-loaded) {
	background: linear-gradient(180deg, rgba(192, 38, 211, 0.2) 0%, rgba(11, 11, 42, 0.82) 100%) !important;
}

.why-card--guarantee:not(.is-bg-loaded) {
	background: linear-gradient(160deg, rgba(236, 253, 245, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
}

.why-card--uk:not(.is-bg-loaded) {
	background: linear-gradient(180deg, rgba(220, 38, 38, 0.08) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
}

.product-card__img.lazy-bg:not(.is-bg-loaded),
.app-card__img.lazy-bg:not(.is-bg-loaded) {
	background-color: var(--bg-alt);
}

@media (max-width: 1024px) {
	.hero__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.app-grid,
	.testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.benefits-row,
	.contact-channels {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-grid {
		grid-template-columns: 1fr 1fr;
	}

	.why-card--years {
		grid-row: auto;
		min-height: 240px;
	}

	.why-card--engineers {
		grid-column: span 2;
	}

	.specs-bar__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.how-works {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		max-width: 360px;
	}

	.how-works__flow {
		width: 100%;
		height: 40px;
	}

	.how-works__line {
		left: 50%;
		right: auto;
		top: 0;
		bottom: 0;
		width: 2px;
		height: auto;
		background: linear-gradient(180deg, rgba(0, 194, 255, 0.15), rgba(0, 194, 255, 0.7), rgba(192, 38, 211, 0.7), rgba(192, 38, 211, 0.15));
		transform: translateX(-50%);
	}

	.how-works__dot {
		left: 50%;
		top: 0;
	}

	.how-works.is-playing .how-works__dot {
		animation-name: howDotVertical;
	}
}

@keyframes howDotVertical {
	0% { top: 0; opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { top: 100%; opacity: 0; }
}

@media (max-width: 768px) {
	.header__nav,
	.header__actions { display: none; }

	.header__toggle { display: flex; }

	.hero {
		padding: 2.25rem 0 2rem;
	}

	.hero__list { columns: 1; }

	.specs-bar__grid {
		grid-template-columns: 1fr 1fr;
	}

	.app-grid,
	.testimonial-grid,
	.benefits-row,
	.contact-channels,
	.why-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.why-card--engineers {
		grid-column: auto;
		grid-template-columns: 1fr;
	}

	.site-footer__brand {
		grid-column: auto;
	}

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

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.field-row {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.specs-bar__grid {
		grid-template-columns: 1fr;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.section { padding: 3rem 0; }

	.contact-form-wrap { padding: 1.35rem; }

	.cookie-bar {
		flex-direction: column;
		text-align: center;
	}

	.thankyou__actions {
		flex-direction: column;
	}

	.thankyou__actions .btn {
		width: 100%;
	}
}

/* DAQ how-it-works animation */
.how-works--daq .how-works__line {
	background: linear-gradient(90deg, rgba(26, 146, 208, 0.15), rgba(26, 146, 208, 0.75), rgba(98, 174, 60, 0.75), rgba(255, 149, 0, 0.75), rgba(255, 149, 0, 0.15));
}

.section--apps {
	background:
		radial-gradient(ellipse 55% 45% at 0% 0%, rgba(26, 146, 208, 0.08), transparent 55%),
		radial-gradient(ellipse 45% 40% at 100% 100%, rgba(98, 174, 60, 0.06), transparent 50%),
		var(--bg-alt);
}

.how-works--daq .how-works__step:nth-child(3) .how-works__label {
	background: rgba(26, 146, 208, 0.15);
	border-color: rgba(26, 146, 208, 0.35);
}

.how-works--daq .how-works__step:nth-child(5) .how-works__label {
	background: rgba(98, 174, 60, 0.15);
	border-color: rgba(98, 174, 60, 0.35);
}

.how-works--daq .how-works__step:nth-child(7) .how-works__label {
	background: rgba(255, 149, 0, 0.15);
	border-color: rgba(255, 149, 0, 0.35);
}

.how-works--daq .how-works__dot--2 {
	background: #62ae3c;
	box-shadow: 0 0 10px rgba(98, 174, 60, 0.8);
}

.daq-sensor {
	position: relative;
	width: 88px;
	height: 92px;
}

.daq-sensor__tip {
	position: absolute;
	left: 50%;
	top: 0;
	width: 14px;
	height: 28px;
	border-radius: 7px 7px 2px 2px;
	background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
	transform: translateX(-50%);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.daq-sensor__shaft {
	position: absolute;
	left: 50%;
	top: 24px;
	width: 6px;
	height: 24px;
	background: #64748b;
	transform: translateX(-50%);
}

.daq-sensor__cable {
	position: absolute;
	left: 50%;
	top: 46px;
	width: 3px;
	height: 46px;
	background: linear-gradient(180deg, #475569, #1a92d0);
	transform: translateX(-50%);
	border-radius: 2px;
}

.daq-sensor__pulse {
	position: absolute;
	left: 50%;
	top: 46px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7dd3fc;
	transform: translate(-50%, 0);
	opacity: 0;
	box-shadow: 0 0 12px rgba(125, 211, 252, 0.9);
}

.how-works.is-playing .daq-sensor__pulse {
	animation: daqSignalTravel 2.4s ease-in-out infinite;
}

.daq-module {
	position: relative;
	width: 132px;
	height: 92px;
}

.daq-module__body {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 118px;
	height: 72px;
	border-radius: 8px;
	background: linear-gradient(165deg, #1e3a5f 0%, #0f2744 100%);
	border: 2px solid rgba(26, 146, 208, 0.55);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.daq-module__brand {
	position: absolute;
	left: 10px;
	top: 8px;
	width: 28px;
	height: 4px;
	border-radius: 999px;
	background: #1a92d0;
}

.daq-module__display {
	position: absolute;
	left: 10px;
	top: 18px;
	width: 44px;
	height: 16px;
	border-radius: 3px;
	background: #031423;
	border: 1px solid rgba(125, 211, 252, 0.35);
}

.daq-module__display::after {
	content: "CH01";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7dd3fc;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.daq-module__ports {
	position: absolute;
	right: 8px;
	top: 14px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.daq-module__ports span {
	display: block;
	width: 12px;
	height: 8px;
	border-radius: 2px;
	background: #334155;
	border: 1px solid rgba(148, 163, 184, 0.5);
}

.daq-module__channels {
	position: absolute;
	left: 10px;
	bottom: 10px;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 4px;
	width: 96px;
}

.daq-module__channels span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #334155;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.how-works.is-playing .daq-module__channels span {
	animation: daqChannelBlink 2.4s ease-in-out infinite;
}

.how-works.is-playing .daq-module__channels span:nth-child(2) { animation-delay: 0.15s; }
.how-works.is-playing .daq-module__channels span:nth-child(3) { animation-delay: 0.3s; }
.how-works.is-playing .daq-module__channels span:nth-child(4) { animation-delay: 0.45s; }
.how-works.is-playing .daq-module__channels span:nth-child(5) { animation-delay: 0.6s; }
.how-works.is-playing .daq-module__channels span:nth-child(6) { animation-delay: 0.75s; }
.how-works.is-playing .daq-module__channels span:nth-child(7) { animation-delay: 0.9s; }
.how-works.is-playing .daq-module__channels span:nth-child(8) { animation-delay: 1.05s; }

.daq-module__cable {
	position: absolute;
	right: 0;
	bottom: 18px;
	width: 18px;
	height: 3px;
	border-radius: 2px;
	background: #1a92d0;
}

.daq-screen {
	position: relative;
	width: 118px;
	height: 92px;
}

.daq-screen__frame {
	position: absolute;
	inset: 0;
	border-radius: 10px;
	background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
	border: 2px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.daq-screen__toolbar {
	display: flex;
	gap: 4px;
	padding: 8px 8px 0;
}

.daq-screen__toolbar span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.18);
}

.daq-screen__toolbar span:nth-child(1) { background: #ef4444; }
.daq-screen__toolbar span:nth-child(2) { background: #f59e0b; }
.daq-screen__toolbar span:nth-child(3) { background: #22c55e; }

.daq-screen__chart {
	position: relative;
	margin: 8px;
	height: 42px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.72);
	overflow: hidden;
}

.daq-screen__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(26, 146, 208, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(26, 146, 208, 0.08) 1px, transparent 1px);
	background-size: 12px 12px;
}

.daq-screen__wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	height: 22px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24' fill='none'%3E%3Cpath d='M0 12 C10 4, 18 20, 28 12 S46 4, 56 12 S74 20, 84 12 S102 4, 120 12' stroke='%231a92d0' stroke-width='2'/%3E%3C/svg%3E") left center / 120px 24px repeat-x;
	opacity: 0.95;
}

.how-works.is-playing .daq-screen__wave {
	animation: daqWaveScroll 2.4s linear infinite;
}

.daq-screen__readout {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	padding: 0 8px 8px;
}

.daq-screen__value {
	color: #004066;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.daq-screen__unit {
	color: #1a92d0;
	font-size: 11px;
	font-weight: 700;
}

@keyframes daqSignalTravel {
	0% { opacity: 0; transform: translate(-50%, 0); }
	15% { opacity: 1; }
	85% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 42px); }
}

@keyframes daqChannelBlink {
	0%, 100% { background: #334155; box-shadow: none; }
	35%, 55% { background: #1a92d0; box-shadow: 0 0 8px rgba(26, 146, 208, 0.8); }
}

@keyframes daqWaveScroll {
	0% { background-position: 0 center; }
	100% { background-position: -120px center; }
}
