:root {
	--novea-bg: #f8f8f5;
	--novea-surface: #ffffff;
	--novea-text: #1d1f1c;
	--novea-muted: #5f655b;
	--novea-primary: #6c8359;
	--novea-primary-strong: #587043;
	--novea-accent: #dce4d5;
	--novea-border: #e7ebe3;
	--novea-shadow: 0 18px 50px rgba(29, 31, 28, 0.08);
	--novea-radius: 8px;
	--novea-shell: 1240px;
	--novea-gap: clamp(1.25rem, 2vw, 2rem);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--novea-bg);
	color: var(--novea-text);
	font-family: Inter, system-ui, sans-serif;
	line-height: 1.6;
}

h1,
h2,
h3,
h4 {
	font-family: Manrope, Inter, system-ui, sans-serif;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 0 0.75rem;
}

p,
ul,
ol {
	margin: 0 0 1rem;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(108, 131, 89, 0.28);
	outline-offset: 3px;
}

.novea-shell {
	width: min(calc(100% - 2rem), var(--novea-shell));
	margin: 0 auto;
}

.novea-section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.novea-section.is-soft {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(220, 228, 213, 0.35));
}

.novea-section.is-lined {
	border-top: 1px solid var(--novea-border);
	border-bottom: 1px solid var(--novea-border);
}

.novea-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.85rem;
	border: 1px solid var(--novea-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	color: var(--novea-primary-strong);
	font-size: 0.85rem;
	font-weight: 600;
}

.novea-section-header {
	max-width: 760px;
	margin-bottom: 2rem;
}

.novea-section-header h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.novea-section-header p,
.novea-section-copy,
.novea-copy-grid p {
	color: var(--novea-muted);
}

.novea-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.novea-button.is-primary {
	background: var(--novea-primary);
	color: #fff;
}

.novea-button.is-primary:hover {
	background: var(--novea-primary-strong);
}

.novea-button.is-secondary {
	background: transparent;
	border-color: var(--novea-border);
	color: var(--novea-text);
}

.novea-button.is-secondary:hover {
	background: rgba(255, 255, 255, 0.9);
}

.novea-list-panel,
.novea-feature-grid,
.novea-pricing-grid,
.novea-blog-bridge__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--novea-gap);
}

.novea-list-card,
.novea-feature-card,
.novea-pricing-card,
.novea-blog-card,
.novea-final-cta__panel {
	background: var(--novea-surface);
	border: 1px solid var(--novea-border);
	border-radius: var(--novea-radius);
	box-shadow: var(--novea-shadow);
}

.novea-list-card,
.novea-feature-card,
.novea-blog-card,
.novea-pricing-card {
	padding: 1.5rem;
}

.novea-pricing-card.is-featured {
	border-color: rgba(108, 131, 89, 0.45);
	background: linear-gradient(180deg, #ffffff, #f4f7f0);
}

.novea-pricing-card__price {
	font-size: 2rem;
	font-weight: 700;
}

.novea-copy-grid,
.novea-two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--novea-gap);
}

.novea-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--novea-gap);
	padding: 0;
	list-style: none;
	counter-reset: steps;
}

.novea-steps li {
	counter-increment: steps;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--novea-border);
	border-radius: var(--novea-radius);
	box-shadow: var(--novea-shadow);
}

.novea-steps li::before {
	content: counter(steps, decimal-leading-zero);
	display: block;
	margin-bottom: 0.8rem;
	color: var(--novea-primary);
	font-family: Manrope, Inter, system-ui, sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
}

.novea-faq {
	display: grid;
	gap: 1rem;
}

.novea-faq__item {
	padding: 1.25rem 1.5rem;
	background: #fff;
	border: 1px solid var(--novea-border);
	border-radius: var(--novea-radius);
}

.novea-faq__item summary {
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}

.novea-faq__item summary::-webkit-details-marker {
	display: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1024px) {
	.novea-list-panel,
	.novea-feature-grid,
	.novea-pricing-grid,
	.novea-blog-bridge__grid,
	.novea-steps,
	.novea-copy-grid,
	.novea-two-column {
		grid-template-columns: 1fr;
	}
}

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

	.novea-button {
		transition: none;
	}
}
