:root {
	/* Palette */
	--accent: #0044cc; /* main accent (you provided) */
	--accent-2: #0066ff; /* brighter */
	--navy: #0a1a2f; /* dark text */
	--muted: #6b7280; /* grey text */
	--bg: #ffffff; /* white bg */
	--surface: #f5f7fb; /* light surface */
	--card: #f0f4ff; /* subtle card */
	--glass: rgba(255, 255, 255, 0.6);
	--accent-gradient: linear-gradient(135deg, var(--accent-2), var(--accent));
	--header-height: 72px;
	--radius: 12px;
	--shadow: 0 8px 30px rgba(10, 26, 47, 0.08);
	--max-width: 1440px;
}

/* Reset & base */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,
body {
	height: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	margin: 0;
	font-family:
		'Montserrat',
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		'Helvetica Neue',
		Arial;
	color: var(--navy);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.4;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	background: none;
	outline: none;
}

a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Container */
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Custom Checkbox */
.consent-wrapper {
	margin: 20px 0;
}

.custom-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	position: relative;
	user-select: none;
}

.custom-checkbox input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	outline: none;
}

.custom-checkbox .checkmark {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-color: var(--bg);
	border: 2px solid var(--muted);
	border-radius: 4px;
	transition: all 0.2s ease;
	margin-top: 2px;
}

.custom-checkbox:hover .checkmark {
	border-color: var(--accent);
}

.custom-checkbox input[type='checkbox']:checked ~ .checkmark {
	background-color: var(--accent);
	border-color: var(--accent);
}

.custom-checkbox .checkmark:after {
	content: '';
	position: absolute;
	display: none;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.custom-checkbox input[type='checkbox']:checked ~ .checkmark:after {
	display: block;
}

.custom-checkbox .consent-text {
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
	flex: 1;
}

.custom-checkbox input[type='checkbox']:focus ~ .checkmark {
	box-shadow: 0 0 0 3px rgba(0, 68, 204, 0.1);
	border-color: var(--accent);
}

.custom-checkbox input[type='checkbox']:invalid ~ .checkmark {
	border-color: var(--muted);
}

.custom-checkbox input[type='checkbox']:invalid:focus ~ .checkmark {
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Header */
header {
	position: sticky;
	top: 0;
	z-index: 60;
	height: var(--header-height);
	display: flex;
	align-items: center;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.9),
		rgba(255, 255, 255, 0.75)
	);
	backdrop-filter: blur(4px);
	box-shadow: 0 1px 0 rgba(10, 26, 47, 0.04);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand img {
	height: 44px;
	width: auto;
}

nav {
	display: flex;
	gap: 22px;
	align-items: center;
}

nav a {
	font-weight: 600;
	color: var(--navy);
	padding: 8px 10px;
	border-radius: 8px;
	transition:
		background 0.18s,
		color 0.18s,
		transform 0.12s;
}

nav a:hover {
	background: var(--card);
	transform: translateY(-2px);
}

.cta {
	background: var(--accent);
	color: #fff;
	padding: 10px 14px;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 68, 204, 0.12);
	border: 1px solid var(--accent);
	transition: all 0.3s ease;
}

.cta:hover {
	background: transparent;
	color: var(--navy);
	border: 1px solid rgba(10, 26, 47, 0.06);
	box-shadow: none;
}

/* Burger Menu */
.burger-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 70;
}

.burger-menu span {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--navy);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 4px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero */
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 0 100px;
	position: relative;
	overflow: hidden;
}
/* Phone styles */
.header-phone {
	font-size: 20px;
	font-weight: 800;
	color: var(--accent);
	background: var(--card);
	padding: 8px 18px;
	border-radius: 10px;
	margin-left: 32px;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 68, 204, 0.07);
	transition:
		background 0.2s,
		color 0.2s,
		box-shadow 0.2s;
	letter-spacing: 1px;
	display: inline-block;
}
.header-phone:hover {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 4px 18px rgba(0, 68, 204, 0.13);
}

.hero-phone-block {
	display: flex;
	justify-content: end;
	align-items: center;
	margin-bottom: 30px;
}
.hero-phone {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--accent);
	background: var(--card);
	padding: 16px 36px;
	border-radius: 16px;
	text-decoration: none;
	box-shadow: 0 4px 24px rgba(0, 68, 204, 0.1);
	letter-spacing: 2px;
	display: inline-block;
	transition:
		background 0.2s,
		color 0.2s,
		box-shadow 0.2s;
}
.hero-phone:hover {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 8px 32px rgba(0, 68, 204, 0.18);
}

.hero-inner {
	display: flex;
	gap: 48px;
	align-items: center;
	width: 100%;
}

.hero-left {
	flex: 1;
	max-width: 640px;
}

.eyebrow {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.2px;
	color: var(--accent);
	margin-bottom: 14px;
	font-size: 13px;
}

h1 {
	font-size: clamp(28px, 4.6vw, 48px);
	margin: 0 0 14px;
	line-height: 1.02;
	color: var(--navy);
}

p.lead {
	color: var(--muted);
	margin: 0 0 22px;
	font-size: 18px;
	max-width: 56ch;
}

.hero-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.btn {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	padding: 12px 16px;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 68, 204, 0.12);
	border: 1px solid var(--accent);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: transparent;
	color: var(--navy);
	border: 1px solid rgba(10, 26, 47, 0.06);
	box-shadow: none;
}

.btn-ghost {
	background: transparent;
	color: var(--navy);
	border: 1px solid rgba(10, 26, 47, 0.06);
	transition: all 0.3s ease;
}

.btn-ghost:hover {
	background: var(--accent);
	color: #fff;
	border: 1px solid var(--accent);
	box-shadow: 0 10px 30px rgba(0, 68, 204, 0.12);
}

.hero-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}

.hero-card {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

/* Advantages */
.advantages {
	padding: 64px 0;
	background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.adv-card {
	background: linear-gradient(180deg, #fff, #fafbff);
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 26px rgba(10, 26, 47, 0.04);
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.adv-icon {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: var(--accent-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(0, 68, 204, 0.12);
	flex-shrink: 0;
}

.adv-body h3 {
	margin: 0 0 6px;
	font-size: 16px;
}
.adv-body p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

/* Section layout */
section.service {
	padding: 64px 0;
}

.service-inner {
	display: flex;
	gap: 32px;
	align-items: center;
}

.service-media {
	flex: 1;
	min-height: 260px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.service-content {
	flex: 1;
	max-width: 640px;
}

.service h2 {
	margin: 0 0 12px;
	font-size: 22px;
}
.service p {
	color: var(--muted);
	margin: 0 0 16px;
}

/* Horizontal gallery (CSS-only scroll-snap) */
.h-gallery {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 8px;
}

.h-gallery img {
	width: 300px;
	height: 190px;
	object-fit: cover;
	border-radius: 10px;
	flex: 0 0 auto;
	scroll-snap-align: center;
}

/* Contact form */
.contact {
	padding: 64px 0;
	background: var(--surface);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 28px;
	align-items: start;
}

form.card {
	padding: 22px;
	border-radius: 12px;
	box-shadow: var(--shadow);
	background: white;
}

label {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 8px;
}
input,
textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	border-radius: 8px;
	border: 1px solid rgba(10, 26, 47, 0.06);
	margin-bottom: 14px;
	outline: none;
	transition:
		box-shadow 0.12s,
		border-color 0.12s;
}
input:focus,
textarea:focus {
	box-shadow: 0 8px 20px rgba(0, 68, 204, 0.08);
	border-color: var(--accent);
}

/* reCAPTCHA v2 */
.g-recaptcha {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

@media (max-width: 500px) {
	.g-recaptcha {
		transform: scale(0.85);
		transform-origin: center;
	}
}

.form-actions {
	display: flex;
	justify-content: flex-end;
}

/* Toast уведомления */
.toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	pointer-events: none;
}

.toast {
	background: white;
	border-radius: 8px;
	padding: 16px 20px;
	margin-bottom: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-left: 4px solid;
	font-size: 14px;
	font-weight: 500;
	min-width: 300px;
	max-width: 400px;
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.3s ease-out;
}

.toast-show {
	transform: translateX(0);
	opacity: 1;
}

.toast-success {
	border-left-color: #28a745;
	color: #155724;
}

.toast-error {
	border-left-color: #dc3545;
	color: #721c24;
}

/* Footer */
footer {
	padding: 36px 0;
	background: #081022;
	color: #e8edf8;
}

.footer-grid {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.social a {
	display: inline-block;
	margin-right: 10px;
	padding: 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: white;
}

/* Utility */
.muted {
	color: var(--muted);
}
.small {
	font-size: 13px;
}
.section-title {
	margin-bottom: 18px;
}

.service {
	padding: 4rem 1rem;
	background: #f8f8f8;
	color: #1e1e1e;
	font-family: 'Montserrat', sans-serif;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
}

.service-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.service-media {
	position: relative;
	flex: 1 1 500px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.slides {
	display: flex;
	transition: transform 0.6s ease;
}

.slide {
	min-width: 100%;
}

.slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 10px;
}

.nav button {
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	border: none;
	font-size: 2rem;
	padding: 0.3rem 0.8rem;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s;
}

.nav button:hover {
	background: #0044cc;
}

.dots {
	text-align: center;
	padding: 1rem 0;
}

.dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	margin: 0 4px;
	cursor: pointer;
	transition: background 0.3s;
}

.dots button.active {
	background: #0044cc;
}

.service-content h2 {
	font-weight: 700;
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #1e1e1e;
}

.service-content p {
	line-height: 1.6;
	margin-bottom: 1rem;
}

.service-content .muted {
	color: #666;
	font-size: 0.95rem;
}

/* New classes for inline styles */
.brand-title {
	font-weight: 700;
}

.section-title-spacing {
	margin: 0 0 8px;
}

.advantages-grid-spacing {
	margin-top: 18px;
}

.parts-links-container {
	margin-top: 24px;
}

.parts-links-title {
	margin-bottom: 12px;
	font-weight: 600;
}

.parts-links-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.storage-section-bg {
	background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.contact-info-card .small {
	font-size: 14px;
	margin-bottom: 2px;
}

.contact-info-card a {
	transition: 300ms ease;
}

.contact-info-card a:hover {
	color: var(--accent);
}

.service-inner-reverse {
	flex-direction: row-reverse;
}

.sales-image-container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sales-image {
	border-radius: 12px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-grid-spacing {
	margin-top: 18px;
}

.contact-aside {
	max-width: 450px;
	font-size: 20px;
}

.contact-info-card {
	padding: 20px;
	background: linear-gradient(180deg, #fff, #f9fbff);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.contact-info-title {
	margin-top: 0;
}

.contact-address {
	margin: 6px 0 12px;
}

.contact-call-button {
	margin-top: 14px;
}

.footer-brand-title {
	font-weight: 700;
}

.footer-tagline {
	color: #b9c6e6;
	margin-top: 6px;
}

.footer-copyright {
	margin-top: 12px;
}

.footer-address-container {
	display: flex;
	gap: 24px;
	align-items: center;
}

.phones {
	display: flex;
	align-items: start;
	gap: 5px;
}

.phones div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/* Responsive */

@media (max-width: 1300px) {
	.service-media {
		flex: 1 1 350px;
	}
}

@media (max-width: 1150px) {
	.burger-menu {
		display: flex;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		height: 100vh;
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.98),
			rgba(255, 255, 255, 0.95)
		);
		backdrop-filter: blur(10px);
		flex-direction: column;
		gap: 0;
		padding: 80px 0 24px;
		box-shadow: -4px 0 20px rgba(10, 26, 47, 0.1);
		transition: right 0.4s ease;
		overflow-y: auto;
		z-index: 50;
	}

	nav.active {
		right: 0;
	}

	nav a {
		display: block;
		padding: 16px 24px;
		border-radius: 0;
		border-bottom: 1px solid rgba(10, 26, 47, 0.06);
		transition: all 0.2s ease;
	}

	nav a:hover {
		background: var(--card);
		transform: translateX(-4px);
	}

	.cta {
		margin: 12px 24px;
		text-align: center;
	}
}

@media (max-width: 1000px) {
	.hero {
		padding: 30px 0 80px;
	}

	.advantages {
		padding: 0 0 60px;
	}

	.hero-left,
	.service-content {
		max-width: 100%;
	}

	.service-content,
	.service-media {
		flex: none;
	}

	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-inner {
		flex-direction: column;
		gap: 22px;
	}
	.hero-right {
		width: 100%;
	}
	.service-inner {
		flex-direction: column;
		gap: 18px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact {
		padding: 0 0 64px;
	}
}

@media (max-width: 900px) {
	.service-inner {
		flex-direction: column-reverse;
	}
	.slide img {
		height: 300px;
	}
}

@media (max-width: 640px) {
	nav {
		width: 280px;
	}

	.container {
		padding: 0 16px;
	}

	.advantages-grid {
		grid-template-columns: 1fr;
	}

	section.service {
		padding: 48px 0;
	}

	.contact {
		padding: 0 0 48px;
	}

	.hero {
		padding: 30px 0 60px;
	}

	.service-media {
		box-shadow: none;
		min-height: 0;
	}

	.adv-icon {
		width: 40px;
		height: 40px;
	}

	.footer-address-container {
		display: none;
	}

	.footer-grid div {
		width: 100%;
	}

	footer {
		padding: 36px 0 16px;
	}

	.footer-copyright {
		margin-top: 30px;
		text-align: center;
		display: block;
	}
}

@media (max-width: 768px) {
	.toast-container {
		top: 10px;
		right: 10px;
		left: 10px;
	}

	.toast {
		min-width: auto;
		width: 100%;
	}

	.contact-aside {
		max-width: 450px;
		font-size: 18px;
	}
}

@media (max-width: 400px) {
	.parts-links-buttons a {
		width: 100%;
		justify-content: center;
	}

	.hero-actions {
		flex-direction: column;
		gap: 12px;
	}

	.btn-primary,
	.btn-ghost {
		width: 100%;
		justify-content: center;
	}

	.hero-right {
		min-height: auto;
	}

	.g-recaptcha {
		transform: scale(0.75);
		transform-origin: center;
	}

	.g-recaptcha > div {
		width: 200px !important;
		margin-right: auto;
	}

	.custom-checkbox .consent-text {
		font-size: 11px;
		line-height: 1.5;
	}

	form.card {
		padding: 16px;
	}

	input,
	textarea {
		padding: 10px 12px;
		font-size: 14px;
	}

	.btn {
		padding: 10px 14px;
		font-size: 14px;
	}

	.custom-checkbox {
		gap: 10px;
	}

	.custom-checkbox .checkmark {
		width: 18px;
		height: 18px;
	}

	.custom-checkbox .checkmark:after {
		left: 4px;
		top: 1px;
		width: 4px;
		height: 9px;
	}

	.brand img {
		height: 38px;
	}

	.brand-title {
		font-size: 14px;
	}

	.container {
		padding: 0 12px;
	}

	p.lead {
		font-size: 16px;
	}
}

/* SMS Disclosure Banner */
.sms-disclosure-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
	border-top: 3px solid var(--accent);
	box-shadow: 0 -4px 20px rgba(10, 26, 47, 0.15);
	z-index: 9998;
	padding: 20px;
	transform: translateY(100%);
	opacity: 0;
	transition:
		transform 0.4s ease,
		opacity 0.4s ease;
}

.sms-disclosure-banner.show {
	transform: translateY(0);
	opacity: 1;
}

.sms-disclosure-content {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.sms-disclosure-icon {
	font-size: 32px;
	flex-shrink: 0;
}

.sms-disclosure-text {
	flex: 1;
	min-width: 250px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--navy);
}

.sms-disclosure-text strong {
	color: var(--accent);
	font-weight: 700;
}

.sms-disclosure-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.phone_form a {
	font-size: 24px;
	color: var(--accent-2);
	font-weight: 600;
}

.sms-btn {
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	border: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.sms-btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 4px 12px rgba(0, 68, 204, 0.2);
}

.sms-btn-primary:hover {
	background: var(--accent-2);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 68, 204, 0.3);
}

.sms-btn-ghost {
	background: transparent;
	color: var(--accent);
	border: 2px solid var(--accent);
}

.sms-btn-ghost:hover {
	background: var(--accent);
	color: #fff;
}

.sms-disclosure-expanded {
	max-width: var(--max-width);
	margin: 16px auto 0;
	padding: 16px;
	background: rgba(0, 68, 204, 0.05);
	border-radius: 8px;
	border-left: 4px solid var(--accent);
	font-size: 13px;
	line-height: 1.7;
	color: var(--navy);
	display: none;
}

.sms-disclosure-expanded.show {
	display: block;
	animation: slideDown 0.3s ease;
}

.sms-disclosure-expanded p {
	margin: 0 0 10px;
}

.sms-disclosure-expanded p:last-child {
	margin-bottom: 0;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive для SMS баннера */
@media (max-width: 768px) {
	.sms-disclosure-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.sms-disclosure-icon {
		font-size: 24px;
	}

	.sms-disclosure-text {
		font-size: 13px;
	}

	.sms-disclosure-actions {
		width: 100%;
		flex-direction: column;
	}

	.sms-btn {
		width: 100%;
		text-align: center;
	}

	.hero-phone-block a {
		font-size: 1.8rem;
	}
}

@media (max-width: 400px) {
	.sms-disclosure-banner {
		padding: 16px 12px;
	}

	.sms-disclosure-text {
		font-size: 12px;
	}

	.sms-btn {
		padding: 8px 16px;
		font-size: 13px;
	}

	.hero-phone-block a {
		font-size: 1.4rem;
	}
}

/* Privacy Policy Page */
.privacy-policy-section {
	padding: 100px 0 80px;
	background: linear-gradient(180deg, #ffffff, #f8f9ff);
}

.privacy-policy-header {
	text-align: center;
	margin-bottom: 48px;
	padding-bottom: 32px;
	border-bottom: 2px solid var(--accent);
}

.privacy-policy-header h1 {
	font-size: clamp(32px, 5vw, 48px);
	margin: 0 0 12px;
	color: var(--navy);
}

.privacy-policy-header .lead {
	color: var(--muted);
	font-size: 16px;
	margin: 0;
}

.privacy-policy-content {
	max-width: 900px;
	margin: 0 auto;
	background: white;
	padding: 48px;
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.policy-intro {
	margin-bottom: 40px;
	padding: 24px;
	background: linear-gradient(
		135deg,
		rgba(0, 68, 204, 0.05),
		rgba(0, 102, 255, 0.05)
	);
	border-left: 4px solid var(--accent);
	border-radius: 8px;
}

.policy-intro p {
	margin: 0 0 16px;
	line-height: 1.7;
	color: var(--navy);
}

.policy-intro p:last-child {
	margin-bottom: 0;
}

.policy-section {
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(10, 26, 47, 0.08);
}

.policy-section:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.policy-section h2 {
	font-size: 24px;
	color: var(--navy);
	margin: 0 0 16px;
	padding-top: 8px;
	position: relative;
}

.policy-section h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 3px;
	background: var(--accent-gradient);
	border-radius: 2px;
}

.policy-section p {
	margin: 0 0 16px;
	line-height: 1.8;
	color: var(--navy);
	font-size: 15px;
}

.policy-section p:last-child {
	margin-bottom: 0;
}

.policy-list {
	margin: 16px 0;
	padding-left: 24px;
}

.policy-list li {
	margin-bottom: 12px;
	line-height: 1.7;
	color: var(--navy);
	font-size: 15px;
}

.policy-list li:last-child {
	margin-bottom: 0;
}

.policy-list li strong {
	color: var(--accent);
	font-weight: 600;
}

.policy-highlight {
	background: rgba(0, 68, 204, 0.03);
	padding: 24px;
	border-radius: 12px;
	border: 2px solid var(--accent);
	border-left: 6px solid var(--accent);
}

.policy-highlight h2::before {
	display: none;
}

.policy-footer {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 2px solid var(--accent);
	text-align: center;
}

.policy-footer p {
	margin: 0 0 12px;
	color: var(--muted);
	line-height: 1.6;
}

.policy-footer p:last-child {
	margin-bottom: 0;
}

.back-to-home {
	max-width: 900px;
	margin: 32px auto 0;
	text-align: center;
}

.privacy-policy-content a {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
	border-bottom: 1px solid transparent;
}

.privacy-policy-content a:hover {
	color: var(--accent-2);
	border-bottom-color: var(--accent-2);
}

.footer-link {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 500;
}

.footer-link:hover {
	color: var(--accent-2);
	text-decoration: underline;
}

/* Responsive для Privacy Policy */
@media (max-width: 768px) {
	.privacy-policy-content {
		padding: 32px 24px;
	}

	.policy-section h2 {
		font-size: 20px;
	}
}

@media (max-width: 640px) {
	.privacy-policy-section {
		padding: 80px 0 60px;
	}

	.privacy-policy-content {
		padding: 24px 16px;
	}

	.policy-intro {
		padding: 16px;
	}

	.policy-section h2 {
		font-size: 18px;
	}

	.policy-section p,
	.policy-list li {
		font-size: 14px;
	}

	.hero-phone-block {
		justify-content: center;
	}
}
