/*
Theme Name: Digi Tax Theme
Theme URI: https://local.test
Author: Digi Tax
Description: Modern RTL WordPress theme for tax consulting, services and store.
Version: 2.5.0
Text Domain: digi-tax-theme
*/

:root {
	--bg: #f5f7f8;
	--surface: #ffffff;
	--surface-soft: #edf5f2;
	--ink: #13231f;
	--muted: #66756f;
	--line: #dce5e1;
	--primary: #087b67;
	--primary-dark: #055a4c;
	--primary-light: #ddf4ed;
	--gold: #d29b39;
	--gold-dark: #af7820;
	--navy: #06243b;
	--navy-soft: #0b3551;
	--danger: #c94343;
	--success: #16845f;
	--shadow-sm: 0 10px 30px rgba(13, 45, 37, 0.08);
	--shadow-md: 0 22px 55px rgba(9, 38, 31, 0.13);
	--shadow-lg: 0 34px 90px rgba(7, 31, 26, 0.2);
	--shadow-3d: 0 2px 0 rgba(255, 255, 255, 0.82) inset, 0 -1px 0 rgba(4, 46, 38, 0.08) inset, 0 18px 34px rgba(7, 45, 37, 0.1), 0 5px 10px rgba(7, 45, 37, 0.08);
	--luxury-line: rgba(210, 155, 57, 0.32);
	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 30px;
	--ease: cubic-bezier(.22, .61, .36, 1);
	--spring: cubic-bezier(.16, 1, .3, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background-color: var(--bg);
	background-image:
		linear-gradient(180deg, rgba(248, 250, 249, 0.9), rgba(238, 243, 241, 0.94)),
		url("images/back.png"),
		radial-gradient(circle at 8% 6%, rgba(8, 123, 103, 0.11), transparent 23rem),
		radial-gradient(circle at 90% 28%, rgba(210, 155, 57, 0.11), transparent 24rem);
	background-repeat: no-repeat;
	background-position: center, center 61%, left top, right top;
	background-size: cover, min(48vw, 720px) auto, auto, auto;
	background-attachment: fixed;
	color: var(--ink);
	font-family: Tahoma, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
}

main {
	perspective: 1600px;
}

body.is-locked {
	overflow: hidden;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	color: inherit;
}

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

img,
svg {
	display: block;
}

img {
	max-width: 100%;
}

svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.shell {
	width: min(1180px, calc(100% - 36px));
	margin-inline: auto;
}

.topbar {
	position: relative;
	z-index: 80;
	overflow: hidden;
	background:
		linear-gradient(110deg, rgba(210, 155, 57, 0.13), transparent 32%),
		linear-gradient(100deg, #041d30, #073b42 58%, #06283b);
	color: #eaf7f3;
}

.topbar::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
	transform: translateX(-100%);
	animation: topbarShine 7s ease-in-out infinite;
	pointer-events: none;
}

.topbar__inner {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.topbar__message,
.topbar__contacts,
.topbar-link {
	display: flex;
	align-items: center;
}

.topbar__message {
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
}

.status-dot {
	position: relative;
	width: 9px;
	height: 9px;
	flex: 0 0 9px;
	border-radius: 50%;
	background: #54e2aa;
	box-shadow: 0 0 0 4px rgba(84, 226, 170, 0.13);
}

.status-dot::after {
	position: absolute;
	inset: -5px;
	content: "";
	border: 1px solid rgba(84, 226, 170, 0.55);
	border-radius: inherit;
	animation: pulseRing 2s ease-out infinite;
}

.topbar__contacts {
	gap: 9px;
}

.topbar-link {
	min-height: 34px;
	gap: 7px;
	padding: 5px 10px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	font-size: 12px;
	transition: transform .25s var(--spring), background .25s ease, border-color .25s ease;
}

.topbar-link:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.12);
}

.topbar-link svg,
.topbar-link img {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	object-fit: contain;
	fill: currentColor;
	stroke: none;
}

.topbar-link--telegram {
	border-color: rgba(61, 180, 235, 0.35);
	background: linear-gradient(135deg, rgba(35, 158, 217, 0.28), rgba(35, 158, 217, 0.1));
}

.topbar-link--bale {
	border-color: rgba(104, 214, 157, 0.35);
	background: linear-gradient(135deg, rgba(41, 161, 99, 0.3), rgba(41, 161, 99, 0.1));
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 70;
	border-bottom: 1px solid rgba(10, 75, 62, 0.08);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 28px rgba(8, 52, 43, 0.04);
	backdrop-filter: blur(18px);
	transition: transform .38s var(--ease), background .25s ease, box-shadow .25s ease;
	will-change: transform;
}

.site-header::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, var(--luxury-line), rgba(8, 123, 103, 0.28), transparent);
	pointer-events: none;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 38px rgba(8, 52, 43, 0.1);
}

.site-header.is-hidden {
	transform: translateY(calc(-100% - 4px));
}

.nav-shell {
	min-height: 76px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: max-content;
}

.brand__logo {
	position: relative;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border: 1px solid rgba(8, 123, 103, 0.16);
	border-radius: 16px;
	background: #a5a5a5;
	box-shadow: 0 9px 24px rgba(9, 67, 56, 0.13);
}

.brand__logo::after {
	position: absolute;
	inset: 0;
	content: "";
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: inherit;
}

.brand__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s var(--spring);
}

.brand:hover .brand__logo img {
	transform: scale(1.08) rotate(-2deg);
}

.brand__text {
	display: grid;
	line-height: 1.35;
}

.brand__text strong {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -.5px;
}

.brand__text small {
	color: var(--muted);
	font-size: 10px;
}

.main-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.main-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 42px;
	padding: 8px 10px;
	border-radius: 12px;
	color: #52615c;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
	transition: color .22s ease, background .22s ease, transform .22s var(--spring);
}

.main-menu a::after {
	position: absolute;
	right: 13px;
	bottom: 5px;
	left: 13px;
	height: 2px;
	content: "";
	border-radius: 999px;
	background: linear-gradient(90deg, var(--primary), var(--gold));
	transform: scaleX(0);
	transition: transform .28s var(--spring);
}

.main-menu a:hover,
.main-menu a.active {
	color: var(--primary-dark);
	background: var(--primary-light);
	transform: translateY(-1px);
}

.main-menu a.active::after {
	transform: scaleX(1);
}

.menu-badge {
	padding: 1px 5px;
	border-radius: 999px;
	background: var(--gold);
	color: #fff;
	font-size: 8px;
	line-height: 1.7;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: max-content;
}

.icon-button {
	position: relative;
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 7px 9px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: #fff;
	color: #30413b;
	cursor: pointer;
	font-size: 11px;
	font-weight: 800;
	transition: transform .22s var(--spring), border-color .22s ease, box-shadow .22s ease;
}

.icon-button:hover {
	transform: translateY(-2px);
	border-color: rgba(8, 123, 103, 0.33);
	box-shadow: var(--shadow-sm);
}

.icon-button svg {
	width: 19px;
	height: 19px;
}

.cart-count {
	min-width: 19px;
	height: 19px;
	display: grid;
	place-items: center;
	padding-inline: 4px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 9px;
	line-height: 1;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: #fff;
	cursor: pointer;
}

.menu-toggle span {
	width: 20px;
	height: 2px;
	display: block;
	margin: 4px auto;
	border-radius: 99px;
	background: var(--primary-dark);
	transition: transform .25s ease, opacity .2s ease;
}

.button {
	position: relative;
	isolation: isolate;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	overflow: hidden;
	padding: 10px 17px;
	border: 1px solid transparent;
	border-radius: 13px;
	cursor: pointer;
	font-weight: 900;
	line-height: 1.4;
	white-space: nowrap;
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.32) inset, 0 -3px 0 rgba(3, 44, 37, 0.14) inset, 0 10px 22px rgba(8, 55, 46, 0.11);
	transform-style: preserve-3d;
	transition: transform .24s var(--spring), box-shadow .24s ease, filter .24s ease, border-color .24s ease;
}

.button::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.22), transparent 75%);
	transform: translateX(-120%);
	transition: transform .55s ease;
}

.button:hover::before {
	transform: translateX(120%);
}

.button:hover {
	transform: translateY(-4px) translateZ(10px);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.42) inset, 0 -3px 0 rgba(3, 44, 37, 0.16) inset, 0 17px 31px rgba(9, 52, 44, 0.18);
}

.button:active {
	transform: translateY(-1px) scale(.98);
}

.button:disabled {
	opacity: .55;
	cursor: not-allowed;
	transform: none;
}

.button svg {
	width: 18px;
	height: 18px;
}

.button--primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	box-shadow: 0 11px 24px rgba(8, 123, 103, 0.2);
}

.button--gold {
	background: linear-gradient(135deg, #e1ae50, var(--gold-dark));
	color: #fff;
	box-shadow: 0 11px 26px rgba(210, 155, 57, 0.23);
}

.button--outline {
	border-color: var(--line);
	background: #fff;
	color: var(--ink);
}

.button--outline:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
}

.button--glass {
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	backdrop-filter: blur(10px);
}

.button--large {
	min-height: 52px;
	padding-inline: 22px;
	border-radius: 15px;
}

.button--wide {
	width: 100%;
}

.button--submit {
	min-width: 170px;
}

.button-loader {
	width: 16px;
	height: 16px;
	display: none;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin .7s linear infinite;
}

.is-loading .button-loader {
	display: inline-block;
}

.page-section {
	display: none;
	min-height: 55vh;
}

.page-section.active {
	display: block;
	animation: pageIn .45s var(--spring) both;
}

.hero {
	padding: 28px 0 38px;
}

.hero-card {
	position: relative;
	min-height: 610px;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: clamp(38px, 6vw, 76px);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 34px;
	background:
		linear-gradient(90deg, rgba(3, 24, 43, .99) 0%, rgba(3, 24, 43, .96) 37%, rgba(3, 24, 43, .77) 56%, rgba(3, 24, 43, .25) 82%),
		var(--hero-image) center / cover no-repeat;
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.22) inset, 0 -2px 0 rgba(0, 0, 0, 0.28) inset, 0 38px 90px rgba(4, 29, 39, 0.25), 0 12px 25px rgba(4, 29, 39, 0.2);
	color: #fff;
	transform-style: preserve-3d;
}

.hero-card::before {
	position: absolute;
	inset: 10px;
	content: "";
	border: 1px solid rgba(210, 155, 57, 0.22);
	border-radius: 26px;
	box-shadow: 0 0 35px rgba(210, 155, 57, 0.06) inset;
	pointer-events: none;
}

.hero-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: .09;
	mask-image: linear-gradient(90deg, #000, transparent 68%);
	pointer-events: none;
}

.hero-card__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(4px);
	pointer-events: none;
}

.hero-card__glow--one {
	top: -90px;
	right: 36%;
	width: 300px;
	height: 300px;
	background: rgba(8, 123, 103, 0.18);
	animation: floatOrb 9s ease-in-out infinite;
}

.hero-card__glow--two {
	right: -80px;
	bottom: -120px;
	width: 360px;
	height: 360px;
	background: rgba(210, 155, 57, 0.12);
	animation: floatOrb 11s ease-in-out infinite reverse;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 650px;
}

.eyebrow,
.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .2px;
}

.eyebrow {
	color: #8fe2cc;
}

.eyebrow i {
	width: 21px;
	height: 2px;
	border-radius: 99px;
	background: var(--gold);
}

.hero-content h1 {
	max-width: 620px;
	margin: 17px 0 18px;
	font-size: clamp(38px, 4.2vw, 63px);
	line-height: 1.43;
	letter-spacing: -2px;
	text-wrap: balance;
}

.hero-content > p {
	max-width: 590px;
	margin: 0;
	color: rgba(237, 247, 244, 0.78);
	font-size: 16px;
	line-height: 2;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	margin-top: 29px;
}

.hero-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-top: 38px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(9px);
}

.hero-trust div {
	padding: 13px 15px;
	background: rgba(2, 26, 41, 0.38);
}

.hero-trust strong,
.hero-trust span {
	display: block;
}

.hero-trust strong {
	font-size: 12px;
}

.hero-trust span {
	color: rgba(236, 247, 243, 0.58);
	font-size: 9px;
}

.section-block {
	padding: 70px 0;
}

.section-block--soft {
	border-block: 1px solid rgba(8, 123, 103, 0.07);
	background:
		linear-gradient(135deg, rgba(8, 123, 103, 0.035), rgba(210, 155, 57, 0.025)),
		#eef3f1;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.section-heading h2,
.process-intro h2,
.about-copy h2 {
	margin: 6px 0 0;
	font-size: clamp(27px, 3vw, 40px);
	line-height: 1.5;
	letter-spacing: -1px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--primary);
	font-size: 13px;
	font-weight: 900;
}

.text-link span {
	transition: transform .25s var(--spring);
}

.text-link:hover span {
	transform: translateX(-4px);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 17px;
}

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

.feature-card {
	position: relative;
	overflow: hidden;
	padding: 26px;
	border: 1px solid rgba(12, 74, 62, 0.1);
	border-radius: var(--radius);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 246, 0.94));
	box-shadow: var(--shadow-3d);
	transform-style: preserve-3d;
	transition: transform .32s var(--spring), box-shadow .32s ease, border-color .32s ease;
}

.feature-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	content: "";
	background: linear-gradient(90deg, var(--primary), var(--gold));
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--spring);
}

.feature-card:hover {
	transform: translateY(-10px) rotateX(2deg) rotateY(-1.2deg);
	border-color: rgba(8, 123, 103, 0.22);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.9) inset, 0 -2px 0 rgba(7, 57, 47, 0.1) inset, 0 30px 58px rgba(8, 53, 44, 0.17), 0 9px 18px rgba(8, 53, 44, 0.1);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 15px;
	background: var(--primary-light);
	color: var(--primary);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.8) inset, 0 8px 18px rgba(8, 123, 103, 0.12);
	transform: translateZ(18px);
}

.feature-icon svg {
	width: 25px;
	height: 25px;
}

.feature-number {
	position: absolute;
	top: 23px;
	left: 24px;
	color: #dfe8e4;
	font-size: 28px;
	font-weight: 900;
}

.feature-card h3 {
	margin: 21px 0 8px;
	font-size: 18px;
	line-height: 1.6;
}

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

.feature-card > a {
	display: inline-flex;
	gap: 7px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 900;
}

.tag {
	display: inline-flex;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--primary-light);
	color: var(--primary-dark);
	font-size: 10px;
	font-weight: 900;
}

.process-layout {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	align-items: center;
	gap: 70px;
}

.process-intro p {
	margin: 14px 0 24px;
	color: var(--muted);
}

.process-steps {
	display: grid;
	gap: 13px;
}

.process-step {
	display: grid;
	grid-template-columns: 54px 1fr;
	align-items: center;
	gap: 16px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: #fff;
	box-shadow: var(--shadow-3d);
	transform-style: preserve-3d;
	transition: transform .25s var(--spring), border-color .25s ease;
}

.process-step:hover {
	transform: translateX(-7px) rotateY(-1.5deg);
	border-color: rgba(8, 123, 103, 0.3);
}

.process-step b {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--navy), var(--primary));
	color: #fff;
	font-size: 18px;
}

.process-step h3,
.process-step p {
	margin: 0;
}

.process-step h3 {
	font-size: 15px;
}

.process-step p {
	color: var(--muted);
	font-size: 12px;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: 68px 0;
	border-bottom: 1px solid rgba(8, 123, 103, 0.08);
	background:
		radial-gradient(circle at 12% 30%, rgba(210, 155, 57, 0.12), transparent 16rem),
		radial-gradient(circle at 88% 20%, rgba(8, 123, 103, 0.12), transparent 17rem),
		linear-gradient(145deg, #f9fbfa, #edf4f1);
}

.page-hero::after {
	position: absolute;
	inset: 0;
	content: "";
	background-image: radial-gradient(rgba(8, 123, 103, 0.14) 1px, transparent 1px);
	background-size: 23px 23px;
	mask-image: linear-gradient(90deg, transparent, #000 52%, transparent);
	opacity: .28;
	pointer-events: none;
}

.page-hero .shell {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	max-width: 760px;
	margin: 8px 0 9px;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.45;
	letter-spacing: -1.5px;
}

.page-hero p {
	max-width: 720px;
	margin: 0;
	color: var(--muted);
}

.page-hero--store {
	background:
		radial-gradient(circle at 13% 20%, rgba(210, 155, 57, 0.18), transparent 19rem),
		linear-gradient(135deg, #061f34, #073f43);
	color: #fff;
}

.page-hero--store .section-kicker {
	color: #7ce3c7;
}

.page-hero--store p {
	color: rgba(238, 248, 245, 0.7);
}

.store-hero-layout {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	align-items: center;
	gap: 60px;
}

.store-hero-stat {
	display: grid;
	gap: 7px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 22px 45px rgba(0, 0, 0, 0.18);
	transform: perspective(900px) rotateY(-4deg);
}

.store-hero-stat span,
.store-hero-stat small {
	color: rgba(237, 248, 244, 0.63);
	font-size: 11px;
}

.store-hero-stat strong {
	font-size: 18px;
}

.store-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px;
	margin: 26px 0 16px;
}

.store-search {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid rgba(10, 61, 53, 0.08);
	border-radius: 18px;
	background: #f1f3f3;
	box-shadow: 0 8px 22px rgba(9, 52, 44, 0.05) inset;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.store-search:focus-within {
	border-color: rgba(8, 123, 103, 0.45);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(8, 123, 103, 0.1);
}

.store-search svg {
	width: 21px;
	height: 21px;
	flex: 0 0 auto;
	margin-inline-start: 11px;
	fill: none;
	stroke: var(--muted);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.store-search input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-size: 13px;
}

.store-search input::placeholder {
	color: #8b9692;
}

.store-filter-toggle {
	min-height: 54px;
	gap: 8px;
	white-space: nowrap;
}

.store-sort {
	position: relative;
	min-width: 220px;
}

.store-sort-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 54px;
	gap: 8px;
	white-space: nowrap;
}

.store-sort-toggle svg {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.store-sort-toggle span {
	overflow: hidden;
	text-overflow: ellipsis;
}

.store-sort-toggle b {
	font-weight: 800;
}

.store-sort-toggle i {
	font-style: normal;
	font-size: 17px;
	line-height: 1;
	transition: transform .2s ease;
}

.store-sort-toggle[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.store-sort-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 10;
	display: grid;
	width: 100%;
	min-width: 220px;
	padding: 7px;
	border: 1px solid rgba(8, 78, 65, 0.13);
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 18px 38px rgba(8, 53, 44, 0.16);
	animation: storeFilterIn .2s ease both;
}

.store-sort-menu button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 39px;
	padding: 8px 11px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-size: 11px;
	text-align: right;
	cursor: pointer;
	transition: background .18s ease, color .18s ease;
}

.store-sort-menu button:hover,
.store-sort-menu button[aria-selected="true"] {
	background: var(--primary-light);
	color: var(--primary-dark);
}

.store-sort-menu button[aria-selected="true"]::after {
	content: "✓";
	color: var(--primary);
	font-weight: 900;
}

.store-filter-toggle svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.store-filter-toggle b {
	display: inline-grid;
	place-items: center;
	min-width: 21px;
	height: 21px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 10px;
}

.store-cart-button {
	min-height: 54px;
	white-space: nowrap;
}

.store-filter-panel {
	position: relative;
	margin-bottom: 18px;
	padding: 23px;
	border: 1px solid rgba(8, 78, 65, 0.12);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 50px rgba(8, 53, 44, 0.11);
	animation: storeFilterIn .24s ease both;
}

@keyframes storeFilterIn {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

.store-filter-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 20px;
}

.store-filter-panel__head h3 {
	margin: 4px 0 0;
	font-size: 19px;
}

.store-filter-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.store-filter-field {
	min-width: 0;
	margin: 0;
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: #fbfcfc;
}

.store-filter-field > span,
.store-filter-field legend {
	display: block;
	margin-bottom: 9px;
	color: var(--ink);
	font-size: 12px;
	font-weight: 800;
}

.store-filter-field select {
	width: 100%;
	min-height: 43px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 12px;
	outline: 0;
}

.store-filter-field select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(8, 123, 103, 0.1);
}

.store-filter-field--range {
	display: grid;
	gap: 4px;
}

.range-values {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--muted);
	font-size: 11px;
}

.range-inputs {
	display: grid;
	gap: 4px;
	padding-top: 5px;
}

.range-inputs input {
	width: 100%;
	margin: 0;
	accent-color: var(--primary);
	cursor: pointer;
}

.store-filter-field--categories {
	grid-column: 1 / -1;
}

.category-options {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.category-options label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--muted);
	font-size: 11px;
	cursor: pointer;
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.category-options label:has(input:checked) {
	border-color: rgba(8, 123, 103, 0.4);
	background: var(--primary-light);
	color: var(--primary-dark);
}

.category-options input {
	accent-color: var(--primary);
}

.subcategory-legend {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
}

.category-options--sub label {
	background: #f7faf9;
}

.store-filter-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.store-filter-actions .button {
	min-width: 150px;
}

.store-results-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 30px;
	margin-bottom: 14px;
	color: var(--muted);
	font-size: 12px;
}

.text-button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--primary-dark);
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
}

.text-button:hover {
	color: var(--gold-dark);
}

.product-card[hidden] {
	display: none !important;
}

.product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: -3px 0 14px;
}

.product-meta span {
	padding: 5px 8px;
	border-radius: 8px;
	background: var(--primary-light);
	color: var(--primary-dark);
	font-size: 9px;
}

.store-no-results {
	display: grid;
	place-items: center;
	gap: 7px;
	min-height: 170px;
	margin-top: 14px;
	padding: 30px;
	border: 1px dashed rgba(8, 123, 103, 0.3);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.78);
	text-align: center;
}

.store-no-results strong {
	color: var(--ink);
}

.store-no-results span {
	color: var(--muted);
	font-size: 12px;
}

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

.product-card {
	position: relative;
	display: grid;
	grid-template-columns: 185px 1fr;
	overflow: hidden;
	border: 1px solid rgba(8, 78, 65, 0.11);
	border-radius: 24px;
	background: linear-gradient(145deg, #fff, #f5f8f7);
	box-shadow: var(--shadow-3d);
	transform-style: preserve-3d;
	transition: transform .32s var(--spring), box-shadow .32s ease;
}

.product-card:hover {
	transform: translateY(-9px) rotateX(1.5deg) rotateY(-1deg);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.9) inset, 0 -2px 0 rgba(7, 57, 47, 0.09) inset, 0 32px 62px rgba(8, 53, 44, 0.18), 0 9px 18px rgba(8, 53, 44, 0.1);
}

.product-visual {
	position: relative;
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(145deg, var(--navy), var(--navy-soft));
	color: #fff;
}

.product-visual::before,
.product-visual::after {
	position: absolute;
	content: "";
	border-radius: 50%;
}

.product-visual::before {
	top: -40px;
	left: -40px;
	width: 130px;
	height: 130px;
	background: rgba(210, 155, 57, 0.18);
}

.product-visual::after {
	right: -55px;
	bottom: -55px;
	width: 150px;
	height: 150px;
	background: rgba(8, 123, 103, 0.3);
}

.product-visual > span {
	position: relative;
	z-index: 1;
	width: 100px;
	height: 100px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 900;
	backdrop-filter: blur(6px);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.17) inset, 0 16px 32px rgba(0, 0, 0, 0.2);
	transform: translateZ(22px);
}

.product-visual > b {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--gold);
	color: #fff;
	font-size: 9px;
}

.product-visual--document {
	background: linear-gradient(145deg, #174b42, #0a7663);
}

.product-visual--shield {
	background: linear-gradient(145deg, #5b3f16, #bd842c);
}

.product-visual--chart {
	background: linear-gradient(145deg, #17395a, #086e7b);
}

.product-body {
	padding: 24px;
}

.product-body h2 {
	margin: 0 0 7px;
	font-size: 19px;
}

.product-body > p {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 12px;
}

.product-body ul {
	display: grid;
	gap: 5px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.product-body li {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #43534e;
	font-size: 11px;
}

.product-body li span {
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--primary-light);
	color: var(--primary);
	font-size: 9px;
}

.product-price,
.product-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.product-price {
	padding-top: 15px;
	border-top: 1px solid var(--line);
}

.product-price div {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.product-price strong {
	color: var(--primary-dark);
	font-size: 20px;
}

.product-price span,
.product-price small {
	color: var(--muted);
	font-size: 9px;
}

.product-actions {
	margin-top: 14px;
}

.product-actions .button {
	flex: 1;
	min-height: 40px;
	padding: 8px 10px;
	font-size: 11px;
}

.checkout-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.checkout-benefits > div {
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.checkout-benefits > div > span {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: var(--primary-light);
	color: var(--primary);
	font-weight: 900;
}

.checkout-benefits h3 {
	margin: 15px 0 5px;
}

.checkout-benefits p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}

.checklist-layout,
.about-layout,
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: stretch;
}

.checklist-card {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow-3d);
	transform-style: preserve-3d;
	transition: transform .3s var(--spring), box-shadow .3s ease;
}

.checklist-card:hover {
	transform: translateY(-7px) rotateX(1.4deg);
	box-shadow: var(--shadow-md);
}

.checklist-card h2 {
	margin: 10px 0 19px;
	font-size: 25px;
}

.checklist-card label {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
	cursor: pointer;
}

.checklist-card label:last-child {
	border-bottom: 0;
}

.checklist-card input {
	width: 20px;
	height: 20px;
	accent-color: var(--primary);
}

.checklist-card--dark {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	background:
		radial-gradient(circle at 10% 10%, rgba(210, 155, 57, 0.2), transparent 16rem),
		linear-gradient(145deg, var(--navy), #0b413d);
	color: #fff;
}

.checklist-card--dark .tag {
	background: rgba(255, 255, 255, 0.1);
	color: #8de1c9;
}

.checklist-card--dark p {
	margin: 0 0 22px;
	color: rgba(235, 247, 243, 0.72);
}

.about-image {
	position: relative;
	min-height: 500px;
	overflow: hidden;
	border-radius: 28px;
	background: #999;
	box-shadow: var(--shadow-md);
	transform: perspective(1100px) rotateY(2.5deg);
}

.about-image::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(0deg, rgba(3, 25, 40, 0.88), transparent 55%);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-image > div {
	position: absolute;
	right: 27px;
	bottom: 24px;
	z-index: 2;
	color: #fff;
}

.about-image strong,
.about-image span {
	display: block;
}

.about-image strong {
	font-size: 23px;
}

.about-image span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
}

.about-copy {
	align-self: center;
	padding: 30px;
}

.about-copy > p {
	margin: 15px 0 23px;
	color: var(--muted);
}

.mini-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 24px;
}

.mini-stats div {
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: #fff;
}

.mini-stats strong,
.mini-stats span {
	display: block;
}

.mini-stats strong {
	color: var(--primary);
	font-size: 13px;
}

.mini-stats span {
	color: var(--muted);
	font-size: 9px;
}

.page-hero--faq {
	background:
		radial-gradient(circle at 18% 35%, rgba(210, 155, 57, 0.2), transparent 17rem),
		radial-gradient(circle at 82% 20%, rgba(84, 226, 170, 0.14), transparent 18rem),
		linear-gradient(145deg, #061f34, #0a4242);
	color: #fff;
}

.page-hero--faq .section-kicker {
	color: #85e4ca;
}

.page-hero--faq p {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.75);
}

.faq-shell {
	max-width: 1020px;
}

.faq-tools {
	margin-bottom: 24px;
	padding: 20px;
	border: 1px solid rgba(11, 89, 70, 0.1);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(19, 122, 91, 0.06), rgba(210, 155, 57, 0.06)),
		#fff;
	box-shadow: 0 14px 36px rgba(9, 52, 44, 0.07);
}

.faq-search {
	display: grid;
	grid-template-columns: auto minmax(240px, 1fr);
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 900;
}

.faq-search input {
	width: 100%;
	min-height: 48px;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 14px;
	outline: 0;
	background: rgba(255, 255, 255, 0.92);
	font-family: inherit;
	font-size: 13px;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.faq-search input:focus {
	border-color: rgba(12, 118, 88, 0.45);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(12, 118, 88, 0.09);
}

.faq-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.faq-filters button {
	min-height: 36px;
	padding: 7px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--muted);
	cursor: pointer;
	font-family: inherit;
	font-size: 11px;
	font-weight: 850;
	transition: transform .2s var(--spring), border-color .2s ease, background .2s ease, color .2s ease;
}

.faq-filters button:hover {
	transform: translateY(-2px);
	border-color: rgba(12, 118, 88, 0.25);
	color: var(--primary);
}

.faq-filters button.active {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
	box-shadow: 0 8px 18px rgba(12, 118, 88, 0.18);
}

.faq-list {
	max-width: none;
}

.faq-item {
	margin-bottom: 11px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 7px 22px rgba(9, 52, 44, 0.05);
}

.faq-item.is-hidden {
	display: none;
}

.faq-item > button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: right;
	font-weight: 900;
}

.faq-item > button > span {
	display: grid;
	gap: 6px;
	line-height: 1.9;
}

.faq-item > button small {
	width: fit-content;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--primary-light);
	color: var(--primary);
	font-size: 9px;
	font-weight: 900;
}

.faq-item > button i {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	flex: 0 0 28px;
	border-radius: 9px;
	background: var(--primary-light);
	color: var(--primary);
	font-size: 19px;
	font-style: normal;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.faq-item.is-open > button i {
	transform: rotate(45deg);
	background: var(--primary);
	color: #fff;
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .32s var(--ease);
}

.faq-answer p {
	min-height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0 22px;
	color: var(--muted);
	font-size: 13px;
	transition: padding .32s ease;
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
	padding-bottom: 20px;
}

.faq-empty {
	display: none;
	padding: 26px;
	border: 1px dashed rgba(12, 118, 88, 0.28);
	border-radius: 17px;
	background: rgba(12, 118, 88, 0.04);
	color: var(--muted);
	text-align: center;
	font-size: 13px;
	font-weight: 800;
}

.faq-empty.is-visible {
	display: block;
}

.faq-source-note {
	margin-top: 22px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 22px 24px;
	border: 1px solid rgba(210, 155, 57, 0.24);
	border-radius: 20px;
	background:
		linear-gradient(135deg, rgba(210, 155, 57, 0.09), rgba(255, 255, 255, 0.9)),
		#fff;
}

.faq-source-note strong {
	display: block;
	margin-bottom: 5px;
	color: var(--ink);
	font-size: 13px;
}

.faq-source-note p {
	margin: 0;
	color: var(--muted);
	font-size: 11px;
	line-height: 2;
}

.faq-source-links {
	display: grid;
	gap: 8px;
}

.faq-source-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 220px;
	padding: 9px 12px;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: #fff;
	color: var(--primary);
	font-size: 10px;
	font-weight: 850;
	transition: transform .2s var(--spring), border-color .2s ease;
}

.faq-source-links a:hover {
	transform: translateX(-3px);
	border-color: rgba(12, 118, 88, 0.3);
}

.public-questions {
	margin-top: 34px;
}

.public-question-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.public-question-grid article {
	position: relative;
	overflow: hidden;
	padding: 23px;
	border: 1px solid rgba(8, 123, 103, .14);
	border-radius: 20px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 248, 245, .94));
	box-shadow: var(--shadow-3d);
	transition: transform .3s var(--spring), box-shadow .3s ease;
}

.public-question-grid article::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--gold));
}

.public-question-grid article:hover {
	transform: translateY(-5px);
	box-shadow: 0 28px 58px rgba(7, 45, 37, .14);
}

.public-question-grid span {
	display: inline-flex;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--primary-light);
	color: var(--primary);
	font-size: 9px;
	font-weight: 900;
}

.public-question-grid h3 {
	margin: 13px 0 8px;
	color: var(--ink);
	font-size: 15px;
	line-height: 2;
}

.public-question-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 2.1;
}

.question-box {
	position: relative;
	display: grid;
	grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
	gap: 30px;
	margin-top: 36px;
	padding: clamp(24px, 4vw, 38px);
	overflow: hidden;
	border: 1px solid rgba(210, 155, 57, .28);
	border-radius: 28px;
	background:
		radial-gradient(circle at 8% 10%, rgba(210, 155, 57, .16), transparent 18rem),
		linear-gradient(145deg, rgba(4, 38, 58, .99), rgba(5, 70, 67, .97));
	color: #fff;
	box-shadow: 0 34px 75px rgba(4, 39, 47, .22), inset 0 1px rgba(255, 255, 255, .1);
}

.question-box::after {
	content: "؟";
	position: absolute;
	left: -20px;
	bottom: -90px;
	color: rgba(255, 255, 255, .035);
	font-size: 260px;
	font-weight: 900;
	line-height: 1;
	transform: rotate(-10deg);
	pointer-events: none;
}

.question-box__intro,
.question-form {
	position: relative;
	z-index: 1;
}

.question-box__intro {
	align-self: center;
}

.question-box__intro .section-kicker {
	color: #83e5c9;
}

.question-box__intro h2 {
	margin: 10px 0 12px;
	font-size: clamp(24px, 3.3vw, 36px);
	line-height: 1.6;
}

.question-box__intro p {
	margin: 0;
	color: rgba(238, 248, 245, .69);
	font-size: 12px;
	line-height: 2.15;
}

.question-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 13px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 21px;
	background: rgba(255, 255, 255, .085);
	box-shadow: inset 0 1px rgba(255, 255, 255, .1);
	backdrop-filter: blur(14px);
}

.question-form label {
	display: grid;
	gap: 7px;
}

.question-form label > span {
	color: rgba(255, 255, 255, .8);
	font-size: 10px;
	font-weight: 850;
}

.question-form input,
.question-form select,
.question-form textarea {
	width: 100%;
	min-height: 45px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 12px;
	outline: 0;
	background: rgba(255, 255, 255, .96);
	color: var(--ink);
	font-size: 11px;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.question-form textarea {
	min-height: 135px;
	resize: vertical;
	line-height: 2;
}

.question-form input:focus,
.question-form select:focus,
.question-form textarea:focus {
	border-color: #78d8bd;
	box-shadow: 0 0 0 4px rgba(112, 222, 190, .14);
	transform: translateY(-1px);
}

.question-form__full {
	grid-column: 1 / -1;
}

.question-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.question-form__footer small {
	max-width: 390px;
	color: rgba(255, 255, 255, .58);
	font-size: 9px;
	line-height: 1.9;
}

.question-form .form-message {
	margin: 0;
}

.question-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.page-hero--contact {
	background:
		radial-gradient(circle at 15% 20%, rgba(210, 155, 57, 0.17), transparent 18rem),
		linear-gradient(145deg, #061f34, #0b3e42);
	color: #fff;
}

.page-hero--contact .section-kicker {
	color: #80e1c6;
}

.page-hero--contact p {
	color: rgba(238, 248, 245, 0.7);
}

.contact-layout {
	grid-template-columns: .72fr 1.28fr;
}

.contact-panel {
	padding: 30px;
	border-radius: 25px;
	background:
		radial-gradient(circle at 85% 10%, rgba(210, 155, 57, 0.2), transparent 14rem),
		linear-gradient(145deg, var(--navy), #064d49);
	color: #fff;
	box-shadow: var(--shadow-md);
	transform: perspective(1100px) rotateY(2deg);
}

.contact-panel .section-kicker {
	color: #85e5cb;
}

.contact-panel h2 {
	margin: 7px 0 21px;
	font-size: 27px;
}

.contact-panel > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel > a span {
	color: rgba(238, 248, 245, 0.6);
	font-size: 11px;
}

.contact-panel > a strong {
	font-size: 13px;
	direction: ltr;
}

.contact-note {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 22px;
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(238, 248, 245, 0.72);
	font-size: 10px;
}

.contact-note i {
	width: 9px;
	height: 9px;
	flex: 0 0 9px;
	border-radius: 50%;
	background: #61e3ae;
	box-shadow: 0 0 0 4px rgba(97, 227, 174, 0.12);
}

.form-card {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 25px;
	background: #fff;
	box-shadow: var(--shadow-3d);
	transform: perspective(1200px) rotateY(-1.2deg);
}

.form-heading h2,
.form-heading p {
	margin: 0;
}

.form-heading h2 {
	font-size: 24px;
}

.form-heading p {
	color: var(--muted);
	font-size: 10px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 13px;
	margin: 20px 0;
}

.form-grid__full {
	grid-column: 1 / -1;
}

label > span {
	display: block;
	margin-bottom: 5px;
	color: #394a44;
	font-size: 10px;
	font-weight: 800;
}

.form-hint {
	display: block;
	margin-top: 5px;
	color: var(--gold-dark);
	font-size: 8px;
	font-weight: 700;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 12px;
	outline: 0;
	background: #fbfcfc;
	color: var(--ink);
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
	height: 46px;
	padding: 8px 12px;
}

textarea {
	display: block;
	padding: 11px 12px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: rgba(8, 123, 103, 0.55);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(8, 123, 103, 0.09);
}

.form-message {
	display: none;
	margin-top: 13px;
	padding: 11px 13px;
	border-radius: 11px;
	font-size: 11px;
}

.form-message.is-visible {
	display: block;
}

.form-message.is-success {
	background: #e6f7ef;
	color: #126844;
}

.form-message.is-error {
	background: #fff0f0;
	color: #9c3030;
}

.site-footer {
	padding: 50px 0 20px;
	background:
		radial-gradient(circle at 8% 0, rgba(210, 155, 57, 0.13), transparent 18rem),
		#061f2d;
	color: #e9f5f1;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	padding-bottom: 30px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 11px;
}

.footer-brand img {
	width: 48px;
	height: 48px;
	border-radius: 15px;
	object-fit: cover;
}

.footer-brand strong,
.footer-brand span,
.footer-contact span,
.footer-contact strong,
.footer-contact small {
	display: block;
}

.footer-brand strong {
	font-size: 17px;
}

.footer-brand span,
.footer-contact span,
.footer-contact small {
	color: rgba(231, 245, 240, 0.55);
	font-size: 10px;
}

.footer-links {
	display: flex;
	gap: 18px;
	color: rgba(234, 246, 242, 0.78);
	font-size: 11px;
	font-weight: 800;
}

.footer-links a:hover {
	color: #82e5ca;
}

.footer-contact {
	text-align: left;
}

.footer-contact strong {
	font-size: 14px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(231, 245, 240, 0.47);
	font-size: 9px;
}

.drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 98;
	background: rgba(3, 24, 31, 0.53);
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(4px);
	transition: opacity .25s ease, visibility .25s ease;
}

.drawer-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.cart-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	width: min(430px, 100%);
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: var(--shadow-lg);
	transform: translateX(-105%);
	transition: transform .36s var(--spring);
}

.cart-drawer.is-open {
	transform: translateX(0);
}

.drawer-header {
	min-height: 79px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 17px 20px;
	border-bottom: 1px solid var(--line);
}

.drawer-header span,
.drawer-header small {
	display: block;
}

.drawer-header span {
	font-size: 18px;
	font-weight: 900;
}

.drawer-header small {
	color: var(--muted);
	font-size: 9px;
}

.close-button {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	color: var(--muted);
	font-size: 24px;
	line-height: 1;
	transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.close-button:hover {
	transform: rotate(5deg);
	border-color: var(--primary);
	color: var(--primary);
}

.cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 15px 20px;
}

.cart-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.cart-item h3,
.cart-item p {
	margin: 0;
}

.cart-item h3 {
	font-size: 13px;
}

.cart-item p {
	color: var(--muted);
	font-size: 10px;
}

.cart-item__price {
	color: var(--primary-dark);
	font-size: 12px;
	font-weight: 900;
}

.quantity-control {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	margin-top: 10px;
	padding: 3px;
	border: 1px solid var(--line);
	border-radius: 10px;
}

.quantity-control button {
	width: 27px;
	height: 27px;
	border: 0;
	border-radius: 7px;
	background: var(--surface-soft);
	cursor: pointer;
}

.quantity-control span {
	min-width: 28px;
	text-align: center;
	font-size: 11px;
	font-weight: 900;
}

.remove-item {
	align-self: start;
	border: 0;
	background: transparent;
	color: var(--danger);
	cursor: pointer;
	font-size: 10px;
}

.empty-state {
	flex: 1;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 25px;
	text-align: center;
}

.empty-state.is-visible {
	display: flex;
}

.empty-state span {
	font-size: 17px;
	font-weight: 900;
}

.empty-state p {
	max-width: 270px;
	margin: 5px 0 17px;
	color: var(--muted);
	font-size: 11px;
}

.drawer-footer {
	padding: 18px 20px;
	border-top: 1px solid var(--line);
	background: #fbfcfc;
}

.drawer-footer[hidden] {
	display: none;
}

.cart-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.cart-total span {
	color: var(--muted);
	font-size: 11px;
}

.cart-total strong {
	color: var(--primary-dark);
	font-size: 17px;
}

.drawer-footer > small {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-size: 8px;
	text-align: center;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 110;
	display: grid;
	place-items: center;
	padding: 18px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open {
	opacity: 1;
	visibility: visible;
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 22, 30, 0.65);
	backdrop-filter: blur(7px);
}

.modal-card {
	position: relative;
	z-index: 1;
	width: min(600px, 100%);
	max-height: min(830px, calc(100vh - 36px));
	overflow-y: auto;
	padding: 31px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 26px;
	background: #fff;
	box-shadow: var(--shadow-lg);
	transform: translateY(18px) scale(.98);
	transition: transform .32s var(--spring);
}

.modal.is-open .modal-card {
	transform: translateY(0) scale(1);
}

.modal-card--auth {
	width: min(540px, 100%);
}

.modal-card--checkout {
	width: min(720px, 100%);
}

.modal-close {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
}

.auth-heading,
.checkout-heading {
	padding-left: 45px;
}

.auth-heading h2,
.checkout-heading h2 {
	margin: 5px 0 4px;
	font-size: 25px;
}

.auth-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 11px;
}

.auth-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px;
	margin: 22px 0 18px;
	padding: 4px;
	border-radius: 13px;
	background: var(--surface-soft);
}

.auth-tabs button {
	min-height: 40px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
}

.auth-tabs button.active {
	background: #fff;
	color: var(--primary);
	box-shadow: 0 5px 15px rgba(8, 66, 55, 0.08);
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: grid;
	gap: 13px;
	animation: pageIn .3s ease both;
}

.auth-form .form-grid {
	margin: 0;
}

.account-view {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 12px;
	text-align: center;
}

.account-avatar {
	width: 75px;
	height: 75px;
	display: grid;
	place-items: center;
	margin-bottom: 13px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--navy));
	color: #fff;
	font-size: 28px;
	font-weight: 900;
}

.account-view h2,
.account-view p {
	margin: 0;
}

.account-view p {
	color: var(--muted);
	font-size: 11px;
}

.account-tip {
	width: 100%;
	margin: 19px 0 14px;
	padding: 13px;
	border-radius: 12px;
	background: var(--surface-soft);
	color: var(--muted);
	font-size: 10px;
}

.checkout-progress {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto;
	align-items: center;
	gap: 9px;
	margin: 23px 0;
}

.checkout-progress > div {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #9aa6a1;
	font-size: 9px;
	font-weight: 900;
	transition: color .25s ease;
}

.checkout-progress > div b {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
}

.checkout-progress > div.active,
.checkout-progress > div.done {
	color: var(--primary);
}

.checkout-progress > div.active b,
.checkout-progress > div.done b {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
}

.checkout-progress > i {
	height: 1px;
	background: var(--line);
}

.checkout-step {
	display: none;
}

.checkout-step.active {
	display: block;
	animation: pageIn .32s ease both;
}

.checkout-summary {
	max-height: 300px;
	overflow-y: auto;
	border-block: 1px solid var(--line);
}

.checkout-summary-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 13px 0;
}

.checkout-summary-item span {
	color: var(--muted);
	font-size: 10px;
}

.checkout-summary-item strong {
	font-size: 12px;
}

.checkout-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 16px 0;
	padding: 14px;
	border-radius: 13px;
	background: var(--surface-soft);
}

.checkout-total span {
	color: var(--muted);
	font-size: 11px;
}

.checkout-total strong {
	color: var(--primary-dark);
	font-size: 18px;
}

.payment-methods {
	display: grid;
	gap: 8px;
	margin: 18px 0;
	padding: 0;
	border: 0;
}

.payment-methods legend {
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 900;
}

.payment-methods label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 13px;
	border: 1px solid var(--line);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
}

.payment-methods label:has(input:checked) {
	border-color: var(--primary);
	background: var(--primary-light);
}

.payment-methods input {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	accent-color: var(--primary);
}

.payment-methods label span,
.payment-methods label b,
.payment-methods label small {
	display: block;
	margin: 0;
}

.payment-methods label b {
	font-size: 11px;
}

.payment-methods label small {
	color: var(--muted);
	font-size: 8px;
}

.checkout-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 9px;
}

.order-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 5px 4px;
	text-align: center;
}

.success-check {
	width: 74px;
	height: 74px;
	display: grid;
	place-items: center;
	margin-bottom: 15px;
	border-radius: 50%;
	background: #ddf6ec;
	color: var(--success);
	font-size: 32px;
	box-shadow: 0 0 0 9px rgba(22, 132, 95, 0.07);
}

.order-success h3 {
	margin: 0;
	font-size: 23px;
}

.order-success p {
	max-width: 470px;
	margin: 7px 0 15px;
	color: var(--muted);
	font-size: 11px;
}

.order-code {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 13px;
	padding: 15px;
	border: 1px dashed var(--primary);
	border-radius: 13px;
	background: var(--primary-light);
}

.order-code span {
	color: var(--muted);
	font-size: 10px;
}

.order-code strong {
	color: var(--primary-dark);
	direction: ltr;
	letter-spacing: 1px;
}

.order-success .button + .button {
	margin-top: 8px;
}

.floating-contact {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 85;
}

.floating-contact > button,
.floating-options a {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 14px 32px rgba(5, 45, 37, 0.24);
}

.floating-contact > button {
	position: relative;
	z-index: 2;
	background: linear-gradient(135deg, var(--primary), var(--gold-dark));
	cursor: pointer;
	transition: transform .32s var(--spring);
}

.floating-contact > button svg {
	width: 25px;
	height: 25px;
}

.floating-contact.is-open > button {
	transform: rotate(12deg) scale(.92);
}

.floating-options {
	position: absolute;
	bottom: 5px;
	left: 5px;
}

.floating-options a {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 48px;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	background: #fff;
	transform: translate(0, 0) scale(.7);
	transition: transform .32s var(--spring), opacity .2s ease, box-shadow .22s ease;
}

.floating-options a:hover {
	box-shadow: 0 18px 38px rgba(5, 45, 37, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.floating-options img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: contain;
}

.floating-options .floating-option--phone {
	padding: 0;
	background: var(--primary-dark);
}

.floating-options .floating-option--phone svg {
	width: 22px;
	height: 22px;
}

.floating-contact.is-open .floating-options a {
	opacity: 1;
	pointer-events: auto;
}

.floating-contact.is-open .floating-options a:first-child {
	transform: translateY(-68px) scale(1);
}

.floating-contact.is-open .floating-options a:nth-child(2) {
	transform: translate(50px, -49px) scale(1);
}

.floating-contact.is-open .floating-options a:nth-child(3) {
	transform: translateX(68px) scale(1);
}

.toast {
	position: fixed;
	right: 50%;
	bottom: 24px;
	z-index: 140;
	max-width: min(430px, calc(100% - 30px));
	padding: 12px 17px;
	border-radius: 13px;
	background: #102e28;
	box-shadow: var(--shadow-md);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	opacity: 0;
	pointer-events: none;
	transform: translate(50%, 20px);
	transition: opacity .25s ease, transform .3s var(--spring);
}

.toast.is-visible {
	opacity: 1;
	transform: translate(50%, 0);
}

.toast.is-error {
	background: #8d3232;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .65s ease, transform .65s var(--spring);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes topbarShine {
	0%,
	60% {
		transform: translateX(-100%);
	}
	85%,
	100% {
		transform: translateX(100%);
	}
}

@keyframes pulseRing {
	from {
		opacity: .9;
		transform: scale(.65);
	}
	to {
		opacity: 0;
		transform: scale(1.55);
	}
}

@keyframes floatOrb {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(32px, -18px, 0) scale(1.12);
	}
}

@keyframes pageIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1080px) {
	.nav-shell {
		gap: 12px;
	}

	.brand__text small {
		display: none;
	}

	.main-menu a {
		padding-inline: 7px;
		font-size: 11px;
	}

	.header-consult {
		display: none;
	}

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

@media (max-width: 900px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.topbar__inner {
		min-height: 44px;
	}

	.topbar__message {
		display: none;
	}

	.topbar__contacts {
		width: 100%;
		justify-content: center;
	}

	.nav-shell {
		min-height: 68px;
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle {
		display: block;
		grid-column: 3;
		grid-row: 1;
	}

	body.menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	body.menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	body.menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.main-menu {
		position: absolute;
		top: calc(100% + 8px);
		right: 18px;
		left: 18px;
		display: grid;
		gap: 4px;
		padding: 10px;
		border: 1px solid var(--line);
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: var(--shadow-md);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-9px);
		transition: opacity .22s ease, visibility .22s ease, transform .25s var(--spring);
	}

	body.menu-open .main-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.main-menu a {
		justify-content: space-between;
		padding: 10px 12px;
		font-size: 12px;
	}

	.main-menu a::after {
		display: none;
	}

	.header-actions {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.account-button span,
	.cart-button > span {
		display: none;
	}

	.icon-button {
		width: 42px;
		padding: 5px;
	}

	.cart-count {
		position: absolute;
		top: -5px;
		left: -5px;
	}

	.hero-card {
		min-height: 580px;
		background:
			linear-gradient(90deg, rgba(3, 24, 43, .99), rgba(3, 24, 43, .88)),
			var(--hero-image) center / cover no-repeat;
	}

	.hero-content {
		max-width: 100%;
	}

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

	.process-layout,
	.store-hero-layout {
		grid-template-columns: 1fr;
		gap: 35px;
	}

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

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

	.contact-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 700px) {
	body {
		background-position: center, center 58%, left top, right top;
		background-size: cover, min(82vw, 520px) auto, auto, auto;
	}

	.shell {
		width: min(100% - 24px, 1180px);
	}

	.topbar-link {
		padding-inline: 9px;
	}

	.brand__logo {
		width: 42px;
		height: 42px;
		border-radius: 13px;
	}

	.brand__text strong {
		font-size: 15px;
	}

	.hero {
		padding-top: 14px;
	}

	.hero-card {
		min-height: 600px;
		padding: 30px 23px;
		border-radius: 24px;
	}

	.hero-card::before {
		inset: 7px;
		border-radius: 19px;
	}

	.hero-content h1 {
		margin-top: 13px;
		font-size: clamp(32px, 10vw, 45px);
		line-height: 1.48;
		letter-spacing: -1.2px;
	}

	.hero-content > p {
		font-size: 13px;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-trust {
		grid-template-columns: 1fr;
	}

	.hero-trust div:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.section-block {
		padding: 48px 0;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.store-toolbar {
		grid-template-columns: 1fr 1fr;
	}

	.store-search {
		grid-column: 1 / -1;
	}

	.store-filter-toggle,
	.store-sort,
	.store-cart-button {
		width: 100%;
	}

	.store-sort-menu {
		right: 0;
		left: 0;
		width: auto;
	}

	.store-filter-panel {
		padding: 17px;
	}

	.store-filter-panel__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.store-filter-grid {
		grid-template-columns: 1fr;
	}

	.store-filter-field--categories {
		grid-column: auto;
	}

	.service-grid,
	.service-grid--wide,
	.checkout-benefits,
	.checklist-layout,
	.about-layout {
		grid-template-columns: 1fr;
	}

	.process-layout {
		gap: 28px;
	}

	.page-hero {
		padding: 48px 0;
	}

	.page-hero h1 {
		font-size: 34px;
	}

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

	.product-visual {
		min-height: 190px;
	}

	.product-body {
		padding: 21px;
	}

	.about-image {
		min-height: 420px;
	}

	.about-copy {
		padding: 8px 2px;
	}

	.about-image,
	.contact-panel,
	.form-card,
	.store-hero-stat {
		transform: none;
	}

	.mini-stats {
		grid-template-columns: 1fr;
	}

	.form-card,
	.contact-panel,
	.checklist-card {
		padding: 23px;
	}

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

	.form-grid__full {
		grid-column: auto;
	}

	.faq-search {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.faq-filters {
		flex-wrap: nowrap;
		margin-inline: -4px;
		padding: 4px;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.faq-filters button {
		flex: 0 0 auto;
	}

	.faq-item > button {
		padding: 17px;
	}

	.faq-answer p {
		padding-inline: 17px;
	}

	.faq-source-note {
		grid-template-columns: 1fr;
		padding: 19px;
	}

	.faq-source-links a {
		min-width: 0;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand,
	.footer-links {
		justify-content: center;
	}

	.footer-contact {
		text-align: center;
	}

	.footer-bottom {
		align-items: center;
		flex-direction: column;
		text-align: center;
	}

	.modal {
		padding: 8px;
	}

	.modal-card {
		max-height: calc(100vh - 16px);
		padding: 25px 18px;
		border-radius: 20px;
	}

	.checkout-progress > div span {
		display: none;
	}

	.checkout-progress {
		grid-template-columns: auto 1fr auto 1fr auto;
	}

	.checkout-buttons {
		flex-direction: column-reverse;
	}

	.checkout-buttons .button {
		width: 100%;
	}

	.floating-contact {
		left: 13px;
		bottom: 13px;
	}
}

@media (max-width: 420px) {
	.brand__text {
		display: none;
	}

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

	.topbar-link {
		padding-inline: 9px;
		font-size: 10px;
	}
}

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

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

.page-hero--circulars {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(110deg, rgba(3, 28, 47, .98), rgba(5, 67, 67, .94)),
		url("images/back.png") center 45% / cover fixed;
	color: #fff;
}

.page-hero--circulars::before,
.document-hero::before,
.single-circular__hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, transparent, rgba(210, 155, 57, .09), transparent),
		radial-gradient(circle at 82% 18%, rgba(210, 155, 57, .18), transparent 24rem);
	pointer-events: none;
}

.circulars-hero-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: center;
	gap: 48px;
}

.page-hero--circulars h1 {
	max-width: 760px;
}

.page-hero--circulars p {
	max-width: 780px;
	color: rgba(238, 249, 246, .75);
}

.page-hero--circulars .section-kicker {
	color: #8fe2cc;
}

.circulars-hero-badge {
	position: relative;
	display: flex;
	align-items: center;
	gap: 17px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
	box-shadow: 0 2px 0 rgba(255, 255, 255, .14) inset, 0 24px 55px rgba(1, 18, 30, .28);
	backdrop-filter: blur(14px);
	transform: perspective(900px) rotateY(-4deg);
}

.circulars-hero-badge::after {
	position: absolute;
	inset: 7px;
	content: "";
	border: 1px solid rgba(210, 155, 57, .24);
	border-radius: 18px;
	pointer-events: none;
}

.circulars-hero-badge svg {
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	padding: 13px;
	border-radius: 18px;
	background: linear-gradient(145deg, var(--gold), var(--gold-dark));
	box-shadow: 0 12px 28px rgba(210, 155, 57, .25);
	color: #fff;
}

.circulars-hero-badge strong,
.circulars-hero-badge span {
	display: block;
}

.circulars-hero-badge strong {
	margin-bottom: 5px;
	font-size: 17px;
}

.circulars-hero-badge span {
	color: rgba(240, 248, 246, .65);
	font-size: 11px;
}

.circular-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.circular-card {
	position: relative;
	display: flex;
	min-height: 390px;
	flex-direction: column;
	overflow: hidden;
	padding: 28px;
	border: 1px solid rgba(8, 123, 103, .13);
	border-radius: 24px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(246, 250, 248, .96));
	box-shadow: var(--shadow-3d);
	transform-style: preserve-3d;
	transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .35s ease;
}

.circular-card::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 96px;
	height: 5px;
	content: "";
	border-radius: 0 0 0 99px;
	background: linear-gradient(90deg, var(--gold), var(--primary));
}

.circular-card::after {
	position: absolute;
	top: -90px;
	left: -90px;
	width: 190px;
	height: 190px;
	content: "";
	border-radius: 50%;
	background: radial-gradient(circle, rgba(210, 155, 57, .09), transparent 68%);
	pointer-events: none;
}

.circular-card:hover {
	z-index: 2;
	border-color: rgba(210, 155, 57, .42);
	box-shadow: 0 2px 0 #fff inset, 0 32px 65px rgba(8, 45, 37, .17);
	transform: translateY(-8px) rotateX(1deg);
}

.circular-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
}

.circular-card__meta span {
	padding: 5px 10px;
	border: 1px solid rgba(8, 123, 103, .13);
	border-radius: 99px;
	background: var(--primary-light);
	color: var(--primary-dark);
}

.circular-card__meta b {
	color: var(--gold-dark);
	font-size: 10px;
}

.circular-card h2 {
	margin: 0 0 14px;
	font-size: clamp(18px, 1.8vw, 23px);
	line-height: 1.75;
	letter-spacing: -.35px;
}

.circular-card h2 a {
	transition: color .25s ease;
}

.circular-card h2 a:hover {
	color: var(--primary);
}

.circular-card > p {
	margin: 0 0 25px;
	color: var(--muted);
	font-size: 13px;
	line-height: 2.05;
}

.circular-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.circular-card__actions .button {
	min-height: 43px;
	padding: 9px 16px;
	font-size: 11px;
}

.circular-source-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--primary);
	font-size: 11px;
	font-weight: 900;
}

.circular-source-link span {
	color: var(--gold-dark);
	font-size: 16px;
	transition: transform .25s var(--spring);
}

.circular-source-link:hover span {
	transform: translate(-3px, -3px);
}

.circular-update-note {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 23px;
	padding: 15px 19px;
	border: 1px solid rgba(8, 123, 103, .12);
	border-radius: 17px;
	background: rgba(221, 244, 237, .68);
	color: var(--primary-dark);
	box-shadow: var(--shadow-sm);
}

.circular-update-note p {
	margin: 0;
	font-size: 12px;
}

.circular-document-page {
	background-image:
		linear-gradient(180deg, rgba(247, 250, 249, .91), rgba(238, 244, 242, .96)),
		url("images/back.png");
	background-position: center, center;
	background-size: cover, min(58vw, 860px) auto;
	background-attachment: fixed;
}

.document-header {
	position: sticky;
	top: 0;
	z-index: 90;
	border-bottom: 1px solid rgba(8, 123, 103, .1);
	background: rgba(255, 255, 255, .91);
	box-shadow: 0 14px 35px rgba(5, 42, 35, .08);
	backdrop-filter: blur(17px);
}

.document-header__inner {
	display: flex;
	min-height: 86px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.document-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
}

.document-nav > a:not(.button):hover {
	color: var(--primary);
}

.document-nav .button {
	min-height: 43px;
	padding: 9px 17px;
}

.document-main {
	min-height: 60vh;
}

.document-hero,
.single-circular__hero {
	position: relative;
	overflow: hidden;
	padding: 75px 0 66px;
	background:
		linear-gradient(110deg, rgba(3, 27, 45, .98), rgba(5, 69, 68, .94)),
		url("images/back.png") center / cover fixed;
	color: #fff;
}

.document-hero .shell,
.single-circular__hero .shell {
	position: relative;
	z-index: 1;
}

.document-hero .section-kicker,
.single-circular__hero .section-kicker {
	color: #8fe2cc;
}

.document-hero h1,
.single-circular__hero h1 {
	max-width: 940px;
	margin: 10px 0 16px;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.55;
	letter-spacing: -1.3px;
	text-wrap: balance;
}

.document-hero p {
	max-width: 750px;
	margin: 0;
	color: rgba(235, 247, 244, .7);
	font-size: 15px;
}

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

.circular-pagination {
	margin-top: 38px;
}

.circular-pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.circular-pagination .page-numbers {
	min-width: 42px;
	padding: 7px 12px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.circular-pagination .current,
.circular-pagination .page-numbers:hover {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
}

.circular-empty {
	padding: 50px 25px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	text-align: center;
	box-shadow: var(--shadow-md);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 28px;
	color: rgba(235, 247, 244, .65);
	font-size: 11px;
	font-weight: 800;
}

.breadcrumb a:hover {
	color: #fff;
}

.single-circular__hero h1 {
	max-width: 1050px;
	font-size: clamp(27px, 3.3vw, 46px);
}

.single-circular__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 25px;
}

.single-circular__meta span {
	padding: 7px 13px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 99px;
	background: rgba(255, 255, 255, .075);
	color: rgba(238, 248, 246, .68);
	font-size: 10px;
	backdrop-filter: blur(8px);
}

.single-circular__meta strong {
	color: #fff;
}

.single-circular__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: start;
	gap: 25px;
}

.single-circular__content {
	position: relative;
	padding: clamp(25px, 4vw, 48px);
	border: 1px solid rgba(8, 123, 103, .13);
	border-radius: 26px;
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--shadow-3d);
	color: #263b35;
	font-size: 15px;
	line-height: 2.35;
}

.single-circular__content > p {
	margin: 0 0 22px;
}

.single-circular__content > p:last-of-type {
	margin-bottom: 0;
}

.circular-content-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 30px;
	padding-bottom: 17px;
	border-bottom: 1px solid var(--line);
}

.circular-content-label span {
	font-size: 22px;
	font-weight: 900;
}

.circular-content-label b {
	padding: 5px 11px;
	border-radius: 99px;
	background: var(--primary-light);
	color: var(--primary);
	font-size: 10px;
}

.circular-disclaimer {
	margin-top: 35px;
	padding: 16px 18px;
	border-right: 4px solid var(--gold);
	border-radius: 14px;
	background: #fff8eb;
	color: #795f2f;
	font-size: 11px;
	line-height: 2;
}

.single-circular__sidebar {
	position: sticky;
	top: 112px;
	display: grid;
	gap: 17px;
}

.circular-source-box,
.circular-consult-box {
	padding: 23px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, .96);
	box-shadow: var(--shadow-3d);
}

.circular-source-box > span,
.circular-consult-box > strong {
	display: block;
	margin-bottom: 8px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 900;
}

.circular-source-box p,
.circular-consult-box p {
	margin: 0 0 17px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.95;
}

.circular-consult-box {
	border-color: rgba(210, 155, 57, .25);
	background:
		linear-gradient(145deg, rgba(255, 250, 240, .98), rgba(255, 255, 255, .97));
}

.document-footer {
	margin-top: 0;
}

.managed-page-main {
	min-height: 68vh;
}

.managed-page-hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 68px;
	background:
		radial-gradient(circle at 15% 15%, rgba(210, 155, 57, .2), transparent 20rem),
		linear-gradient(110deg, rgba(3, 27, 45, .98), rgba(5, 69, 68, .94)),
		url("images/back.png") center / cover fixed;
	color: #fff;
}

.managed-page-hero::before {
	content: "";
	position: absolute;
	inset: auto -8% -115px auto;
	width: 360px;
	height: 230px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	transform: rotate(-12deg);
	box-shadow: 0 0 0 38px rgba(255, 255, 255, .025), 0 0 0 75px rgba(255, 255, 255, .018);
}

.managed-page-hero .shell {
	position: relative;
	z-index: 1;
}

.managed-page-hero h1 {
	max-width: 920px;
	margin: 10px 0 12px;
	font-size: clamp(30px, 4.5vw, 54px);
	line-height: 1.5;
}

.managed-page-hero p {
	max-width: 760px;
	margin: 0;
	color: rgba(239, 249, 246, .7);
	font-size: 13px;
	line-height: 2.1;
}

.managed-page-content {
	position: relative;
	padding: clamp(25px, 5vw, 52px);
	border: 1px solid rgba(8, 123, 103, .13);
	border-radius: 28px;
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--shadow-3d);
	color: #263b35;
	font-size: 14px;
	line-height: 2.35;
}

.managed-page-content > :first-child {
	margin-top: 0;
}

.managed-page-content > :last-child {
	margin-bottom: 0;
}

.managed-page-content h2,
.managed-page-content h3,
.managed-page-content h4 {
	margin: 1.8em 0 .55em;
	color: var(--ink);
	line-height: 1.75;
}

.managed-page-content h2 {
	font-size: clamp(22px, 3vw, 31px);
}

.managed-page-content h3 {
	font-size: 19px;
}

.managed-page-content p,
.managed-page-content ul,
.managed-page-content ol {
	margin: 0 0 1.35em;
}

.managed-page-content a {
	color: var(--primary);
	font-weight: 850;
	text-decoration: underline;
	text-decoration-color: rgba(8, 123, 103, .28);
	text-underline-offset: 4px;
}

.managed-page-content blockquote {
	margin: 26px 0;
	padding: 18px 21px;
	border: 0;
	border-right: 4px solid var(--gold);
	border-radius: 15px;
	background: #fff8eb;
	color: #6e572d;
}

.managed-page-content img {
	height: auto;
	margin-block: 25px;
	border-radius: 18px;
	box-shadow: var(--shadow-md);
}

.managed-page-content table {
	width: 100%;
	margin-block: 25px;
	border-collapse: collapse;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 0 0 1px var(--line);
}

.managed-page-content th,
.managed-page-content td {
	padding: 11px 13px;
	border: 1px solid var(--line);
	text-align: right;
}

.managed-page-content th {
	background: var(--surface-soft);
	color: var(--ink);
}

@media (max-width: 900px) {
	.circulars-hero-layout,
	.single-circular__layout {
		grid-template-columns: 1fr;
	}

	.circulars-hero-badge {
		max-width: 460px;
		transform: none;
	}

	.single-circular__sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.question-box {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.circular-grid,
	.circular-grid--archive {
		grid-template-columns: 1fr;
	}

	.document-header__inner {
		min-height: 72px;
	}

	.document-nav > a:not(.button) {
		display: none;
	}

	.document-header .brand__text small {
		display: none;
	}

	.document-hero,
	.single-circular__hero {
		padding: 50px 0 45px;
	}

	.circular-card {
		min-height: 0;
		padding: 22px;
	}

	.circular-card__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.circular-card__actions .button,
	.circular-source-link {
		justify-content: center;
	}

	.single-circular__sidebar {
		grid-template-columns: 1fr;
	}

	.single-circular__meta {
		align-items: stretch;
		flex-direction: column;
	}

	.public-question-grid,
	.question-form {
		grid-template-columns: 1fr;
	}

	.question-form__full {
		grid-column: auto;
	}

	.question-box {
		padding: 20px;
		border-radius: 22px;
	}

	.question-form {
		padding: 15px;
	}

	.question-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.question-form__footer .button {
		width: 100%;
	}

	.managed-page-hero {
		padding: 52px 0 47px;
	}

	.managed-page-content {
		padding: 22px 18px;
		border-radius: 20px;
		overflow-x: auto;
	}
}
