/* ==========================================================================
   DocForge.NL — Marketing Theme
   ========================================================================== */

:root {
	--color-bg: #f6f8fc;
	--color-bg-elevated: #ffffff;
	--color-bg-subtle: #eef2f8;
	--color-border: #dbe3ef;
	--color-text: #0f172a;
	--color-text-muted: #64748b;
	--color-navy: #1a1d23;
	--color-navy-deep: #111827;
	--color-accent: #0057ff;
	--color-accent-hover: #0047d4;
	--color-accent-dark: #003db8;
	--color-accent-soft: rgba(0, 87, 255, 0.1);
	--font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05), 0 4px 12px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
	--shadow-glow: 0 0 0 1px rgba(0, 87, 255, 0.08), 0 20px 48px rgba(0, 87, 255, 0.14);
	--container: 1200px;
	--header-height: 80px;
	--transition: 0.25s ease;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-accent-hover);
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow {
	max-width: 760px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn--primary {
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 87, 255, 0.22);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(0, 87, 255, 0.28);
	color: #fff;
}

.btn--ghost {
	background: #fff;
	color: var(--color-text);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
	border-color: rgba(0, 87, 255, 0.35);
	color: var(--color-accent);
}

.btn--light {
	background: #fff;
	color: var(--color-navy);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--light:hover {
	transform: translateY(-2px);
	color: var(--color-accent);
}

.btn--outline-light {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.btn--lg {
	padding: 16px 28px;
	font-size: 16px;
}

.btn--sm {
	padding: 8px 16px;
	font-size: 14px;
}

.btn--full {
	width: 100%;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: rgba(26, 29, 35, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
	background: rgba(17, 24, 39, 0.98);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 20px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	flex-shrink: 0;
}

.site-brand:hover {
	color: #fff;
	opacity: 0.92;
}

.site-brand__image,
.site-brand .custom-logo-link img {
	width: auto;
	height: 36px;
	max-height: 36px;
	max-width: min(200px, 45vw);
	object-fit: contain;
}

.site-brand--footer .site-brand__image,
.site-brand--footer .custom-logo-link img {
	height: 40px;
	max-height: 40px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.site-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	padding: 10px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: var(--transition);
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav__list a {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
}

.primary-nav__list a:hover {
	color: #fff;
}

.primary-nav__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-main {
	padding-top: var(--header-height);
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, var(--color-navy-deep) 0%, var(--color-navy) 45%, #1e3a5f 100%);
	color: #fff;
	padding: 72px 0 88px;
}

.hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
}

.hero__glow--1 {
	width: 420px;
	height: 420px;
	background: var(--color-accent);
	top: -80px;
	right: 10%;
}

.hero__glow--2 {
	width: 300px;
	height: 300px;
	background: #6366f1;
	bottom: -60px;
	left: 5%;
	opacity: 0.25;
}

.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 6px 14px;
	margin: 0 0 20px;
}

.hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.25);
	animation: pulse 2s ease infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}

.hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
}

.hero__subtitle {
	font-size: 1.125rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.68);
	margin: 0 0 28px;
	max-width: 540px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}

.hero__trust span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hero__visual {
	position: relative;
	min-height: 340px;
}

.hero-mockup {
	background: rgba(255, 255, 255, 0.96);
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
	overflow: hidden;
	color: var(--color-text);
}

.hero-mockup__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 16px;
	background: #f1f5f9;
	border-bottom: 1px solid var(--color-border);
}

.hero-mockup__bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #cbd5e1;
}

.hero-mockup__bar span:first-child { background: #f87171; }
.hero-mockup__bar span:nth-child(2) { background: #fbbf24; }
.hero-mockup__bar span:nth-child(3) { background: #34d399; }

.hero-mockup__url {
	margin-left: auto;
	font-size: 11px;
	color: var(--color-text-muted);
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	padding: 4px 10px;
}

.hero-mockup__body {
	padding: 24px;
}

.hero-mockup__label {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-accent);
	margin: 0 0 16px;
}

.hero-mockup__line {
	height: 10px;
	background: linear-gradient(90deg, #e2e8f0, #f1f5f9);
	border-radius: 6px;
	margin-bottom: 10px;
}

.hero-mockup__line--75 { width: 75%; }
.hero-mockup__line--100 { width: 100%; }
.hero-mockup__line--90 { width: 90%; }
.hero-mockup__line--60 { width: 60%; }

.hero-mockup__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--color-accent);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
}

.hero-float {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-text);
	font-size: 13px;
	font-weight: 700;
	padding: 10px 14px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	animation: float 4s ease-in-out infinite;
}

.hero-float svg {
	color: var(--color-accent);
}

.hero-float--1 {
	top: 12%;
	right: -8%;
	animation-delay: 0s;
}

.hero-float--2 {
	bottom: 8%;
	left: -6%;
	animation-delay: 1.5s;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Steps */
.steps {
	padding: 56px 0;
	background: var(--color-bg);
}

.steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.step-card {
	text-align: center;
	padding: 28px 20px;
}

.step-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-accent-soft);
	color: var(--color-accent);
	font-weight: 800;
	font-size: 18px;
	margin-bottom: 16px;
}

.step-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.step-card__text {
	font-size: 14px;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.55;
}

/* Section head */
.section-head {
	margin-bottom: 40px;
}

.section-head--center {
	text-align: center;
}

.section-head__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin: 0 0 10px;
	letter-spacing: -0.02em;
}

.section-head__subtitle {
	font-size: 1.05rem;
	color: var(--color-text-muted);
	margin: 0;
	max-width: 560px;
}

.section-head--center .section-head__subtitle {
	margin-left: auto;
	margin-right: auto;
}

/* Features */
.features {
	padding: 80px 0;
	background: var(--color-bg-elevated);
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.feature-card__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: var(--color-accent-soft);
	margin-bottom: 16px;
	position: relative;
}

.feature-card__icon::after {
	content: '';
	position: absolute;
	inset: 10px;
	background: var(--color-accent);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.feature-card__icon--stars::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l2.4 7.4H22l-6 4.6 2.3 7-6.3-4.6L5.7 21l2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l2.4 7.4H22l-6 4.6 2.3 7-6.3-4.6L5.7 21l2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E");
}

.feature-card__icon--team::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 11c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3zM8 11c1.7 0 3-1.3 3-3S9.7 5 8 5 5 6.3 5 8s1.3 3 3 3zm0 2c-2.7 0-8 1.3-8 4v3h16v-3c0-2.7-5.3-4-8-4zm8 0c-.3 0-.7 0-1 .1 1.2.9 2 2 2 3.9v3h6v-3c0-2.7-5.3-4-7-4z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 11c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3zM8 11c1.7 0 3-1.3 3-3S9.7 5 8 5 5 6.3 5 8s1.3 3 3 3zm0 2c-2.7 0-8 1.3-8 4v3h16v-3c0-2.7-5.3-4-8-4zm8 0c-.3 0-.7 0-1 .1 1.2.9 2 2 2 3.9v3h6v-3c0-2.7-5.3-4-7-4z'/%3E%3C/svg%3E");
}

.feature-card__icon--history::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13 3a9 9 0 00-7.4 14.3l-1.4 1.4 1.4 1.4 1.4-1.4A9 9 0 1013 3zm-1 4v5l4 2.5-.8 1.2-4.7-3V7h2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13 3a9 9 0 00-7.4 14.3l-1.4 1.4 1.4 1.4 1.4-1.4A9 9 0 1013 3zm-1 4v5l4 2.5-.8 1.2-4.7-3V7h2z'/%3E%3C/svg%3E");
}

.feature-card__icon--export::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm-1 2l5 5h-5V4zM8 13h8v2H8v-2zm0 4h5v2H8v-2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm-1 2l5 5h-5V4zM8 13h8v2H8v-2zm0 4h5v2H8v-2z'/%3E%3C/svg%3E");
}

.feature-card__icon--brand::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3c-4 0-7 2-7 5s3 5 7 5 7-2 7-5-3-5-7-5zm0 12c-5 0-9 2.5-9 6v2h18v-2c0-3.5-4-6-9-6z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.5 2 2 4 2 7v10c0 3 4.5 5 10 5s10-2 10-5V7c0-3-4.5-5-10-5zm0 2c4.4 0 8 1.2 8 3s-3.6 3-8 3-8-1.2-8-3 3.6-3 8-3z'/%3E%3C/svg%3E");
}

.feature-card__icon--shield::after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L4 5v6c0 5.5 3.8 10.7 8 12 4.2-1.3 8-6.5 8-12V5l-8-3z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L4 5v6c0 5.5 3.8 10.7 8 12 4.2-1.3 8-6.5 8-12V5l-8-3z'/%3E%3C/svg%3E");
}

.feature-card__title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.feature-card__text {
	font-size: 14px;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.55;
}

/* Pricing */
.pricing {
	padding: 80px 0;
	background: var(--color-bg);
}

.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--color-bg-elevated);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
}

.price-card--featured {
	border-color: rgba(0, 87, 255, 0.35);
	box-shadow: var(--shadow-glow);
	transform: scale(1.02);
}

.price-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 999px;
}

.price-card__name {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.price-card__price {
	font-size: 2.25rem;
	font-weight: 800;
	margin: 0 0 20px;
	line-height: 1;
}

.price-card__price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-muted);
}

.price-card__list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	flex: 1;
}

.price-card__list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--color-text-muted);
}

.price-card__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: 700;
}

.pricing__note {
	text-align: center;
	font-size: 14px;
	color: var(--color-text-muted);
	margin: 32px 0 0;
}

/* FAQ */
.faq {
	padding: 80px 0;
	background: var(--color-bg-elevated);
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__chevron {
	flex-shrink: 0;
	color: var(--color-text-muted);
	transition: transform var(--transition);
}

.faq-item[open] .faq-item__chevron {
	transform: rotate(180deg);
}

.faq-item__answer {
	padding: 0 20px 18px;
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.6;
}

.faq-item__answer p {
	margin: 0;
}

/* CTA band */
.cta-band {
	padding: 72px 0;
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
	color: #fff;
	text-align: center;
}

.cta-band__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin: 0 0 12px;
}

.cta-band__text {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 28px;
}

/* Footer */
.site-footer {
	background: var(--color-navy-deep);
	color: rgba(255, 255, 255, 0.72);
	padding: 64px 0 32px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
	color: #fff;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.site-footer__tagline {
	font-weight: 700;
	color: #fff;
	margin: 12px 0 8px;
}

.site-footer__desc {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	max-width: 320px;
}

.site-footer h4 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 16px;
}

.footer-menu,
.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li,
.footer-contact li {
	margin-bottom: 10px;
	font-size: 14px;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__powered a {
	color: rgba(255, 255, 255, 0.9);
}

/* Inner pages */
.page-content {
	padding: 64px 0 80px;
}

.page-content--center {
	min-height: 50vh;
	display: flex;
	align-items: center;
}

.content-article__header {
	margin-bottom: 28px;
}

.content-article__meta {
	font-size: 14px;
	color: var(--color-text-muted);
	margin: 0 0 8px;
}

.content-article__title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.02em;
}

.content-article__body {
	font-size: 1.05rem;
	line-height: 1.75;
}

.content-article__body h2,
.content-article__body h3 {
	margin-top: 1.75em;
}

.error-block {
	text-align: center;
	padding: 40px 0;
}

.error-block__code {
	font-size: 4rem;
	font-weight: 800;
	color: var(--color-accent);
	margin: 0;
	line-height: 1;
}

.error-block__title {
	font-size: 1.5rem;
	margin: 12px 0;
}

.error-block__text {
	color: var(--color-text-muted);
	margin: 0 0 24px;
}

.error-block__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero__subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.hero__actions,
	.hero__trust {
		justify-content: center;
	}

	.hero__visual {
		max-width: 480px;
		margin: 0 auto;
	}

	.hero-float--1 { right: 0; }
	.hero-float--2 { left: 0; }

	.features__grid,
	.pricing__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.price-card--featured {
		transform: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 72px;
	}

	.nav-toggle {
		display: flex;
	}

	.primary-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--color-navy-deep);
		padding: 24px;
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
	}

	.primary-nav.is-open {
		transform: translateX(0);
	}

	.primary-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		margin-bottom: 20px;
	}

	.primary-nav__list li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.primary-nav__list a {
		display: block;
		padding: 14px 0;
		font-size: 16px;
	}

	.primary-nav__actions {
		flex-direction: column;
		width: 100%;
	}

	.primary-nav__actions .btn {
		width: 100%;
	}

	.steps__grid,
	.features__grid,
	.pricing__grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 48px 0 64px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.site-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}
