/* =================================================================
   Lazox — Main Stylesheet
   Tharvision Technologies Pvt. Ltd.
   Pure CSS3 — no frameworks.
   ================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
	--ink: #111827;
	--ink-soft: #1f2937;
	--signal: #2563eb;
	--accent: #0ea5e9;
	--surface: #ffffff;
	--card: #f8fafc;
	--line: #e5e9f0;
	--muted: #64748b;
	--white: #ffffff;

	/* Extended accent palette — used sparingly for icon chips, card variety,
	   and gradient backdrops so the UI doesn't read as flat mono-blue. */
	--violet: #7c3aed;
	--violet-soft: #ede9fe;
	--amber: #f59e0b;
	--amber-soft: #fef3c7;
	--rose: #f43f5e;
	--rose-soft: #ffe4e6;
	--teal: #0d9488;
	--teal-soft: #ccfbf1;

	--radius-sm: 0.75rem;
	--radius-md: 1.25rem;
	--radius-lg: 1.75rem;
	--radius-full: 999px;

	--shadow-card: 0 1px 2px rgba(17, 24, 39, 0.04), 0 8px 24px -12px rgba(17, 24, 39, 0.1);
	--shadow-raised: 0 4px 14px rgba(17, 24, 39, 0.08), 0 20px 40px -20px rgba(37, 99, 235, 0.22);

	--container-width: 1180px;
	--header-height: 76px;

	--font-display: "Manrope", "Segoe UI", Arial, sans-serif;
	--font-body: "Inter", "Segoe UI", Arial, sans-serif;
	--font-mono: "Consolas", "SFMono-Regular", Menlo, monospace;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--surface);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a {
	color: inherit;
	text-decoration: none;
}

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	letter-spacing: -0.01em;
}

p { margin: 0; }

button {
	font-family: inherit;
	cursor: pointer;
}

input, textarea, select {
	font-family: inherit;
	font-size: 1rem;
}

:focus-visible {
	outline: 2px solid var(--signal);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: var(--white);
	padding: 0.75rem 1.25rem;
	border-radius: 0 0 var(--radius-sm) 0;
	z-index: 200;
}
.skip-link:focus {
	left: 0;
}

/* ---------- 3. Layout helpers ---------- */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section {
	padding: 6rem 0;
	border-top: 1px solid var(--line);
}

.section--tight { padding: 4.5rem 0; }
.section--card { background: var(--card); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, 0.86); }
.section--nodivider { border-top: none; }

.section-head {
	max-width: 640px;
	margin-bottom: 3.25rem;
}

.section--center .section-head {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--signal);
}

.section-title {
	margin-top: 0.75rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--ink);
}

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

.section-desc {
	margin-top: 1.1rem;
	font-size: 1.08rem;
	line-height: 1.7;
	color: var(--muted);
}

.section--dark .section-desc { color: rgba(255, 255, 255, 0.66); }

/* ---------- 4. Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.9rem 1.7rem;
	border-radius: var(--radius-full);
	border: 1px solid transparent;
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--ink) 0%, #1e2b4d 100%);
	color: var(--white);
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}
.btn-primary:hover {
	background: linear-gradient(135deg, var(--signal) 0%, var(--accent) 100%);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px -10px rgba(37, 99, 235, 0.55);
}

.btn-secondary {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.btn-secondary:hover {
	border-color: var(--ink);
}

.btn-small {
	padding: 0.6rem 1.25rem;
	font-size: 0.85rem;
}

.btn-full { width: 100%; }

/* ---------- 5. Header / navigation ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.logo-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 0.6rem;
	background: var(--ink);
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.95rem;
}

.logo-text {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--ink);
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 2.1rem;
}

.main-nav a {
	font-size: 0.94rem;
	font-weight: 500;
	color: rgba(17, 24, 39, 0.68);
	transition: color 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
	color: var(--ink);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
	display: none;
	position: fixed;
	inset: var(--header-height) 0 0 0;
	background: var(--white);
	padding: 1.5rem;
	overflow-y: auto;
	z-index: 90;
	transform: translateY(-8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav.is-open {
	display: block;
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.mobile-nav ul { margin-bottom: 1.5rem; }

.mobile-nav a {
	display: block;
	padding: 0.9rem 0.25rem;
	font-size: 1.05rem;
	font-weight: 600;
	border-bottom: 1px solid var(--line);
}

/* ---------- 6. Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background-image: radial-gradient(var(--line) 1px, transparent 1px);
	background-size: 22px 22px;
}

.hero::before {
	content: "";
	position: absolute;
	inset: -10% -10% 0 -10%;
	height: 130%;
	background:
		radial-gradient(38% 42% at 14% 8%, rgba(124, 58, 237, 0.14), transparent 70%),
		radial-gradient(42% 46% at 88% 4%, rgba(37, 99, 235, 0.16), transparent 70%),
		radial-gradient(36% 40% at 78% 62%, rgba(14, 165, 233, 0.14), transparent 70%),
		radial-gradient(30% 34% at 6% 70%, rgba(244, 63, 94, 0.08), transparent 70%),
		linear-gradient(to bottom, #ffffff 0%, #ffffff 62%, rgba(255, 255, 255, 0.25) 100%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 3.5rem;
	padding: 5.5rem 0 6rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-full);
	background: var(--white);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.hero-title {
	margin-top: 1.4rem;
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	color: var(--ink);
}

.text-gradient {
	background: linear-gradient(120deg, var(--signal) 0%, var(--accent) 55%, var(--violet) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	margin-top: 1.4rem;
	max-width: 480px;
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.2rem;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	margin-top: 2.5rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-trust svg { color: var(--signal); flex-shrink: 0; }

/* ---------- 7. Pure-CSS phone illustration ---------- */
.phone-stage {
	position: relative;
	display: flex;
	justify-content: center;
}

.phone-glow {
	position: absolute;
	inset: -10% 5%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 65%);
	filter: blur(10px);
	z-index: 0;
}

.phone-frame {
	position: relative;
	z-index: 1;
	width: 280px;
	background: var(--ink);
	border-radius: 2.4rem;
	padding: 0.5rem;
	box-shadow: var(--shadow-raised);
}

.phone-notch {
	position: absolute;
	top: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	height: 20px;
	background: var(--ink);
	border-radius: var(--radius-full);
	z-index: 2;
}

.phone-screen {
	background: var(--card);
	border-radius: 1.9rem;
	overflow: hidden;
	padding-top: 2.2rem;
}

.phone-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.1rem 0.75rem;
}

.phone-topbar strong {
	font-family: var(--font-display);
	font-size: 0.9rem;
}

.phone-avatar-placeholder {
	width: 26px;
	height: 26px;
	border-radius: var(--radius-full);
	background: var(--line);
}

.phone-list {
	padding: 0 0.9rem 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.phone-card {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 1.1rem;
	padding: 0.65rem;
	box-shadow: var(--shadow-card);
}

.phone-card-avatar {
	width: 42px;
	height: 42px;
	border-radius: 0.85rem;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--signal), var(--accent));
}

.phone-card:nth-child(2) .phone-card-avatar { background: linear-gradient(135deg, var(--violet), var(--signal)); }
.phone-card:nth-child(3) .phone-card-avatar { background: linear-gradient(135deg, var(--teal), var(--accent)); }

.phone-card-body { flex: 1; min-width: 0; }

.phone-card-body .name {
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.phone-card-body .meta {
	margin-top: 0.2rem;
	font-size: 0.72rem;
	color: var(--muted);
}

.phone-cta {
	margin: 0 0.9rem 1.3rem;
	background: var(--ink);
	color: var(--white);
	text-align: center;
	padding: 0.75rem;
	border-radius: 1rem;
	font-size: 0.85rem;
	font-weight: 700;
}

.pulse-dot {
	position: relative;
	display: inline-flex;
	width: 8px;
	height: 8px;
	flex-shrink: 0;
}
.pulse-dot::before,
.pulse-dot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--signal);
}
.pulse-dot::before {
	animation: pulseRing 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
	0% { transform: scale(1); opacity: 0.65; }
	70%, 100% { transform: scale(2.6); opacity: 0; }
}

.phone-chip {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 0.55rem 0.85rem;
	box-shadow: var(--shadow-raised);
	font-size: 0.78rem;
	font-weight: 600;
}

.phone-chip svg { color: var(--signal); }

.phone-chip--top { top: 10%; left: -6%; }
.phone-chip--bottom { bottom: 16%; right: -8%; }

/* ---------- 8. Feature / safety cards ---------- */
.card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }

.feature-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 1.9rem;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--signal), var(--accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.card-grid .feature-card:nth-child(6n+2)::before { background: linear-gradient(90deg, var(--violet), #a78bfa); }
.card-grid .feature-card:nth-child(6n+3)::before { background: linear-gradient(90deg, var(--amber), #fbbf24); }
.card-grid .feature-card:nth-child(6n+4)::before { background: linear-gradient(90deg, var(--teal), #2dd4bf); }
.card-grid .feature-card:nth-child(6n+5)::before { background: linear-gradient(90deg, var(--rose), #fb7185); }

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-raised);
	border-color: transparent;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: var(--radius-sm);
	background: var(--ink);
	color: var(--white);
}

/* Colorful icon-chip variants — cycled across feature/safety cards so the
   grid reads as lively rather than one flat repeated tone. */
.feature-icon.icon-blue   { background: linear-gradient(135deg, var(--signal), var(--accent)); color: var(--white); }
.feature-icon.icon-violet { background: var(--violet-soft); color: var(--violet); }
.feature-icon.icon-amber  { background: var(--amber-soft); color: #b45309; }
.feature-icon.icon-teal   { background: var(--teal-soft); color: var(--teal); }
.feature-icon.icon-rose   { background: var(--rose-soft); color: var(--rose); }

/* Automatic color cycling — any .card-grid of feature cards gets lively,
   varied icon colors in rotation without needing a class on every card. */
.card-grid .feature-card:nth-child(5n+1) .feature-icon { background: linear-gradient(135deg, var(--signal), var(--accent)); color: var(--white); }
.card-grid .feature-card:nth-child(5n+2) .feature-icon { background: var(--violet-soft); color: var(--violet); }
.card-grid .feature-card:nth-child(5n+3) .feature-icon { background: var(--amber-soft); color: #b45309; }
.card-grid .feature-card:nth-child(5n+4) .feature-icon { background: var(--teal-soft); color: var(--teal); }
.card-grid .feature-card:nth-child(5n+5) .feature-icon { background: var(--rose-soft); color: var(--rose); }

.feature-card h3 {
	margin-top: 1.25rem;
	font-size: 1.02rem;
}

.feature-card p {
	margin-top: 0.55rem;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--muted);
}

.safety-card {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-left: 3px solid transparent;
	border-radius: var(--radius-lg);
	padding: 2.1rem;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.safety-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-raised);
	border-left-color: var(--signal);
}

.safety-card.accent-violet:hover { border-left-color: var(--violet); }
.safety-card.accent-amber:hover  { border-left-color: var(--amber); }
.safety-card.accent-teal:hover   { border-left-color: var(--teal); }
.safety-card.accent-rose:hover   { border-left-color: var(--rose); }

/* Automatic color cycling for safety cards — same idea as feature icons. */
.card-grid .safety-card:nth-child(4n+1):hover { border-left-color: var(--signal); }
.card-grid .safety-card:nth-child(4n+2):hover { border-left-color: var(--violet); }
.card-grid .safety-card:nth-child(4n+3):hover { border-left-color: var(--teal); }
.card-grid .safety-card:nth-child(4n+4):hover { border-left-color: var(--rose); }

.card-grid .safety-card:nth-child(4n+1) .feature-icon { background: linear-gradient(135deg, var(--signal), var(--accent)); color: var(--white); }
.card-grid .safety-card:nth-child(4n+2) .feature-icon { background: var(--violet-soft); color: var(--violet); }
.card-grid .safety-card:nth-child(4n+3) .feature-icon { background: var(--teal-soft); color: var(--teal); }
.card-grid .safety-card:nth-child(4n+4) .feature-icon { background: var(--rose-soft); color: var(--rose); }

/* ---------- 9. About / step list ---------- */
.step-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.4rem;
	margin-top: 3rem;
}

.step-item {
	display: flex;
	gap: 1rem;
}

.step-number {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: var(--radius-full);
	background: var(--ink);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 700;
}

.step-item h4 {
	font-size: 0.98rem;
}

.step-item p {
	margin-top: 0.35rem;
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.6;
}

.buddy-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 2rem;
}

.buddy-pill {
	padding: 0.55rem 1.05rem;
	border-radius: var(--radius-full);
	background: var(--card);
	border: 1px solid var(--line);
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--ink-soft);
	transition: transform 0.15s ease;
}

.buddy-pill:hover { transform: translateY(-2px); }

.buddy-pill.p-blue   { background: #eff6ff; border-color: #dbeafe; color: #1d4ed8; }
.buddy-pill.p-violet { background: var(--violet-soft); border-color: #ddd6fe; color: var(--violet); }
.buddy-pill.p-amber  { background: var(--amber-soft); border-color: #fde68a; color: #b45309; }
.buddy-pill.p-teal   { background: var(--teal-soft); border-color: #99f6e4; color: var(--teal); }
.buddy-pill.p-rose   { background: var(--rose-soft); border-color: #fecdd3; color: #be123c; }
.buddy-pill.p-sky    { background: #f0f9ff; border-color: #bae6fd; color: #0369a1; }
.buddy-pill.p-ink    { background: var(--card); border-color: var(--line); color: var(--ink-soft); }

/* ---------- 10. Mission / Vision / Values ---------- */
.mvv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.mvv-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	padding: 2.4rem;
	border: 1px solid var(--line);
	background: var(--white);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.mvv-card .mvv-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
}

.mvv-card.is-dark {
	background: linear-gradient(155deg, #0b1220 0%, var(--ink) 45%, #2b1a5e 130%);
	color: rgba(255, 255, 255, 0.85);
	border-color: var(--ink);
}
.mvv-card.is-dark .mvv-icon { background: rgba(255, 255, 255, 0.12); color: #c4b5fd; }

.mvv-card.is-blue {
	background: linear-gradient(155deg, #eff6ff 0%, #ffffff 55%);
	border-color: #dbeafe;
}
.mvv-card.is-blue .mvv-icon { background: #dbeafe; color: var(--signal); }

.mvv-card.is-amber {
	background: linear-gradient(155deg, #fffbeb 0%, #ffffff 55%);
	border-color: #fde68a;
}
.mvv-card.is-amber .mvv-icon { background: var(--amber-soft); color: #b45309; }

.mvv-card h3 {
	position: relative;
	z-index: 1;
	margin-top: 1.4rem;
	font-size: 1.3rem;
	color: var(--ink);
}

.mvv-card.is-dark h3 { color: var(--white); }

.mvv-card p {
	position: relative;
	z-index: 1;
	margin-top: 0.85rem;
	font-size: 0.94rem;
	line-height: 1.7;
	color: var(--muted);
}

.mvv-card.is-dark p { color: rgba(255, 255, 255, 0.66); }

/* ---------- 11. Company info panel ---------- */
.info-panel {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
}

.info-panel dl {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.info-panel dt {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.info-panel dd {
	margin: 0.3rem 0 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--ink);
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

/* ---------- 12. Contact ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 3.5rem;
}

.contact-list {
	margin-top: 2.2rem;
	display: flex;
	flex-direction: column;
	gap: 1.3rem;
}

.contact-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: var(--radius-sm);
	background: var(--card);
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--signal);
}

.contact-list .label {
	font-size: 0.78rem;
	color: var(--muted);
}

.contact-list .value {
	font-weight: 600;
}

.form-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 2.3rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.88rem;
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	color: var(--ink);
	transition: border-color 0.18s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--signal);
	outline: none;
}

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

.form-note {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	padding: 0.9rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.88rem;
	margin-bottom: 1.2rem;
}

.form-note.success {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}

.form-note.error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

/* ---------- 13. Legal / long-form content pages ---------- */
.legal-content {
	max-width: 760px;
}

.legal-content .legal-block + .legal-block {
	margin-top: 2.4rem;
}

.legal-content h2 {
	font-size: 1.2rem;
	color: var(--ink);
}

.legal-content p {
	margin-top: 0.75rem;
	color: var(--muted);
	line-height: 1.75;
	font-size: 0.98rem;
}

.legal-content ul {
	margin-top: 0.75rem;
	padding-left: 1.2rem;
	list-style: disc;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.updated-note {
	display: inline-block;
	margin-top: 1.1rem;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--muted);
}

/* ---------- 14. Support / FAQ ---------- */
.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	padding: 1.6rem 0;
	border-bottom: 1px solid var(--line);
}

.faq-item:first-child { padding-top: 0; }

.faq-item h3 {
	font-size: 1.02rem;
}

.faq-item p {
	margin-top: 0.55rem;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--muted);
}

/* ---------- 15. Delete account steps ---------- */
.ordered-steps {
	margin-top: 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.ordered-steps li {
	display: flex;
	gap: 1rem;
	font-size: 0.94rem;
	color: var(--muted);
	line-height: 1.6;
}

.data-list {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.data-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.data-list .dot {
	margin-top: 0.5rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--signal);
	flex-shrink: 0;
}

.data-list .dot.accent { background: var(--accent); }

/* ---------- 16. Hero-style page header (inner pages) ---------- */
.page-header {
	position: relative;
	overflow: hidden;
	background: var(--card);
	background-image: radial-gradient(var(--line) 1px, transparent 1px);
	background-size: 22px 22px;
	padding: 4.5rem 0;
	border-bottom: 1px solid var(--line);
}

.page-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(35% 60% at 88% 0%, rgba(37, 99, 235, 0.1), transparent 70%),
		radial-gradient(30% 50% at 6% 100%, rgba(124, 58, 237, 0.08), transparent 70%);
	pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header .section-title { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-header .section-desc { max-width: 620px; }

/* ---------- 17. CTA banner ---------- */
.cta-banner {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	background: linear-gradient(135deg, #0b1220 0%, var(--ink) 45%, #1e2b6b 100%);
	border-radius: var(--radius-lg);
	padding: 3rem;
	color: var(--white);
}

.cta-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(40% 70% at 90% 0%, rgba(14, 165, 233, 0.35), transparent 70%),
		radial-gradient(30% 60% at 10% 100%, rgba(124, 58, 237, 0.3), transparent 70%);
	pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { font-size: 1.6rem; }
.cta-banner p { margin-top: 0.6rem; color: rgba(255, 255, 255, 0.66); }

/* ---------- 18. 404 page ---------- */
.error-page {
	padding: 7rem 0;
	text-align: center;
}

.error-code {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(4rem, 12vw, 7rem);
	color: var(--ink);
	line-height: 1;
}

.error-page .section-desc {
	margin-left: auto;
	margin-right: auto;
}

.error-actions {
	margin-top: 2.2rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ---------- 19. Footer ---------- */
.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 3rem;
	padding: 4.5rem 0 3.5rem;
}

.logo-footer .logo-mark { background: var(--white); color: var(--ink); }
.logo-footer .logo-text { color: var(--white); }

.footer-tagline {
	margin-top: 1rem;
	max-width: 340px;
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.55);
}

.footer-contact {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.68);
}

.footer-contact svg { color: var(--accent); flex-shrink: 0; }
.footer-contact a:hover { color: var(--white); }

.footer-links h3 {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.4);
}

.footer-links ul {
	margin-top: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links a {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.68);
	transition: color 0.18s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.6rem 0;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.4);
	flex-wrap: wrap;
}

.footer-brand-note { font-family: var(--font-mono); }

/* ---------- 20. Utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
