:root {
	--neon-green: #0c8c46;
	--neon-green-dark: #077237;
	--neon-red: #e62f43;
	--neon-ink: #161922;
	--neon-text: #3d4341;
	--neon-muted: #5b6160;
	--neon-soft: #8d99ae;
	--neon-line: #edf2f4;
	--neon-paper: #ffffff;
	--neon-shadow: 0 8px 24px rgba(15, 40, 28, 0.06);
	--neon-radius: 12px;
	--neon-container: 1180px;
	--font-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 0;
	background: var(--neon-paper);
	color: var(--neon-soft);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.625;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: middle;
}

a {
	color: var(--neon-green);
	text-decoration: none;
}

a:hover {
	color: var(--neon-green-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	color: var(--neon-ink);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.2;
}

h1 { font-size: 42px; letter-spacing: -1.5px; }
h2 { font-size: 36px; letter-spacing: -1px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; font-weight: 600; }

p {
	margin: 0 0 1em;
}

ul,
ol {
	margin: 0 0 1em;
	padding: 0 0 0 1.2em;
}

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

address {
	font-style: normal;
}

.container,
.section_wrapper {
	width: 100%;
	max-width: var(--neon-container);
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 20px 40px;
	border: 2px solid var(--neon-red);
	border-radius: 6px;
	background: transparent;
	color: var(--neon-red);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	gap: 10px;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
button.button:hover {
	background: var(--neon-red);
	border-color: transparent;
	color: #fff;
}

.button i {
	font-size: 14px;
	line-height: 1;
}

.button_secondary {
	border-color: var(--neon-green);
	color: var(--neon-green);
}

.button_secondary:hover {
	background: var(--neon-green);
	border-color: var(--neon-green);
	color: #fff;
}

.button-ghost {
	display: inline-flex;
	align-items: center;
	padding: 20px 40px;
	border: 2px solid #fff;
	border-radius: 6px;
	color: #fff;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.button-ghost:hover {
	background: #fff;
	color: var(--neon-green);
}

.neon-form-status {
	margin: 0 0 20px;
	padding: 14px 18px;
	border-radius: 6px;
	font-weight: 600;
}

.neon-form-status.is-success {
	background: #eaf8ef;
	color: #3a8b5b;
}

.neon-form-status.is-error {
	background: #fae9e8;
	color: #962317;
}

@media (max-width: 959px) {
	body {
		font-size: 15px;
	}

	h1 { font-size: 34px; }
	h2 { font-size: 28px; }
	h3 { font-size: 22px; }
}

@media (max-width: 767px) {
	h1 { font-size: 28px; }
	h2 { font-size: 24px; }
}
