@font-face {
	font-family: "Inter";
	font-style: normal;
	font-display: swap;
	src: local("Inter Variable"), local("InterVariable"),
		url("../fonts/inter/regular-var.woff2") format("woff2-variations");
}
@font-face {
	font-family: "Inter";
	font-style: italic;
	font-display: swap;
	src: local("Inter Variable Italic"), local("InterVariableItalic"),
		url("../fonts/inter/regular-var.woff2") format("woff2-variations");
}
@font-feature-values "Inter", "Inter Variable" {
	@character-variant {
		legible-lower-l: 5;
		legible-upper-i: 8;
	}
}
@keyframes fadeInDown {
	0% { opacity: 0; transform: translateY(-20px); }
	100% { opacity: 1; transform: translateY(0); }
}
html {
	color-scheme: light dark;
	font-family: "Inter Variable", "Inter", system-ui, sans-serif;
	font-variant-alternates: character-variant(legible-lower-l, legible-upper-i);
	line-height: 1.5;
}
body {
	margin: 0;
	background: light-dark(#e9fbed, #222);
	color: light-dark(#333, #e5e5e5);
}
header, footer {
	background: #1f372a;
	background-image: linear-gradient(to bottom right, #274233, #18221a);
	color: #fff;
	padding: 3rem 1rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
footer a {
	color: inherit;
}
h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	animation: fadeInDown 1s ease-out;
}
h2 {
	margin-top: 3rem;
	font-size: 2rem;
	color: light-dark(#1eaf57, #76a240);
}
.container {
	max-width: 960px;
	margin: auto;
	padding: 2rem 1rem;
}
.cta-btn {
	background: #395e3c;
	color: #fff;
	padding: 1rem 2rem;
	border: none;
	border-radius: 10px;
	font-size: 1.2rem;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,.2);
	transition: background-color 200ms ease-out;
}
.cta-btn:hover,
.cta-btn:focus {
	background-color: #29442b;
}
.features, .steps {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
	background: light-dark(#fff, #333);
	border-radius: 15px;
	padding: 1.25rem;
	box-shadow: 0 8px 20px rgba(0,0,0,.1);
	transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}
.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.card > :first-child {
	margin-top: 0;
}
.card > :last-child {
	margin-bottom: 0;
}
.card > h3 {
	margin: 0;
}
form > div:not(:first-child) {
	margin-top: .5em;
}
form input, form textarea {
	width: 100%;
	padding: .75rem;
	margin: .5rem 0;
	border: 1px solid light-dark(#ccc, #666);
	border-radius: 8px;
	font-size: 1rem;
	background: light-dark(#fff, #151515);
	color: light-dark(#000, #e5e5e5);
}
form button {
	background: #395e3c;
	color: #fff;
	padding: .7rem 1.5rem;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 300ms ease-out;
}
form button:hover,
form button:focus {
	background-color: #29442b;
}
textarea {
	min-height: 7em;
	resize: vertical;
}
.footer-links {
	font-size: .9rem;
	margin-top: 1rem;
}
.subtitle {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 2em auto;
}
ol:not([class]) {
	padding: 1.5rem;
	background: light-dark(#fff, #333);
	border-radius: 15px;
}
ol:not([class]) > li::marker {
	color: light-dark(#1e40af, #28aadd);
	font-weight: bold;
}
ol:not([class]) > li {
	margin-left: 1em;
}
ol:not([class]) > li:not(:first-child) {
	margin-top: .5em;
}
.price {
	font-weight: bold;
}
.pricing {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 1em;
}
.pricing > * {
	display: flex;
	flex-direction: column;
	gap: 1em;
	flex-grow: 1;
	width: 220px;
	max-width: 100%;
}
.pricing > .card > * {
	width: 100%;
}
.pricing > .card > .price {
	margin-top: auto;
}
.ajax-form-result {
	display: none;
	background: #fbfbfb;
	color: #000;
	border: .1em solid #999;
	padding-block: .5em;
	padding-inline: 1em;
}
.ajax-form-result[data-state="positive"] {
	display: block;
	background-color: #f4f9ee;
	border-color: #99bf7f;
}
.ajax-form-result[data-state="negative"] {
	display: block;
	background-color: #f9f3ee;
	border-color: #bf857f;
}
.ajax-form-result:not(:first-child) {
	margin-block-start: 1em;
}
.card-icon {
	font-size: 2em;
	margin-bottom: .25em;
}
