/* =========================================================
   LionWebsiteDesign — design system
   ========================================================= */
:root {
	--navy: #0f172a;
	--navy-soft: #16213f;
	--navy-card: #1a2540;
	--accent: #f7941d;
	--accent-2: #ff8a00;
	--accent-red: #ff5a4e;
	--gradient: linear-gradient(90deg, var(--accent) 0%, var(--accent-red) 100%);
	--ink: #0f172a;
	--gray-700: #334155;
	--gray-500: #64748b;
	--gray-200: #e2e8f0;
	--bg-light: #f8fafc;
	--peach: #fff1e0;
	--white: #ffffff;
	--radius: 16px;
	--shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
	--shadow-card-hover: 0 20px 40px rgba(15, 23, 42, 0.14);
	--font-head: "Sora", "Poppins", sans-serif;
	--font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-tap-highlight-color: transparent; }

.lwd-site button {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-tap-highlight-color: transparent !important;
	-webkit-touch-callout: none;
	touch-action: manipulation;
}
.lwd-site button:focus,
.lwd-site button:focus-visible {
	outline: 2px solid rgba(247, 148, 29, 0.5);
	outline-offset: 2px;
}

body.lwd-site {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	overflow-x: hidden;
}

body.lwd-site img { max-width: 100%; height: auto; }

.lwd-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

h1, h2, h3, h4, .lwd-heading {
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.15;
	margin: 0 0 16px;
}

a { text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.lwd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 32px;
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.01em;
	border: none;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.6s ease;
	background-image: var(--gradient) !important;
	background-color: transparent !important;
	background-size: 200% 100%;
	background-position: 0% 0%;
	color: #fff !important;
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(247, 148, 29, 0.3);
}
.lwd-btn:hover,
.lwd-btn:focus,
.lwd-btn:active,
.lwd-btn:visited {
	transform: scale(1.03);
	background-position: 100% 0%;
	box-shadow: 0 10px 26px rgba(247, 148, 29, 0.42);
	color: #fff !important;
}
.lwd-btn.lwd-btn-outline {
	background-image: none !important;
	background-color: transparent !important;
	box-shadow: none;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.35);
}
.lwd-btn.lwd-btn-outline:hover {
	border-color: var(--accent);
	background-color: rgba(247, 148, 29, 0.1) !important;
}
.lwd-btn.lwd-btn-dark {
	background-image: none !important;
	background-color: var(--navy) !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

/* ---------- Header ---------- */
.lwd-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: linear-gradient(115deg, var(--navy) 0%, #16213f 55%, #1a2540 100%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: box-shadow 0.3s ease;
	border-bottom: 2px solid transparent;
	border-image: var(--gradient) 1;
}
.lwd-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.lwd-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
}
.lwd-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 20px;
	color: var(--white);
}
.lwd-logo img {
	width: 40px;
	height: 40px;
	transition: transform 0.4s ease;
}
.lwd-logo:hover img { transform: rotate(-8deg) scale(1.08); }
.lwd-logo span { color: var(--accent); }

.lwd-nav {
	display: flex;
	align-items: center;
	gap: 32px;
}
.lwd-nav ul {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}
.lwd-nav a {
	position: relative;
	color: #cbd5e1;
	font-weight: 600;
	font-size: 15px;
	padding-bottom: 4px;
}
.lwd-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: width 0.3s ease;
}
.lwd-nav a:hover { color: var(--white); }
.lwd-nav a:hover::after { width: 100%; }

.lwd-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent !important;
	background-color: transparent !important;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	outline: none;
	box-shadow: none;
	-webkit-tap-highlight-color: transparent;
}
.lwd-menu-toggle:focus,
.lwd-menu-toggle:focus-visible,
.lwd-menu-toggle:active,
.lwd-menu-toggle:hover {
	outline: none;
	box-shadow: none;
	background: rgba(247, 148, 29, 0.15) !important;
}
.lwd-menu-toggle span {
	background-color: #fff !important;
}
.lwd-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--white);
}

/* ---------- Hero ---------- */
.lwd-hero {
	position: relative;
	background: radial-gradient(ellipse at top right, rgba(247, 148, 29, 0.18), transparent 55%),
		radial-gradient(ellipse at bottom left, rgba(255, 90, 78, 0.12), transparent 50%),
		var(--navy);
	color: var(--white);
	padding: 120px 24px 90px;
	text-align: center;
	overflow: hidden;
}
.lwd-hero::before {
	content: "";
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(247, 148, 29, 0.25), transparent 70%);
	top: -200px;
	right: -160px;
	animation: lwd-float 10s ease-in-out infinite;
}
.lwd-hero::after {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 90, 78, 0.18), transparent 70%);
	bottom: -180px;
	left: -140px;
	animation: lwd-float 12s ease-in-out infinite reverse;
}
@keyframes lwd-float {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(20px, 30px); }
}
.lwd-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.lwd-eyebrow {
	display: inline-block;
	background: rgba(247, 148, 29, 0.12);
	border: 1px solid rgba(247, 148, 29, 0.4);
	color: var(--accent);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 8px 18px;
	border-radius: 999px;
	margin-bottom: 24px;
}
.lwd-hero h1 {
	color: var(--white);
	font-size: clamp(32px, 5vw, 56px);
	margin-bottom: 20px;
}
.lwd-hero h1 .lwd-accent-text { color: var(--accent); }
.lwd-hero p.lwd-lead {
	color: #cbd5e1;
	font-size: 19px;
	line-height: 1.6;
	max-width: 640px;
	margin: 0 auto 36px;
}
.lwd-hero-ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.lwd-disclosure {
	font-size: 13px;
	color: #94a3b8;
	max-width: 560px;
	margin: 0 auto 48px;
}
.lwd-disclosure strong { color: #cbd5e1; }

/* ---------- Stat row ---------- */
.lwd-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 720px;
	margin: 0 auto;
}
.lwd-stat {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 20px 12px;
}
.lwd-stat-num {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(24px, 3vw, 34px);
	color: var(--accent);
	display: block;
}
.lwd-stat-label {
	font-size: 13px;
	color: #94a3b8;
	margin-top: 4px;
}

/* ---------- Sections ---------- */
.lwd-section { padding: 90px 24px; }
.lwd-section.lwd-bg-light { background: var(--bg-light); }
.lwd-section.lwd-bg-dark { background: var(--navy); color: var(--white); }
.lwd-section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.lwd-section-head .lwd-kicker {
	color: var(--accent);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 13px;
	margin-bottom: 10px;
	display: block;
}
.lwd-section-head p { color: var(--gray-500); font-size: 17px; }
.lwd-bg-dark .lwd-section-head p { color: #94a3b8; }
.lwd-bg-dark .lwd-section-head h2 { color: var(--white); }

/* ---------- Cards ---------- */
.lwd-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lwd-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.lwd-card {
	position: relative;
	background: var(--white);
	border-radius: var(--radius);
	padding: 36px 28px;
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lwd-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 5px;
	background: var(--gradient);
}
.lwd-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.lwd-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--peach);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
}
.lwd-card h3 { font-size: 20px; margin-bottom: 10px; }
.lwd-card p { color: var(--gray-500); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------- AI-assisted callout ---------- */
.lwd-callout {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 20px;
	padding: 44px;
	display: flex;
	gap: 32px;
	align-items: center;
	max-width: 980px;
	margin: 0 auto;
}
.lwd-callout img { width: 96px; height: 96px; flex-shrink: 0; }
.lwd-callout h3 { margin-bottom: 10px; }
.lwd-callout p { color: var(--gray-700); line-height: 1.7; margin: 0; }

/* ---------- Pricing ---------- */
.lwd-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
	max-width: 1120px;
	margin: 0 auto;
}
.lwd-price-card {
	position: relative;
	background: var(--white);
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lwd-price-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 6px;
	background: var(--gradient);
	border-radius: 20px 20px 0 0;
}
.lwd-price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.lwd-price-card.lwd-popular {
	background: var(--navy);
	color: var(--white);
	transform: scale(1.05);
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.3);
}
.lwd-price-card.lwd-popular:hover { transform: scale(1.05) translateY(-8px); }
.lwd-price-card.lwd-popular p { color: #cbd5e1; }
.lwd-ribbon {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 6px 18px;
	border-radius: 999px;
	white-space: nowrap;
}
.lwd-tier-name { font-family: var(--font-head); font-weight: 800; font-size: 20px; margin-bottom: 6px; }
.lwd-tier-desc { color: var(--gray-500); font-size: 14px; margin-bottom: 22px; }
.lwd-popular .lwd-tier-desc { color: #94a3b8; }
.lwd-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.lwd-price-strike { color: var(--gray-500); text-decoration: line-through; font-size: 16px; }
.lwd-popular .lwd-price-strike { color: #64748b; }
.lwd-price-now { font-family: var(--font-head); font-weight: 800; font-size: 40px; }
.lwd-off-badge {
	display: inline-block;
	background: var(--peach);
	color: var(--accent-2);
	font-weight: 700;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 24px;
}
.lwd-popular .lwd-off-badge { background: rgba(247, 148, 29, 0.15); color: var(--accent); }
.lwd-feature-list { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; }
.lwd-feature-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14.5px;
	color: var(--gray-700);
	padding: 8px 0;
	border-bottom: 1px dashed var(--gray-200);
}
.lwd-popular .lwd-feature-list li { color: #e2e8f0; border-bottom-color: rgba(255, 255, 255, 0.1); }
.lwd-feature-list li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.lwd-price-card .lwd-btn { width: 100%; }

.lwd-price-monthly {
	font-size: 13px;
	color: var(--gray-500);
	margin: 0 0 20px;
}
.lwd-popular .lwd-price-monthly { color: #94a3b8; }

.lwd-billing-toggle {
	display: flex;
	justify-content: center;
	gap: 4px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 999px;
	padding: 4px;
	max-width: 280px;
	margin: 0 auto 40px;
}
.lwd-billing-btn {
	flex: 1;
	background: none;
	border: none;
	padding: 10px 20px;
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 14px;
	color: var(--gray-500);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	appearance: none;
	-webkit-appearance: none;
	transition: background 0.2s ease, color 0.2s ease;
}
.lwd-billing-btn.is-active { background: var(--gradient); color: #fff; }
.lwd-billing-btn:focus { outline: 2px solid rgba(247, 148, 29, 0.4); outline-offset: 2px; }

.lwd-price-suffix { font-size: 16px; font-weight: 600; }
.lwd-price-monthlyplan[hidden] { display: none !important; }
.lwd-price-onetime[hidden] { display: none !important; }

.lwd-card-badges {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.lwd-card-badge {
	background: var(--bg-light);
	border: 1px solid var(--gray-200);
	color: var(--gray-700);
	font-size: 12.5px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
}

.lwd-trust-row {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 56px;
	color: var(--gray-500);
	font-size: 14px;
	font-weight: 600;
}
.lwd-trust-row span::before { content: "✓ "; color: var(--accent); }

/* ---------- FAQ ---------- */
.lwd-faq { max-width: 760px; margin: 0 auto; }
.lwd-faq-item {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 14px;
	padding: 22px 26px;
	margin-bottom: 14px;
}
.lwd-faq-item summary {
	cursor: pointer;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 16px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.lwd-faq-item summary::-webkit-details-marker { display: none; }
.lwd-faq-item summary::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 700; }
.lwd-faq-item[open] summary::after { content: "−"; }
.lwd-faq-item p { color: var(--gray-500); margin: 14px 0 0; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.lwd-testimonial {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow-card);
}
.lwd-testimonial p.lwd-quote { font-size: 16px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.lwd-testimonial .lwd-author { display: flex; align-items: center; gap: 12px; }
.lwd-avatar {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--gradient);
	color: var(--white);
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-family: var(--font-head);
}
.lwd-author-name { font-weight: 700; font-size: 14px; }
.lwd-author-role { font-size: 13px; color: var(--gray-500); }
.lwd-testimonial-note {
	text-align: center;
	font-size: 12.5px;
	color: var(--gray-500);
	margin-top: 24px;
	font-style: italic;
}

/* ---------- Final CTA ---------- */
.lwd-cta-band {
	background: var(--navy);
	color: var(--white);
	text-align: center;
	padding: 90px 24px;
	position: relative;
	overflow: hidden;
}
.lwd-cta-band h2 { color: var(--white); }
.lwd-cta-band p { color: #cbd5e1; max-width: 560px; margin: 0 auto 32px; font-size: 17px; }

/* ---------- Footer ---------- */
.lwd-footer { background: #0b1120; color: #94a3b8; padding: 64px 24px 24px; }
.lwd-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.lwd-footer h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.lwd-footer ul { list-style: none; padding: 0; margin: 0; }
.lwd-footer li { margin-bottom: 10px; }
.lwd-footer a { color: #94a3b8; font-size: 14px; transition: color 0.2s ease; }
.lwd-footer a:hover { color: var(--accent); }
.lwd-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
}
.lwd-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lwd-footer-logo img { width: 32px; height: 32px; }
.lwd-footer-logo span { color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.lwd-footer p.lwd-footer-tagline { font-size: 14px; line-height: 1.6; max-width: 300px; }

/* ---------- Scroll reveal ---------- */
.lwd-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.lwd-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Forms ---------- */
.lwd-form { max-width: 640px; margin: 0 auto; }
.lwd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.lwd-form-group { display: flex; flex-direction: column; gap: 6px; }
.lwd-form-group.lwd-full { grid-column: 1 / -1; }
.lwd-form label { font-weight: 600; font-size: 14px; color: var(--ink); }
.lwd-form input, .lwd-form select, .lwd-form textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--gray-200);
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.4;
	color: var(--ink);
	background: var(--white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lwd-form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: auto !important;
	min-height: 0;
	padding-right: 44px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 8 10 13 15 8'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 16px;
	cursor: pointer;
}
.lwd-form input:focus, .lwd-form select:focus, .lwd-form textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}
.lwd-form textarea { resize: vertical; min-height: 120px; }
.lwd-form-note { margin-top: 18px; font-size: 13px; color: var(--gray-500); }
.lwd-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 24px; font-size: 14px; font-weight: 600; }
.lwd-alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.lwd-alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.lwd-contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto 64px; text-align: center; }
.lwd-contact-info .lwd-card { text-align: center; }

/* ---------- Legal pages ---------- */
.lwd-legal-wrap { max-width: 820px; margin: 0 auto; }
.lwd-legal-updated { color: var(--gray-500); font-size: 14px; margin-bottom: 32px; }
.lwd-legal-updated-hero { opacity: 0.85; }
.lwd-legal-toc {
	background: var(--navy);
	color: #fff;
	border-radius: 18px;
	padding: 32px 36px;
	margin-bottom: 48px;
	position: relative;
	overflow: hidden;
}
.lwd-legal-toc::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 5px;
	background: var(--gradient);
}
.lwd-legal-toc h2 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent);
	margin-bottom: 18px;
}
.lwd-legal-toc ol { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 28px; }
.lwd-legal-toc li { counter-increment: lwd-toc; margin-bottom: 12px; break-inside: avoid; }
.lwd-legal-toc a {
	color: #e2e8f0;
	font-size: 14.5px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: color 0.2s ease;
}
.lwd-legal-toc a::before {
	content: counter(lwd-toc);
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(247, 148, 29, 0.18);
	color: var(--accent);
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lwd-legal-toc ol { counter-reset: lwd-toc; }
.lwd-legal-toc a:hover { color: var(--accent); }

.lwd-legal-section {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 16px;
	padding: 32px 36px;
	margin-bottom: 24px;
	scroll-margin-top: 100px;
	box-shadow: var(--shadow-card);
	border-left: 4px solid var(--accent);
}
.lwd-legal-section h2 { font-size: 19px; margin-bottom: 14px; }
.lwd-legal-section p, .lwd-legal-section li { color: var(--gray-700); line-height: 1.75; font-size: 15px; }
.lwd-placeholder { background: #fff7ed; color: #9a3412; padding: 2px 6px; border-radius: 4px; font-size: 0.92em; }

.lwd-legal-cta {
	text-align: center;
	background: var(--navy);
	color: #fff;
	border-radius: 18px;
	padding: 44px 32px;
	margin-top: 40px;
}
.lwd-legal-cta h3 { color: #fff; margin-bottom: 8px; }
.lwd-legal-cta p { color: #cbd5e1; margin-bottom: 24px; }

@media (max-width: 640px) {
	.lwd-legal-toc ol { columns: 1; }
	.lwd-legal-section { padding: 24px; }
}

/* ---------- 404 ---------- */
.lwd-404 { text-align: center; padding: 140px 24px; background: var(--navy); color: var(--white); }
.lwd-404 .lwd-lion { width: 120px; margin-bottom: 24px; }
.lwd-404 h1 { color: var(--white); font-size: 100px; margin-bottom: 0; }
.lwd-404 p { color: #cbd5e1; font-size: 18px; margin-bottom: 32px; }

/* ---------- Cookie banner ---------- */
.lwd-cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 560px;
	margin: 0 auto;
	background: var(--navy);
	color: var(--white);
	border-radius: 16px;
	padding: 22px 26px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	z-index: 9999;
	display: none;
}
.lwd-cookie-banner.is-visible { display: block; }
.lwd-cookie-banner p { font-size: 13.5px; color: #cbd5e1; margin: 0 0 16px; line-height: 1.6; }
.lwd-cookie-banner p a { color: var(--accent); }
.lwd-cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.lwd-cookie-actions button {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 13px;
	padding: 10px 20px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
}
.lwd-cookie-accept { background: var(--gradient); color: var(--white); }
.lwd-cookie-decline { background: transparent; color: #cbd5e1; border: 1px solid rgba(255,255,255,0.25) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.lwd-grid-3, .lwd-pricing-grid, .lwd-contact-info { grid-template-columns: 1fr; }
	.lwd-grid-2 { grid-template-columns: 1fr; }
	.lwd-footer-grid { grid-template-columns: 1fr 1fr; }
	.lwd-price-card.lwd-popular { transform: none; }
	.lwd-price-card.lwd-popular:hover { transform: translateY(-8px); }
	.lwd-callout { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
	.lwd-nav ul { position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px 24px; gap: 4px; transform: translateY(-120%); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
	.lwd-nav.is-open ul { transform: translateY(0); opacity: 1; pointer-events: auto; }
	.lwd-nav ul li { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
	.lwd-menu-toggle { display: flex; }
	.lwd-nav .lwd-nav-cta { display: none; }
	.lwd-stats { grid-template-columns: 1fr; }
	.lwd-form-row { grid-template-columns: 1fr; }
	.lwd-footer-grid { grid-template-columns: 1fr; }
	.lwd-404 h1 { font-size: 64px; }
}
