/*
Theme Name: FormShield Marketing
Theme URI: https://formshield.io
Author: qbits
Author URI: https://qbits.at
Description: Conversion-optimised marketing theme for the FormShield WordPress spam protection plugin.
Version: 1.0.0
License: Proprietary
Text Domain: formshield-marketing
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--ink:          #0d1117;
	--shield:       #1a3a5c;
	--accent:       #2e7de8;
	--highlight:    #5fa8ff;
	--paper:        #f7f8fc;
	--muted:        #8a96a8;
	--border:       #dde1ea;
	--border-form:  #767e8e; /* darkened for 3:1 non-text contrast on inputs */
	--white:        #ffffff;
	--success:      #16a34a;
	--error:        #dc2626;

	--radius-sm:  8px;
	--radius-md:  14px;
	--radius-lg:  22px;

	--shadow-sm:  0 2px 8px rgba(13,17,40,.06);
	--shadow-md:  0 8px 28px rgba(13,17,40,.10);
	--shadow-lg:  0 20px 60px rgba(13,17,40,.14);

	--max-width:  1120px;
	--section-py: 96px;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	background: var(--paper);
	color: var(--ink);
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */
.skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	z-index: 9999;
	background: var(--accent);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: top .15s;
}
.skip-link:focus {
	top: 0;
	outline: 3px solid var(--ink);
	outline-offset: 2px;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
	font-family: 'DM Serif Display', Georgia, serif;
	color: var(--ink);
	line-height: 1.18;
}

h1 { font-size: clamp(38px, 5.5vw, 64px); letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -1px; }
h3 { font-size: clamp(19px, 2.5vw, 24px); letter-spacing: -.4px; }

.eyebrow {
	display: inline-block;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 18px;
}

.lead {
	font-size: clamp(17px, 2vw, 20px);
	color: #444d5e;
	line-height: 1.7;
	max-width: 600px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 28px;
}

.section {
	padding: var(--section-py) 0;
}

.section--dark {
	background: var(--shield);
	color: var(--white);
}

.section--darker {
	background: var(--ink);
	color: var(--white);
}

.section--accent {
	background: var(--accent);
	color: var(--white);
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header .lead { margin: 0 auto; }

.section--dark .section-header h2,
.section--darker .section-header h2 { color: var(--white); }

.section--dark .section-header .eyebrow { color: var(--highlight); }
.section--dark .section-header .lead { color: rgba(255,255,255,.75); }

.section--darker .section-header .eyebrow { color: var(--highlight); }
.section--darker .section-header .lead { color: rgba(255,255,255,.65); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 100px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -.1px;
	cursor: pointer;
	border: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	text-decoration: none;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px rgba(46,125,232,.20);
}

.btn--primary {
	background: var(--accent);
	color: var(--white);
	box-shadow: 0 4px 20px rgba(46,125,232,.35);
}
.btn--primary:hover {
	background: #2570d4;
	box-shadow: 0 8px 28px rgba(46,125,232,.45);
	color: var(--white);
}

.btn--outline {
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(255,255,255,.45);
}
.btn--outline:hover {
	background: rgba(255,255,255,.1);
	color: var(--white);
}

.btn--ghost {
	background: transparent;
	color: var(--accent);
	border: 1.5px solid var(--accent);
}
.btn--ghost:hover { background: var(--accent); color: var(--white); }

.btn--lg {
	padding: 17px 38px;
	font-size: 16px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(247,248,252,.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s, background .25s;
}

.site-nav.scrolled {
	border-bottom-color: var(--border);
	background: rgba(247,248,252,.98);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.nav-logo-mark { width: 36px; height: 40px; }

.nav-logo-text {
	font-family: 'DM Serif Display', serif;
	font-size: 22px;
	letter-spacing: -.6px;
	color: var(--ink);
	line-height: 1;
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.nav-links a {
	font-size: 14px;
	font-weight: 400;
	color: #444d5e;
	transition: color .15s;
	text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:focus-visible,
.nav-logo:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
	border-radius: var(--radius-sm);
}

.nav-cta { margin-left: 16px; }

/* Mobile nav toggle */
.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	padding: 7px;
	color: var(--ink);
	margin-left: 12px;
	line-height: 0;
}
.nav-toggle:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	padding: 160px 0 96px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -200px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(46,125,232,.09) 0%, transparent 65%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(26,58,92,.06) 0%, transparent 65%);
	pointer-events: none;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
	position: relative;
	z-index: 1;
}

.hero-headline {
	margin-bottom: 22px;
}

.hero-headline em {
	font-style: italic;
	color: var(--accent);
}

.hero-lead { margin-bottom: 36px; }

.hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-trust {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	color: #606878; /* darkened from --muted for 5:1 contrast on white */
	letter-spacing: .3px;
}

.trust-badge svg {
	width: 14px;
	height: 14px;
	color: var(--success);
}

.trust-sep {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--border);
}

/* Hero Visual */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-lg);
	width: 100%;
	max-width: 420px;
	animation: float 5s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-10px); }
}

.hero-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
}

.form-dot {
	width: 11px; height: 11px; border-radius: 50%;
}
.form-dot-r { background: #ff5f57; }
.form-dot-y { background: #febc2e; }
.form-dot-g { background: #28c840; }

.hero-card-title {
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	letter-spacing: .5px;
}

.form-field {
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	margin-bottom: 10px;
}

.form-field-label {
	font-size: 10px;
	color: var(--muted);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.form-field-value {
	font-size: 14px;
	color: var(--ink);
}

.form-field.honeypot {
	display: none !important;
}

.form-submit-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 18px;
}

.form-submit-btn {
	background: var(--accent);
	color: var(--white);
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	font-size: 13px;
	font-weight: 500;
	cursor: default;
}

.blocked-badge {
	position: absolute;
	top: -14px;
	right: -14px;
	background: var(--shield);
	color: var(--white);
	border-radius: 100px;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 6px 20px rgba(26,58,92,.35);
	animation: popIn .5s 1s cubic-bezier(.18,1.2,.4,1) both;
}

@keyframes popIn {
	from { opacity: 0; transform: scale(.6); }
	to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 32px;
	position: relative;
	overflow: hidden;
}

.pain-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 4px; height: 100%;
	background: var(--error);
	border-radius: 4px 0 0 4px;
}

.pain-icon {
	width: 44px; height: 44px;
	border-radius: var(--radius-sm);
	background: #fff0f0;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
}

.pain-icon svg { width: 22px; height: 22px; color: var(--error); }

.pain-card h3 { margin-bottom: 10px; font-size: 18px; }
.pain-card p { font-size: 15px; color: #555f72; line-height: 1.65; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	position: relative;
}

.how-steps::before {
	content: '';
	position: absolute;
	top: 36px;
	left: calc(16.66% + 28px);
	right: calc(16.66% + 28px);
	height: 2px;
	background: linear-gradient(90deg, var(--highlight), var(--accent));
	opacity: .3;
}

.step {
	text-align: center;
	padding: 0 32px;
	position: relative;
}

.step-number {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--shield));
	color: var(--white);
	font-family: 'DM Serif Display', serif;
	font-size: 26px;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 8px 24px rgba(46,125,232,.30);
	position: relative;
	z-index: 1;
}

.step h3 {
	color: var(--white);
	font-size: 19px;
	margin-bottom: 10px;
}

.step p {
	font-size: 15px;
	color: rgba(255,255,255,.70);
	line-height: 1.65;
}

/* ============================================================
   FEATURES
   ============================================================ */
.feature-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 30px;
	transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.feature-icon {
	width: 48px; height: 48px;
	border-radius: var(--radius-sm);
	background: #eaf2ff;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
}

.feature-icon svg { width: 24px; height: 24px; color: var(--accent); }

.feature-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: 14px;
	color: #555f72;
	line-height: 1.7;
}

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
}

.integration-badge {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: var(--shadow-sm);
	transition: box-shadow .18s, transform .18s;
}

.integration-badge:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.integration-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--success);
}

/* ============================================================
   GDPR SECTION
   ============================================================ */
.gdpr-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gdpr-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-md);
	padding: 20px 22px;
}

.gdpr-check {
	flex-shrink: 0;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: rgba(95,168,255,.2);
	display: flex; align-items: center; justify-content: center;
	margin-top: 2px;
}

.gdpr-check svg { width: 14px; height: 14px; color: var(--highlight); }

.gdpr-list li strong {
	display: block;
	color: var(--white);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 4px;
}

.gdpr-list li span {
	font-size: 13px;
	color: rgba(255,255,255,.60);
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta-box {
	background: linear-gradient(135deg, var(--shield) 0%, #0e2540 100%);
	border-radius: var(--radius-lg);
	padding: 72px 64px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: '';
	position: absolute;
	top: -60px; right: -60px;
	width: 350px; height: 350px;
	background: radial-gradient(circle, rgba(95,168,255,.12) 0%, transparent 65%);
	pointer-events: none;
}

.cta-left h2 { color: var(--white); margin-bottom: 16px; }
.cta-left .lead { color: rgba(255,255,255,.72); margin-bottom: 28px; }

.cta-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cta-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,.80);
}

.cta-features li svg {
	width: 16px; height: 16px;
	color: var(--highlight);
	flex-shrink: 0;
}

/* Contact Form */
.contact-form {
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 36px;
	position: relative;
	z-index: 1;
}

.contact-form h3 {
	font-size: 20px;
	margin-bottom: 6px;
	color: var(--ink);
}

.contact-form .form-subtext {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 24px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.form-group {
	margin-bottom: 14px;
}

.form-group label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .5px;
	color: #555f72;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	background: var(--paper);
	border: 1.5px solid var(--border-form); /* 3:1 non-text contrast */
	border-radius: var(--radius-sm);
	padding: 11px 14px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: var(--ink);
	transition: border-color .15s, box-shadow .15s;
	outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(46,125,232,.28);
	outline: none;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-submit-wrapper { margin-top: 6px; }

.form-submit-wrapper .btn {
	width: 100%;
	justify-content: center;
}

/* form messages */
.form-notice {
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	margin-bottom: 18px;
}

.form-notice--success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #16a34a;
}

.form-notice--error {
	background: #fff1f2;
	border: 1px solid #fecdd3;
	color: #dc2626;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--ink);
	color: rgba(255,255,255,.55);
	padding: 56px 0 36px;
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,.08);
	margin-bottom: 28px;
}

.footer-brand .nav-logo-text { color: var(--white); }

.footer-brand p {
	font-size: 14px;
	color: rgba(255,255,255,.45);
	margin-top: 14px;
	max-width: 300px;
	line-height: 1.7;
}

.footer-col h4 {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,.55); /* raised from .35 for 4.5:1 contrast */
	margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }

.footer-col ul a {
	font-size: 14px;
	color: rgba(255,255,255,.55);
	text-decoration: none;
	transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}

.footer-bottom a {
	color: rgba(255,255,255,.45);
	transition: color .15s;
}
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 720px;
	margin: 0 auto 48px;
}

.pricing-card {
	background: var(--white);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px 36px;
	position: relative;
	transition: box-shadow .2s, transform .2s;
}

.pricing-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(46,125,232,.10), var(--shadow-md);
}

.pricing-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--white);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 16px;
	border-radius: 100px;
	white-space: nowrap;
}

.pricing-plan-name {
	font-family: 'DM Serif Display', serif;
	font-size: 22px;
	color: var(--ink);
	margin-bottom: 16px;
}

.pricing-price {
	margin-bottom: 28px;
}

.pricing-price .amount {
	font-family: 'DM Serif Display', serif;
	font-size: 46px;
	letter-spacing: -2px;
	color: var(--ink);
	line-height: 1;
}

.pricing-price .currency {
	font-family: 'DM Serif Display', serif;
	font-size: 22px;
	color: var(--muted);
	vertical-align: top;
	display: inline-block;
	margin-top: 6px;
	margin-right: 2px;
}

.pricing-price .period {
	font-size: 13px;
	color: var(--muted);
	margin-top: 6px;
}

.pricing-features {
	list-style: none;
	margin-bottom: 32px;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #555f72;
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features svg {
	width: 15px; height: 15px;
	color: var(--success);
	flex-shrink: 0;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* Plan selector in form */
.plan-selector {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 8px;
}

.plan-option {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--paper);
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	cursor: pointer;
	transition: border-color .15s, background .15s, color .15s;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
}

.plan-option input[type="radio"] {
	accent-color: var(--accent);
	width: 16px; height: 16px;
	flex-shrink: 0;
	margin: 0;
}

.plan-option:has(input:checked) {
	border-color: var(--accent);
	background: #eaf2ff;
	color: var(--accent);
}

.contact-form-wrapper {
	max-width: 540px;
	margin: 0 auto;
}

/* Imprint */
.imprint-link {
	color: rgba(255,255,255,.35);
	font-size: 13px;
	text-decoration: none;
	transition: color .15s;
}
.imprint-link:hover { color: var(--white); }

.imprint-section {
	background: var(--ink);
	border-top: 1px solid rgba(255,255,255,.06);
	padding: 40px 0;
}

.imprint-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.imprint-col h4 {
	font-family: 'DM Sans', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,.50); /* raised from .28 for minimum contrast */
	margin-bottom: 12px;
}

.imprint-col p,
.imprint-col a {
	font-size: 12px;
	color: rgba(255,255,255,.50); /* raised from .38 for 4.5:1 contrast */
	line-height: 1.8;
	display: block;
	text-decoration: none;
}

.imprint-col a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
	.hero-visual { display: none; }
	.hero { padding: 130px 0 72px; }
	.hero-lead { max-width: 100%; }
	.cta-box { grid-template-columns: 1fr; padding: 48px 36px; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.imprint-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	:root { --section-py: 64px; }

	.nav-toggle { display: flex; }

	.nav-links {
		display: none;
		position: absolute;
		top: 68px;
		left: 0;
		right: 0;
		background: rgba(247,248,252,.98);
		border-bottom: 1px solid var(--border);
		flex-direction: column;
		padding: 8px 28px 20px;
		gap: 0;
	}
	.nav-links.open { display: flex; }
	.nav-links li + li { margin-top: 0; }
	.nav-links li a {
		display: block;
		padding: 12px 0;
		font-size: 16px;
		border-bottom: 1px solid var(--border);
	}
	.nav-links li:last-child a { border-bottom: none; }

	.grid-2,
	.grid-3,
	.grid-4 { grid-template-columns: 1fr; }

	.how-steps { grid-template-columns: 1fr; gap: 40px; }
	.how-steps::before { display: none; }

	.gdpr-list { grid-template-columns: 1fr; }

	.form-row { grid-template-columns: 1fr; }

	.footer-inner { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

	.pricing-grid { grid-template-columns: 1fr; }
	.plan-selector { grid-template-columns: 1fr; }
	.imprint-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
	.hero-actions { flex-direction: column; align-items: flex-start; }
	.hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	html { scroll-behavior: auto; }
	.fade-up {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.hero-card { animation: none; }
	.blocked-badge { animation: none; opacity: 1; transform: scale(1); }
}
