/* ── Modern CSS Reset ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	min-height: 100vh;
	line-height: 1.5;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

/* ── Reset elements ── */
ul,
ol {
	list-style: none;
}

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

img,
picture,
video,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

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

button {
	cursor: pointer;
	background: none;
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	font-size: inherit;
	font-weight: inherit;
}

p {
	overflow-wrap: break-word;
}

/* ── Variables ── */
:root {
    /* Фоны */
    --bg-default: #FFFFFF;
    --bg-surface: #F5F5F5;
    
    /* Текст */
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    
    /* Акцент (ваш фирменный цвет) */
    --accent: #2563EB;
    --accent-hover: #1D4ED8;
    
    /* Разделители */
    --border: rgba(0, 0, 0, 0.08);
    
    /* Отступы */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
}