/*
 * Qrua marketing site - shared stylesheet.
 * Palette/type scale intentionally mirror dashboard-ui/src/lib/design/tokens.css
 * so the marketing site reads as the same product family as the app itself.
 * No real product screenshots anywhere on this site - every visual is custom
 * SVG illustration in this same palette (see website/design/concept.md §9-10).
 */

:root {
	--color-primary: #0a6ee8;
	--color-primary-hover: #0860cc;
	--color-primary-active: #0552ac;
	--color-primary-soft: #eaf3fe;
	--color-brand-gradient: linear-gradient(135deg, #0a6ee8 0%, #4f8ff7 100%);
	--color-success: #1fa855;
	--color-success-soft: #e7f8ed;
	--color-warning: #d97a06;
	--color-warning-soft: #fdf1e0;
	--color-neutral: #8e8e93;

	--color-bg: #f4f6fb;
	--color-bg-accent-1: #eef4ff;
	--color-bg-accent-2: #fbfcff;
	--color-surface: #ffffff;
	--color-border: #e4e7ee;
	--color-border-strong: #d3d8e3;

	--color-text: #14161f;
	--color-text-muted: #5b6072;
	--color-text-on-primary: #ffffff;
	--color-text-caption: #7d8194;

	--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-family-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-family-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-pill: 999px;

	--shadow-card: 0 1px 2px rgba(20, 22, 31, 0.04), 0 12px 32px -12px rgba(20, 22, 31, 0.16);
	--shadow-card-hover: 0 2px 4px rgba(20, 22, 31, 0.05), 0 16px 40px -12px rgba(20, 22, 31, 0.2);
	--shadow-button-primary: 0 1px 2px rgba(5, 82, 172, 0.15), 0 6px 16px -6px rgba(10, 110, 232, 0.45);

	--transition-fast: 140ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-medium: 220ms cubic-bezier(0.4, 0, 0.2, 1);
	--focus-ring: 0 0 0 3px rgba(10, 110, 232, 0.28);

	--content-width: 1120px;
}

/* Beta ribbon - diagonal corner ribbon, fixed to the viewport's top-left, present on every page during Beta */
.beta-ribbon {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 210;
	width: 130px;
	height: 130px;
	overflow: hidden;
	pointer-events: none;
}

.beta-ribbon span {
	position: absolute;
	top: 30px;
	left: -36px;
	width: 170px;
	padding: 5px 0;
	background: var(--color-brand-gradient);
	color: var(--color-text-on-primary);
	font-family: var(--font-family);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	box-shadow: var(--shadow-card);
	transform: rotate(-45deg);
}

@media (max-width: 480px) {
	.beta-ribbon {
		width: 64px;
		height: 64px;
	}
	.beta-ribbon span {
		top: 13px;
		left: -20px;
		width: 90px;
		padding: 2px 0;
		font-size: 7px;
		letter-spacing: 0.04em;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 12px 0;
	font-family: var(--font-family-heading);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--color-text);
}

h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
}

h2 {
	font-size: clamp(24px, 3.4vw, 34px);
}

h3 {
	font-size: 19px;
}

p {
	margin: 0 0 16px 0;
}

.text-muted {
	color: var(--color-text-muted);
}

.container {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-primary);
	background: var(--color-primary-soft);
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	margin-bottom: 16px;
}

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border-radius: var(--radius-pill);
	padding: 13px 26px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
	white-space: nowrap;
}

.btn:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-text-on-primary);
	box-shadow: var(--shadow-button-primary);
}

.btn-primary:hover {
	background: var(--color-primary-hover);
	transform: translateY(-1px);
}

.btn-secondary {
	background: var(--color-surface);
	color: var(--color-text);
	border-color: var(--color-border-strong);
}

.btn-secondary:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.btn-secondary:disabled:hover {
	border-color: var(--color-border-strong);
	color: var(--color-text);
}

.btn-ghost {
	background: transparent;
	color: var(--color-primary);
	padding: 13px 8px;
}

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

.btn-block {
	width: 100%;
}

/* Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid var(--color-border);
}

/* The header's blur/tint lives on this pseudo-element rather than directly on
   .site-header - backdrop-filter establishes a containing block for any
   position:fixed descendant (e.g. the mobile .main-nav), which broke the
   mobile menu's sizing/position. Keeping the filter off .site-header itself
   avoids that while keeping the same visual effect. */
.site-header::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(244, 246, 251, 0.86);
	backdrop-filter: blur(10px);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	gap: 24px;
}

.logo-row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.logo-mark {
	width: 34px;
	height: 34px;
	border-radius: 10px;
}

.wordmark {
	font-family: var(--font-family-heading);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--color-text);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	flex: 1;
	justify-content: center;
}

.main-nav a {
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	color: var(--color-text-muted);
	transition: color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
	color: var(--color-primary);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle svg {
	width: 24px;
	height: 24px;
}

/* Footer */

.site-footer {
	border-top: 1px solid var(--color-border);
	background: var(--color-surface);
	padding: 56px 0 28px;
	margin-top: 96px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 40px;
}

.footer-col h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-text-caption);
	margin-bottom: 14px;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col a {
	text-decoration: none;
	color: var(--color-text-muted);
	font-size: 14px;
}

.footer-col a:hover {
	color: var(--color-primary);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	font-size: 13px;
	color: var(--color-text-caption);
}

/* Breadcrumbs */

.breadcrumbs {
	padding: 16px 0 0;
}

.breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: var(--color-text-caption);
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	gap: 6px;
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	color: var(--color-border-strong);
}

.breadcrumbs a {
	text-decoration: none;
	color: var(--color-text-caption);
}

.breadcrumbs a:hover {
	color: var(--color-primary);
}

.breadcrumbs li[aria-current="page"] {
	color: var(--color-text-muted);
	font-weight: 600;
}

/* Sections */

section {
	padding: 88px 0;
}

.section-tight {
	padding: 56px 0;
}

.section-head {
	max-width: 640px;
	margin: 0 auto 48px;
	text-align: center;
}

.section-head.align-left {
	margin: 0 0 40px;
	text-align: left;
}

/* Hero */

.hero {
	padding: 72px 0 40px;
	overflow: hidden;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.hero-copy .eyebrow {
	margin-bottom: 20px;
}

.hero-copy p.lead {
	font-size: 19px;
	color: var(--color-text-muted);
	max-width: 480px;
}

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

.hero-microcopy {
	margin-top: 18px;
	font-size: 13px;
	color: var(--color-text-caption);
}

.hero-visual {
	background: var(--color-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: 32px;
	border: 1px solid var(--color-border);
}

/* Illustration frame strip */

.frame-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.frame-strip.frames-4 {
	grid-template-columns: repeat(4, 1fr);
}

.frame {
	background: var(--color-bg-accent-1);
	border-radius: var(--radius-md);
	padding: 18px 14px 16px;
	text-align: center;
	position: relative;
}

.frame-illustration {
	width: 100%;
	height: 116px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.frame-illustration svg {
	width: 100%;
	height: 100%;
}

.frame-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-text);
}

.frame-arrow {
	display: none;
}

@media (min-width: 720px) {
	.frame-strip {
		position: relative;
	}
	.frame:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 48px;
		right: -13px;
		width: 10px;
		height: 10px;
		border-top: 2px solid var(--color-border-strong);
		border-right: 2px solid var(--color-border-strong);
		transform: rotate(45deg);
		z-index: 2;
	}
}

/* Cards */

.card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 28px;
	transition: box-shadow var(--transition-medium), transform var(--transition-medium);
}

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

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--color-primary-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.card-icon svg {
	width: 26px;
	height: 26px;
}

.grid {
	display: grid;
	gap: 24px;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Problem / before-after */

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.split-panel {
	border-radius: var(--radius-lg);
	padding: 28px;
	text-align: center;
}

.split-panel.before {
	background: var(--color-warning-soft);
	border: 1px dashed #eecf9e;
}

.split-panel.after {
	background: var(--color-success-soft);
	border: 1px solid #bfe8cd;
}

.split-panel .panel-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: var(--radius-pill);
	margin-bottom: 16px;
}

.split-panel.before .panel-tag {
	background: #f3dcb0;
	color: #8a5a06;
}

.split-panel.after .panel-tag {
	background: #cdeed9;
	color: #146c37;
}

.split-illustration {
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.split-illustration svg {
	height: 100%;
}

/* How it works steps */

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	counter-reset: step;
}

.step {
	position: relative;
	padding-top: 8px;
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	margin-bottom: 16px;
}

/* Pricing */

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 820px;
	margin: 0 auto;
}

.price-card {
	display: flex;
	flex-direction: column;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	box-shadow: var(--shadow-card);
}

.price-card > .btn {
	margin-top: auto;
}

.price-card.featured {
	border: 2px solid var(--color-primary);
	position: relative;
}

.price-card .plan-name {
	display: inline-block;
	align-self: flex-start;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-success);
	background: var(--color-success-soft);
	padding: 4px 12px;
	border-radius: var(--radius-pill);
	margin-bottom: 14px;
}

.price-card.featured .plan-name {
	color: var(--color-text-on-primary);
	background: var(--color-brand-gradient);
}

.price-value {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 4px;
}

.price-value .amount {
	font-family: var(--font-family-heading);
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.price-value .unit {
	font-size: 14px;
	color: var(--color-text-muted);
	font-weight: 600;
}

.price-tbd {
	font-size: 14px;
	color: var(--color-text-muted);
	font-style: italic;
	margin-bottom: 20px;
}

.feature-list {
	list-style: none;
	margin: 24px 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	color: var(--color-text);
}

.feature-list svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

.beta-perk {
	font-size: 13px;
	line-height: 1.5;
	color: #8a5a06;
	background: var(--color-warning-soft);
	border: 1px solid #f3d8ab;
	border-radius: var(--radius-sm);
	padding: 10px 12px;
	margin-bottom: 14px;
}

.tbd-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	background: var(--color-warning-soft);
	color: #8a5a06;
	padding: 2px 8px;
	border-radius: var(--radius-pill);
	margin-left: 6px;
	vertical-align: middle;
}

.compare-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-top: 48px;
}

.compare-table th,
.compare-table td {
	text-align: left;
	padding: 16px 20px;
	border-bottom: 1px solid var(--color-border);
	font-size: 14.5px;
}

.compare-table th {
	background: var(--color-bg-accent-1);
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text-caption);
}

.compare-table tr:last-child td {
	border-bottom: none;
}

.compare-table .beta-perk-row td {
	background: var(--color-warning-soft);
	color: #8a5a06;
	font-weight: 600;
}

.compare-table .beta-perk-row td:first-child {
	font-weight: 800;
}

/* FAQ accordion */

.faq-item {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 24px;
	font-weight: 700;
	font-size: 15.5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary .chev {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--color-text-muted);
	transition: transform var(--transition-fast);
}

.faq-item[open] summary .chev {
	transform: rotate(180deg);
}

.faq-item .faq-answer {
	padding: 0 24px 22px;
	color: var(--color-text-muted);
	font-size: 14.5px;
}

/* CTA banner */

.cta-banner {
	background: var(--color-brand-gradient);
	border-radius: var(--radius-lg);
	padding: 56px 40px;
	text-align: center;
	color: #fff;
}

.cta-banner h2 {
	color: #fff;
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.88);
	max-width: 480px;
	margin: 0 auto 28px;
}

.cta-banner .btn-primary {
	background: #fff;
	color: var(--color-primary);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.cta-banner .btn-primary:hover {
	background: #f2f6ff;
}

/* Utility */

.text-center {
	text-align: center;
}

.mt-0 {
	margin-top: 0;
}

.bg-surface-section {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.badge-check {
	color: var(--color-success);
}

.badge-dash {
	color: var(--color-text-caption);
}

/* Responsive */

@media (max-width: 900px) {
	.hero .container {
		grid-template-columns: 1fr;
	}
	.hero-copy p.lead {
		max-width: none;
	}
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.split {
		grid-template-columns: 1fr;
	}
}

/* Acquisition landing page (lp/) - single-objective, minimal nav */

.lp-header .container {
	justify-content: space-between;
}

.lp-header .btn {
	padding: 10px 20px;
}

.lp-use-case {
	background: var(--color-bg-accent-1);
	border-radius: var(--radius-lg);
	padding: 32px;
	display: flex;
	gap: 24px;
	align-items: center;
}

.lp-use-case-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--color-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-card);
}

.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	padding: 12px 16px;
	display: none;
	box-shadow: 0 -8px 24px rgba(20, 22, 31, 0.08);
}

@keyframes lp-loop-scan {
	0%, 15% { opacity: 1; }
	22%, 100% { opacity: 0; }
}
@keyframes lp-loop-token {
	0%, 15% { opacity: 0; }
	22%, 40% { opacity: 1; }
	47%, 100% { opacity: 0; }
}
@keyframes lp-loop-called {
	0%, 40% { opacity: 0; }
	47%, 65% { opacity: 1; }
	72%, 100% { opacity: 0; }
}
@keyframes lp-loop-display {
	0%, 65% { opacity: 0; }
	72%, 90% { opacity: 1; }
	97%, 100% { opacity: 0; }
}
.lp-loop-frame {
	grid-area: 1 / 1;
	animation-duration: 8s;
	animation-iteration-count: infinite;
}
.lp-loop-frame.f1 { animation-name: lp-loop-scan; }
.lp-loop-frame.f2 { animation-name: lp-loop-token; }
.lp-loop-frame.f3 { animation-name: lp-loop-called; }
.lp-loop-frame.f4 { animation-name: lp-loop-display; }
.lp-loop-stage {
	display: grid;
	place-items: center;
}

@media (max-width: 720px) {
	.sticky-cta {
		display: block;
	}
	body {
		padding-bottom: 76px;
	}
	.lp-use-case {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 720px) {
	.price-value {
		flex-wrap: wrap;
	}
	.price-value .unit {
		flex-basis: 100%;
	}
	.main-nav {
		position: fixed;
		inset: 72px 0 0 0;
		background: var(--color-surface);
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 28px 24px;
		gap: 20px;
		transform: translateX(100%);
		transition: transform var(--transition-medium);
		z-index: 30;
	}
	.main-nav.open {
		transform: translateX(0);
	}
	.main-nav a {
		font-size: 18px;
	}
	.nav-toggle {
		display: inline-flex;
	}
	.header-actions .btn-secondary {
		display: none;
	}
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
	}
	.frame-strip,
	.frame-strip.frames-4 {
		grid-template-columns: 1fr;
	}
	.frame:not(:last-child)::after {
		content: none;
	}
	.steps {
		grid-template-columns: 1fr;
	}
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.compare-table {
		display: block;
		overflow-x: auto;
	}
	section {
		padding: 56px 0;
	}
}

.contact-form .form-row {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.contact-form label {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-muted);
}

.contact-form input,
.contact-form textarea {
	font-family: var(--font-family);
	font-size: 15px;
	color: var(--color-text);
	background: var(--color-surface);
	border: 1px solid var(--color-border-strong);
	border-radius: var(--radius-sm);
	padding: 11px 14px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px var(--color-primary-soft);
}
