/* PABLON LTD – Premium Dark + Art Deco + Futurism
   Wide container, card grid, gold accents
*/

:root {
	--color-bg: #0c0f14;
	--color-bg-card: #141820;
	--color-bg-elevated: #1a1f2a;
	--color-gold: #d4a853;
	--color-gold-light: #e8c97a;
	--color-gold-dark: #b8923f;
	--color-text: #e8e6e3;
	--color-text-muted: #9ca3af;
	--color-border: rgba(212, 168, 83, 0.2);
	--color-border-light: rgba(212, 168, 83, 0.4);
	--font-main: 'Segoe UI', system-ui, sans-serif;
	--font-display: Georgia, 'Times New Roman', serif;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	--shadow-gold: 0 0 30px rgba(212, 168, 83, 0.15);
	--radius: 4px;
	--radius-lg: 8px;
	--header-h: 80px;
	--section-gap: 100px;
	--container-max: 1600px;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-main);
	font-size: 17px;
	line-height: 1.7;
	color: var(--color-text);
	background: var(--color-bg);
	background-image: 
		repeating-linear-gradient(
			45deg,
			transparent,
			transparent 60px,
			rgba(212, 168, 83, 0.015) 60px,
			rgba(212, 168, 83, 0.015) 61px
		),
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 60px,
			rgba(212, 168, 83, 0.015) 60px,
			rgba(212, 168, 83, 0.015) 61px
		);
}

body.menu-open {
	overflow: hidden;
}

a {
	color: var(--color-gold);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--color-gold-light);
}


/* ---- Container ---- */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
}


/* ---- Header: hide on scroll down, show on scroll up ---- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	background: rgba(12, 15, 20, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--color-border);
	z-index: 1000;
	transition: transform 0.3s ease;
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.header-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 40px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-gold);
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.logo:hover {
	color: var(--color-gold-light);
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
}

.main-nav a {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 8px 0;
	position: relative;
}

.main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--color-gold);
	transition: width 0.3s ease;
}

.main-nav a:hover {
	color: var(--color-gold);
}

.main-nav a:hover::after {
	width: 100%;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.burger span {
	width: 28px;
	height: 2px;
	background: var(--color-gold);
	transition: transform 0.2s, opacity 0.2s;
}

.burger.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
	opacity: 0;
}

.burger.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


/* ---- Hero: huge title, gradient overlay, geometric accents ---- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: calc(var(--header-h) + 60px) 0 80px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, 
		rgba(12, 15, 20, 0.7) 0%, 
		rgba(12, 15, 20, 0.85) 50%,
		var(--color-bg) 100%
	);
	z-index: 1;
}

/* Geometric decoration */
.hero::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 5%;
	width: 400px;
	height: 400px;
	border: 1px solid var(--color-border);
	transform: translateY(-50%) rotate(45deg);
	z-index: 1;
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 8%;
	width: 300px;
	height: 300px;
	border: 1px solid var(--color-border-light);
	transform: translateY(-50%) rotate(45deg);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text {
	max-width: 700px;
}

.hero-text h1 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 24px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.hero-text h1 span {
	color: var(--color-gold);
}

.hero-lead {
	font-size: 1.15rem;
	color: var(--color-text-muted);
	margin: 0 0 40px;
	line-height: 1.7;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 36px;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
	color: var(--color-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(212, 168, 83, 0.3);
	color: var(--color-bg);
}

.btn-outline {
	background: transparent;
	color: var(--color-gold);
	border: 1px solid var(--color-gold);
	border-radius: var(--radius);
}

.btn-outline:hover {
	background: var(--color-gold);
	color: var(--color-bg);
}

/* Hero feature cards */
.hero-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-feature {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 24px 28px;
	transition: all 0.3s ease;
	cursor: default;
}

.hero-feature:hover {
	border-color: var(--color-gold);
	box-shadow: var(--shadow-gold);
	transform: translateX(-8px);
}

.hero-feature h3 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--color-gold);
	margin: 0 0 8px;
}

.hero-feature p {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.5;
}


/* ---- Section styling ---- */
.section {
	padding: var(--section-gap) 0;
	position: relative;
}

.section-dark {
	background: var(--color-bg-card);
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--color-text);
	margin: 0 0 16px;
	line-height: 1.2;
}

.section-title span {
	color: var(--color-gold);
}

.section-subtitle {
	font-size: 1.05rem;
	color: var(--color-text-muted);
	margin: 0 0 60px;
	max-width: 600px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header .section-subtitle {
	margin: 0 auto;
}

/* Gold line decoration */
.gold-line {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--color-gold), transparent);
	margin-bottom: 24px;
}

.section-header .gold-line {
	margin: 0 auto 24px;
}


/* ---- Content rows: alternating image/text ---- */
.content-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 80px;
}

.content-row:last-child {
	margin-bottom: 0;
}

.content-row.reverse {
	direction: rtl;
}

.content-row.reverse > * {
	direction: ltr;
}

.content-media {
	position: relative;
}

.content-media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

/* Decorative frame */
.content-media::before {
	content: '';
	position: absolute;
	top: -16px;
	left: -16px;
	right: 16px;
	bottom: 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	z-index: -1;
}

.content-text h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--color-text);
	margin: 0 0 20px;
	line-height: 1.25;
}

.content-text p {
	color: var(--color-text-muted);
	margin: 0 0 20px;
}

.content-text p:last-child {
	margin-bottom: 0;
}


/* ---- Features grid: cards ---- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.feature-card {
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--color-gold), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-card:hover {
	border-color: var(--color-border-light);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--color-text);
	margin: 0 0 16px;
}

.feature-card p {
	color: var(--color-text-muted);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.feature-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
	border-radius: var(--radius);
	margin-bottom: 24px;
	font-size: 1.5rem;
	color: var(--color-bg);
}


/* ---- Solutions: large cards ---- */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.solution-card {
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.3s ease;
}

.solution-card:hover {
	border-color: var(--color-gold);
	transform: translateY(-6px);
	box-shadow: var(--shadow-gold);
}

.solution-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.solution-card:hover img {
	transform: scale(1.05);
}

.solution-card-body {
	padding: 32px;
}

.solution-card h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--color-text);
	margin: 0 0 12px;
}

.solution-card p {
	color: var(--color-text-muted);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}


/* ---- About / Stats ---- */
.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid var(--color-border);
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}


/* ---- Contact ---- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	padding-right: 40px;
}

.contact-info h2 {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--color-text);
	margin: 0 0 24px;
}

.contact-info p {
	color: var(--color-text-muted);
	margin: 0 0 12px;
}

.contact-info a {
	color: var(--color-gold);
}

.contact-info a:hover {
	color: var(--color-gold-light);
	text-decoration: underline;
}

.contact-form-wrap {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 48px;
}

.contact-form label {
	display: block;
	font-size: 0.85rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 16px 20px;
	margin-bottom: 24px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-text);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--color-gold);
	box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.15);
}

.contact-form textarea {
	resize: vertical;
	min-height: 140px;
}


/* ---- Footer ---- */
.site-footer {
	background: var(--color-bg-card);
	border-top: 1px solid var(--color-border);
	padding: 80px 0 0;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid var(--color-border);
}

.footer-col h3 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--color-text);
	margin: 0 0 24px;
}

.footer-col p {
	color: var(--color-text-muted);
	font-size: 0.95rem;
	margin: 0 0 12px;
	line-height: 1.6;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col li {
	margin-bottom: 12px;
}

.footer-col a {
	color: var(--color-text-muted);
	font-size: 0.95rem;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--color-gold);
}

.footer-brand {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--color-gold);
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	display: block;
}

.footer-bottom {
	padding: 24px 0;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--color-text-muted);
}


/* ---- Cookie notice ---- */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--color-bg-card);
	border-top: 1px solid var(--color-border);
	padding: 20px 40px;
	z-index: 9999;
}

.cookie-notice[hidden] {
	display: none !important;
}

.cookie-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookie-inner p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--color-text-muted);
	flex: 1;
}

.cookie-inner a {
	color: var(--color-gold);
}

.cookie-accept {
	padding: 12px 28px;
	background: var(--color-gold);
	color: var(--color-bg);
	border: none;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background 0.2s ease;
}

.cookie-accept:hover {
	background: var(--color-gold-light);
}


/* ---- Policy & Thanks pages ---- */
.page-content {
	padding: calc(var(--header-h) + 60px) 0 var(--section-gap);
	min-height: 80vh;
}

.page-content .container {
	max-width: 900px;
}

.page-content h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.5rem);
	color: var(--color-text);
	margin: 0 0 32px;
}

.page-content h2 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--color-text);
	margin: 48px 0 20px;
}

.page-content p,
.page-content li {
	color: var(--color-text-muted);
	margin: 0 0 16px;
	line-height: 1.7;
}

.page-content ul {
	padding-left: 24px;
}

.page-content a {
	color: var(--color-gold);
}

.page-content a:hover {
	text-decoration: underline;
}

.thanks-page .thanks-box {
	text-align: center;
	padding: 80px 60px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	margin-top: 40px;
}

.thanks-page .thanks-box h1 {
	margin-bottom: 16px;
}

.thanks-page .thanks-box p {
	margin-bottom: 32px;
	color: var(--color-text-muted);
}


/* ---- Process steps ---- */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 20px;
}

.process-step {
	text-align: center;
	padding: 40px 24px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	position: relative;
	transition: border-color 0.3s ease;
}

.process-step:hover {
	border-color: var(--color-gold);
}

.step-number {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: 20px;
	opacity: 0.8;
}

.process-step h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--color-text);
	margin: 0 0 12px;
}

.process-step p {
	color: var(--color-text-muted);
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.6;
}


/* ---- Testimonials ---- */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.testimonial-card {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	margin: 0;
	position: relative;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 28px;
	font-family: var(--font-display);
	font-size: 4rem;
	color: var(--color-gold);
	opacity: 0.3;
	line-height: 1;
}

.testimonial-card:hover {
	border-color: var(--color-border-light);
	transform: translateY(-4px);
}

.testimonial-text {
	font-size: 1rem;
	color: var(--color-text);
	line-height: 1.7;
	margin: 0 0 24px;
	font-style: italic;
}

.testimonial-author {
	display: block;
}

.testimonial-author strong {
	display: block;
	color: var(--color-gold);
	font-size: 1rem;
	margin-bottom: 4px;
}

.testimonial-author span {
	font-size: 0.9rem;
	color: var(--color-text-muted);
}


/* ---- FAQ ---- */
.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
	border-top: 1px solid var(--color-border);
}

.faq-trigger {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--color-text);
	transition: color 0.2s ease;
}

.faq-trigger:hover {
	color: var(--color-gold);
}

.faq-icon {
	font-size: 1.5rem;
	color: var(--color-gold);
	transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
	max-height: 300px;
	padding-bottom: 24px;
}

.faq-answer p {
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.7;
}


/* ---- Animations ---- */
.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.scale-in {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Stagger delays */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; }


/* ---- Mobile ---- */
@media (max-width: 1200px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.hero::before,
	.hero::after {
		display: none;
	}
	
	.solutions-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.process-steps {
		grid-template-columns: 1fr 1fr;
	}
	
	.testimonials-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.content-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.content-row.reverse {
		direction: ltr;
	}
	
	.content-media::before {
		display: none;
	}
	
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.contact-info {
		padding-right: 0;
	}
	
	.stats-row {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	:root {
		--header-h: 70px;
		--section-gap: 70px;
	}
	
	.burger {
		display: flex;
	}
	
	.main-nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: rgba(12, 15, 20, 0.98);
		border-bottom: 1px solid var(--color-border);
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	
	.main-nav.is-open {
		max-height: 400px;
	}
	
	.main-nav ul {
		flex-direction: column;
		gap: 0;
		padding: 16px 40px;
	}
	
	.main-nav li {
		border-bottom: 1px solid var(--color-border);
	}
	
	.main-nav li:last-child {
		border-bottom: none;
	}
	
	.main-nav a {
		display: block;
		padding: 16px 0;
	}
	
	.main-nav a::after {
		display: none;
	}
	
	.solutions-grid {
		grid-template-columns: 1fr;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.process-steps {
		grid-template-columns: 1fr;
	}
	
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.hero-features {
		display: none;
	}
}

@media (max-width: 480px) {
	.header-inner {
		padding: 0 20px;
	}
	
	.hero-content {
		padding: 0 20px;
	}
	
	.contact-form-wrap {
		padding: 32px 24px;
	}
	
	.cookie-inner {
		flex-direction: column;
		text-align: center;
	}
	
	.stats-row {
		grid-template-columns: 1fr;
	}
}
