/* ZAS FURNISHINGS LTD - main stylesheet
   Urban + Neobrutalism + Geometric | dark theme, high contrast
   sharp edges, bold typography, lime accent
*/

:root {
	--color-bg: #0a0a0a;
	--color-bg-alt: #111111;
	--color-surface: #161616;
	--color-surface-light: #1e1e1e;
	--color-primary: #c8ff00;
	--color-primary-dim: #a3cc00;
	--color-accent: #ffffff;
	--color-text: #f5f5f5;
	--color-text-muted: #888888;
	--color-border: #333333;
	--color-border-strong: #444444;
	--font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
	--font-display: 'Segoe UI', system-ui, sans-serif;
	--shadow-brutal: 4px 4px 0 var(--color-primary);
	--shadow-brutal-sm: 3px 3px 0 var(--color-primary);
	--space-xs: 16px;
	--space-sm: 24px;
	--space-md: 40px;
	--space-lg: 64px;
	--space-xl: 100px;
	--radius: 0;
	--radius-sm: 4px;
	--header-h: 72px;
	--container: 1280px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	font-size: 17px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	overflow-x: hidden;
}

/* Geometric lines pattern */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: 
		linear-gradient(90deg, var(--color-border) 1px, transparent 1px),
		linear-gradient(0deg, var(--color-border) 1px, transparent 1px);
	background-size: 80px 80px;
	opacity: 0.15;
	pointer-events: none;
	z-index: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.15s ease;
}

a:hover {
	color: var(--color-accent);
}

/* Selection */
::selection {
	background: var(--color-primary);
	color: var(--color-bg);
}

/* ----- Header: sticky, dark, minimal ----- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	background: rgba(10, 10, 10, 0.95);
	border-bottom: 2px solid var(--color-border);
	z-index: 1000;
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-sm);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-link {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--color-accent);
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.logo-link:hover {
	color: var(--color-primary);
}

.nav-desktop {
	display: none;
}

@media (min-width: 900px) {
	.nav-desktop {
		display: flex;
		align-items: center;
		gap: 0;
	}
}

.nav-desktop a {
	padding: 12px 18px;
	color: var(--color-text-muted);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-desktop a:hover {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

/* Burger */
.burger-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 2px solid var(--color-border);
	cursor: pointer;
	padding: 10px;
}

.burger-btn span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-accent);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-btn.is-open {
	border-color: var(--color-primary);
}

.burger-btn.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
	opacity: 0;
}

.burger-btn.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
	.burger-btn {
		display: none;
	}
}

/* Mobile menu */
.nav-mobile {
	position: fixed;
	top: var(--header-h);
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--color-bg);
	z-index: 999;
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	gap: 0;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	overflow-y: auto;
	border-left: 2px solid var(--color-border);
}

.nav-mobile.is-open {
	transform: translateX(0);
}

@media (min-width: 900px) {
	.nav-mobile {
		display: none;
	}
}

.nav-mobile a {
	display: block;
	padding: 18px 0;
	font-size: 1.2rem;
	color: var(--color-text);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border-bottom: 1px solid var(--color-border);
	transition: color 0.15s ease, padding-left 0.15s ease;
}

.nav-mobile a:hover {
	color: var(--color-primary);
	padding-left: 12px;
}

/* ----- Main ----- */
.main-content {
	min-height: 100vh;
	padding-top: var(--header-h);
	position: relative;
	z-index: 1;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-sm);
}

.section {
	padding: var(--space-xl) 0;
}

/* Section title: huge, bold */
.section-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 900;
	color: var(--color-accent);
	margin-bottom: var(--space-xs);
	letter-spacing: -0.03em;
	line-height: 1.05;
	text-transform: uppercase;
}

.section-title span {
	color: var(--color-primary);
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	max-width: 560px;
	margin-bottom: var(--space-md);
	line-height: 1.6;
}

/* ----- Buttons: brutal style ----- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.15s ease;
	font-family: inherit;
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-bg);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-brutal-sm);
}

.btn-primary:hover {
	background: var(--color-bg);
	color: var(--color-primary);
	box-shadow: none;
	transform: translate(3px, 3px);
}

.btn-outline {
	background: transparent;
	color: var(--color-accent);
	border-color: var(--color-accent);
}

.btn-outline:hover {
	background: var(--color-accent);
	color: var(--color-bg);
}

/* ----- Hero: split layout, massive text ----- */
.hero {
	position: relative;
	min-height: calc(100vh - var(--header-h));
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--color-bg);
}

.hero-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--space-lg) var(--space-sm);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	align-items: center;
}

@media (min-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-xl);
	}
}

.hero-text {
	order: 2;
}

@media (min-width: 900px) {
	.hero-text {
		order: 1;
	}
}

.hero-badge {
	display: inline-block;
	padding: 8px 16px;
	background: var(--color-surface);
	color: var(--color-primary);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: var(--space-sm);
	border: 1px solid var(--color-border);
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 900;
	color: var(--color-accent);
	line-height: 1.0;
	margin-bottom: var(--space-sm);
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.hero h1 span {
	color: var(--color-primary);
	display: block;
}

.hero p {
	font-size: 1.15rem;
	color: var(--color-text-muted);
	max-width: 480px;
	margin-bottom: var(--space-md);
	line-height: 1.7;
}

.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
}

.hero-image {
	order: 1;
	position: relative;
}

@media (min-width: 900px) {
	.hero-image {
		order: 2;
	}
}

.hero-image-wrap {
	position: relative;
	border: 3px solid var(--color-border);
	overflow: hidden;
}

.hero-image-wrap::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 12px;
	right: -12px;
	bottom: -12px;
	border: 3px solid var(--color-primary);
	z-index: -1;
}

.hero-image-wrap img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
	filter: grayscale(30%);
	transition: filter 0.3s ease;
}

.hero-image-wrap:hover img {
	filter: grayscale(0%);
}

/* Hero stats strip */
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: var(--space-lg);
	background: var(--color-border);
	border: 2px solid var(--color-border);
}

.hero-stat {
	background: var(--color-surface);
	padding: var(--space-sm);
	text-align: center;
}

.hero-stat-num {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 900;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: 4px;
}

.hero-stat-label {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ----- Projects: horizontal scroll cards ----- */
.projects-section {
	padding: var(--space-xl) 0;
	background: var(--color-bg-alt);
	border-top: 2px solid var(--color-border);
	border-bottom: 2px solid var(--color-border);
}

.projects-header {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-sm);
	margin-bottom: var(--space-md);
}

.slider-wrap {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-sm);
}

.slider-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: var(--space-sm);
	padding-bottom: var(--space-sm);
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
	display: none;
}

.slider-slide {
	flex: 0 0 85%;
	scroll-snap-align: start;
	border: 2px solid var(--color-border);
	background: var(--color-surface);
	transition: border-color 0.2s ease;
}

.slider-slide:hover {
	border-color: var(--color-primary);
}

@media (min-width: 768px) {
	.slider-slide {
		flex: 0 0 45%;
	}
}

@media (min-width: 1100px) {
	.slider-slide {
		flex: 0 0 30%;
	}
}

.slider-slide img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	filter: grayscale(40%);
	transition: filter 0.2s ease;
}

.slider-slide:hover img {
	filter: grayscale(0%);
}

.slider-caption {
	padding: var(--space-sm);
	border-top: 2px solid var(--color-border);
}

.slider-caption h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 4px;
	text-transform: uppercase;
}

.slider-caption p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: var(--space-md);
}

.slider-dot {
	width: 12px;
	height: 12px;
	background: var(--color-border);
	border: none;
	cursor: pointer;
	transition: background 0.15s ease;
}

.slider-dot.is-active {
	background: var(--color-primary);
}

/* ----- About: asymmetric 60/40 ----- */
.about-section {
	padding: var(--space-xl) 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	align-items: start;
}

@media (min-width: 900px) {
	.about-grid {
		grid-template-columns: 1.4fr 1fr;
		gap: var(--space-xl);
	}
}

.about-text p {
	color: var(--color-text-muted);
	margin-bottom: var(--space-sm);
	font-size: 1.05rem;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-image {
	border: 3px solid var(--color-border);
	position: relative;
}

.about-image::after {
	content: '';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 60%;
	height: 60%;
	border: 3px solid var(--color-primary);
	z-index: -1;
}

.about-image img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

/* ----- Features: 4-col grid, brutal cards ----- */
.features-section {
	padding: var(--space-xl) 0;
	background: var(--color-surface);
	border-top: 2px solid var(--color-border);
	border-bottom: 2px solid var(--color-border);
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
	background: var(--color-border);
	border: 2px solid var(--color-border);
}

@media (min-width: 600px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.features-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.feature-card {
	background: var(--color-bg);
	padding: var(--space-md);
	transition: background 0.2s ease;
}

.feature-card:hover {
	background: var(--color-surface-light);
}

.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.feature-card p {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.55;
}

/* ----- Process / How we work ----- */
.process-section {
	background: var(--color-bg-alt);
	border-top: 2px solid var(--color-border);
	border-bottom: 2px solid var(--color-border);
}

.process-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
	background: var(--color-border);
	border: 2px solid var(--color-border);
}

@media (min-width: 600px) {
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.process-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.process-step {
	background: var(--color-bg);
	padding: var(--space-md);
	transition: background 0.2s ease;
}

.process-step:hover {
	background: var(--color-surface);
}

.process-num {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: 16px;
}

.process-step h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.process-step p {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.55;
}

/* ----- Services: list with borders ----- */
.services-section {
	padding: var(--space-xl) 0;
}

.services-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 700px) {
	.services-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.service-item {
	padding: var(--space-md);
	border: 1px solid var(--color-border);
	margin: -1px 0 0 -1px;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.service-item:hover {
	background: var(--color-surface);
	border-color: var(--color-primary);
	z-index: 1;
	position: relative;
}

.service-item h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 8px;
	text-transform: uppercase;
}

.service-item p {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	line-height: 1.55;
}

/* ----- Industries ----- */
.industries-section {
	background: var(--color-surface);
	border-top: 2px solid var(--color-border);
	border-bottom: 2px solid var(--color-border);
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}

@media (min-width: 600px) {
	.industries-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.industry-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: var(--space-sm);
	border: 1px solid var(--color-border);
	margin: -1px 0 0 -1px;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.industry-item:hover {
	background: var(--color-bg);
	border-color: var(--color-primary);
	z-index: 1;
	position: relative;
}

.industry-icon {
	font-size: 1.2rem;
	color: var(--color-primary);
}

.industry-name {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* ----- Testimonials ----- */
.testimonials-section {
	padding: var(--space-xl) 0;
	background: var(--color-bg-alt);
	border-top: 2px solid var(--color-border);
	border-bottom: 2px solid var(--color-border);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-sm);
}

@media (min-width: 700px) {
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.testimonial-card {
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	padding: var(--space-md);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 16px;
	left: 20px;
	font-size: 4rem;
	font-weight: 900;
	color: var(--color-primary);
	opacity: 0.3;
	line-height: 1;
}

.testimonial-card p {
	font-size: 1.05rem;
	color: var(--color-text);
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

/* ----- FAQ: accordion ----- */
.faq-section {
	padding: var(--space-xl) 0;
}

.faq-list {
	max-width: 800px;
}

.accordion-item {
	border: 2px solid var(--color-border);
	margin-bottom: -2px;
	transition: border-color 0.2s ease;
}

.accordion-item:hover,
.accordion-item.is-open {
	border-color: var(--color-primary);
	z-index: 1;
	position: relative;
}

.accordion-trigger {
	width: 100%;
	padding: var(--space-sm);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--color-surface);
	border: none;
	color: var(--color-accent);
	font-size: 1rem;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s ease;
}

.accordion-trigger:hover {
	background: var(--color-surface-light);
}

.accordion-trigger::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color-primary);
	transition: transform 0.2s ease;
}

.accordion-item.is-open .accordion-trigger::after {
	content: '−';
}

.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.accordion-panel-inner {
	padding: 0 var(--space-sm) var(--space-sm);
	color: var(--color-text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	background: var(--color-surface);
}

/* ----- CTA ----- */
.cta-block {
	background: var(--color-primary);
	color: var(--color-bg);
	text-align: center;
	padding: var(--space-xl) var(--space-sm);
	margin: 0 var(--space-sm);
	max-width: calc(var(--container) - var(--space-md));
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--space-xl);
	border: 3px solid var(--color-bg);
	box-shadow: 8px 8px 0 var(--color-bg);
}

.cta-block h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.cta-block p {
	margin-bottom: var(--space-sm);
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

.cta-block .btn {
	background: var(--color-bg);
	color: var(--color-primary);
	border-color: var(--color-bg);
	box-shadow: none;
}

.cta-block .btn:hover {
	background: transparent;
	color: var(--color-bg);
	border-color: var(--color-bg);
}

/* ----- Contact form ----- */
.form-section {
	padding: var(--space-xl) 0;
	background: var(--color-surface);
	border-top: 2px solid var(--color-border);
}

.form-grid {
	max-width: 600px;
}

.form-group {
	margin-bottom: var(--space-sm);
}

.form-group label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--color-text);
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 1rem;
	font-family: inherit;
	border: 2px solid var(--color-border);
	background: var(--color-bg);
	color: var(--color-text);
	transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--color-text-muted);
}

.form-group textarea {
	min-height: 140px;
	resize: vertical;
}

/* ----- Footer ----- */
.site-footer {
	background: var(--color-bg);
	color: var(--color-text);
	padding: var(--space-xl) 0 var(--space-md);
	border-top: 2px solid var(--color-border);
}

.footer-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-sm);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	margin-bottom: var(--space-lg);
}

@media (min-width: 700px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
		gap: var(--space-xl);
	}
}

.footer-about h3,
.footer-contact h3,
.footer-policy h3 {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: var(--space-sm);
}

.footer-about p,
.footer-contact p {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--color-text-muted);
}

.footer-contact a {
	color: var(--color-text);
}

.footer-contact a:hover {
	color: var(--color-primary);
}

.footer-policy ul {
	list-style: none;
}

.footer-policy a {
	color: var(--color-text-muted);
	font-size: 0.95rem;
	display: block;
	padding: 6px 0;
	transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-policy a:hover {
	color: var(--color-primary);
	padding-left: 8px;
}

.footer-bottom {
	border-top: 1px solid var(--color-border);
	padding-top: var(--space-sm);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-sm);
	font-size: 0.85rem;
	color: var(--color-text-muted);
}

.footer-reg {
	font-size: 0.8rem;
}

/* ----- Policy pages ----- */
.page-header {
	background: var(--color-surface);
	color: var(--color-accent);
	padding: 120px var(--space-sm) var(--space-lg);
	border-bottom: 2px solid var(--color-border);
}

.page-header h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.page-header p {
	color: var(--color-text-muted);
	font-size: 0.95rem;
}

.policy-content,
.thanks-content {
	max-width: 800px;
	margin: 0 auto;
	padding: var(--space-lg) var(--space-sm) var(--space-xl);
}

.policy-content h2 {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-top: var(--space-md);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.policy-content p,
.policy-content li {
	margin-bottom: 12px;
	color: var(--color-text-muted);
	line-height: 1.65;
}

.policy-content ul {
	margin-left: 24px;
	margin-bottom: 16px;
}

.policy-content a {
	text-decoration: underline;
}

.thanks-content {
	text-align: center;
	padding-top: var(--space-xl);
}

.thanks-content h1 {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--color-primary);
	text-transform: uppercase;
	margin-bottom: var(--space-sm);
}

.thanks-content p {
	margin-bottom: var(--space-sm);
	color: var(--color-text-muted);
}

/* ----- Cookie banner ----- */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--color-surface);
	border-top: 2px solid var(--color-primary);
	padding: var(--space-sm);
	z-index: 9999;
	display: none;
}

.cookie-banner.is-visible {
	display: block;
	animation: slideUp 0.25s ease;
}

@keyframes slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.cookie-inner {
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
}

.cookie-banner p {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	flex: 1 1 280px;
}

.cookie-banner a {
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.cookie-actions .btn {
	padding: 10px 20px;
	font-size: 0.85rem;
}

/* ----- Utility ----- */
.text-center {
	text-align: center;
}

.text-center .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
