::-ms-expand {
	display: none;
}
:root {
	--bg-body: #ffffff;
	--border-color: var(--gray-200);
	--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e1;
	--gray-400: #94a3b8;
	--gray-50: #f8fafc;
	--gray-500: #64748b;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1e293b;
	--gray-900: #0f172a;
	--primary-100: #dbeafe;
	--primary-50: #eff6ff;
	--primary-500: #3b82f6;
	--primary-600: #2563eb;
	--primary-700: #1d4ed8;
	--primary-800: #1e40af;
	--primary-900: #1e3a8a;
	--shadow-lg: 0 16px 40px -18px rgb(15 23 42 / .34);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);
	--success: #10b981;
	--success-bg: #d1fae5;
	--success-text: #047857;
	--text-main: var(--gray-800);
	--text-muted: var(--gray-500);
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}
*,
::before,
::after {
	box-sizing: border-box;
}
a {
	color: inherit;
	text-decoration: none;
	transition: all .2s ease;
}
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}
body {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #ffffff 100%);
	color: var(--text-main);
	font-family: var(--font-family);
	line-height: 1.6;
	min-height: 100vh;
}
button {
	background: none;
	border: none;
	cursor: pointer;
}
button,
input,
textarea {
	font: inherit;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
[contenteditable]:focus {
	outline: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--gray-900);
	font-weight: 600;
	letter-spacing: -.03em;
	line-height: 1.15;
}
html {
	scroll-behavior: smooth;
}
img {
	display: block;
	height: auto;
	max-width: 100%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
}
main {
	display: block;
}
section[id] {
	scroll-margin-top: 104px;
}
table {
	border-collapse: collapse;
}
ul {
	list-style: none;
}
.accordion {
	display: grid;
	gap: 16px;
}
.accordion-content {
	color: var(--gray-600);
	max-height: 0;
	overflow: hidden;
	padding: 0 24px;
	transition: max-height .25s ease, padding-bottom .25s ease;
}
.accordion-header {
	align-items: center;
	color: var(--gray-900);
	display: flex;
	font-size: 1rem;
	font-weight: 600;
	justify-content: space-between;
	padding: 22px 24px;
	text-align: left;
	width: 100%;
}
.accordion-header i {
	color: var(--gray-500);
	font-size: 1rem;
	transition: transform .2s ease;
}
.accordion-item {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 18px;
	overflow: hidden;
}
.accordion-item.active .accordion-content {
	padding-bottom: 22px;
}
.accordion-item.active .accordion-header i {
	transform: rotate(180deg);
}
.alert {
	align-items: center;
	border-radius: 12px;
	display: flex;
	font-size: .9rem;
	font-weight: 500;
	gap: 10px;
	margin-bottom: 20px;
	padding: 14px 16px;
}
.alert-success {
	background: var(--success-bg);
	border: 1px solid rgba(16, 185, 129, .35);
	color: var(--success-text);
}
.badge {
	align-items: center;
	background: var(--primary-50);
	border-radius: 999px;
	color: var(--primary-700);
	display: inline-flex;
	font-size: .875rem;
	font-weight: 500;
	gap: 8px;
	padding: 6px 12px;
}
.bg-gray-50 {
	background-color: var(--gray-50);
}
.border-y {
	border-bottom: 1px solid var(--border-color);
	border-top: 1px solid var(--border-color);
}
.btn {
	align-items: center;
	border-radius: 10px;
	display: inline-flex;
	font-size: .95rem;
	font-weight: 500;
	gap: 10px;
	justify-content: center;
	padding: 12px 20px;
	transition: all .2s ease;
	white-space: nowrap;
}
.btn-block {
	display: flex;
	width: 100%;
}
.btn-ghost {
	color: var(--gray-600);
}
.btn-ghost:hover {
	background: var(--gray-50);
	color: var(--gray-900);
}
.btn-lg {
	font-size: 1rem;
	padding: 15px 28px;
}
.btn-outline {
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--gray-700);
}
.btn-outline:hover {
	background: var(--gray-50);
	border-color: var(--gray-300);
}
.btn-primary {
	background: var(--primary-600);
	box-shadow: var(--shadow-sm);
	color: #ffffff;
}
.btn-primary-dark {
	background: var(--primary-800);
	color: #ffffff;
}
.btn-primary-dark:hover {
	background: var(--primary-900);
}
.btn-primary:hover {
	background: var(--primary-700);
	transform: translateY(-1px);
}
.btn-secondary {
	background: var(--gray-100);
	color: var(--gray-900);
}
.btn-secondary:hover {
	background: var(--gray-200);
}
.btn-white {
	background: #ffffff;
	color: var(--primary-600);
}
.btn-white:hover {
	background: var(--gray-50);
}
.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all .2s ease;
}
.card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}
.card-img {
	border-bottom: 1px solid var(--border-color);
	height: 200px;
	object-fit: cover;
	width: 100%;
}
.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.client-logo {
	align-items: center;
	color: var(--gray-500);
	display: inline-flex;
	font-size: .95rem;
	font-weight: 600;
	gap: 10px;
}
.client-logo i {
	color: var(--gray-700);
	font-size: 1.25rem;
}
.contact-form-shell {
	display: grid;
	gap: 16px;
}
.contact-form-wrapper {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 24px;
	box-shadow: var(--shadow-sm);
	padding: 32px;
}
.contact-method {
	align-items: start;
	display: flex;
	gap: 16px;
}
.contact-method h4 {
	font-size: 1rem;
	margin-bottom: 4px;
}
.contact-methods {
	display: grid;
	gap: 28px;
}
.container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 24px;
	width: 100%;
}
.content-page {
	padding: 88px 0 96px 0;
}
.content-page--narrow .page-shell {
	max-width: 640px;
}
.content-preview {
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	position: relative;
	z-index: 1;
}
.content-split {
	position: relative;
}
.content-visual {
	position: relative;
}
.content-visual-bg {
	background: linear-gradient(135deg, #dbeafe, #eff6ff);
	border-radius: 30px;
	inset: 12px -12px -12px 12px;
	position: absolute;
	transform: rotate(3deg);
	z-index: 0;
}
.copy-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 24px;
}
.cta-section {
	background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
	color: #ffffff;
}
.desktop-nav {
	margin-left: auto;
	margin-right: 24px;
}
.faq-section {
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.feature-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	box-shadow: var(--shadow-sm);
	padding: 32px;
	transition: all .2s ease;
}
.feature-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.feature-copy-grid {
	margin-top: 24px;
}
.feature-copy-grid,
.contact-page-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-icon {
	align-items: center;
	background: var(--primary-50);
	border-radius: 14px;
	color: var(--primary-600);
	display: inline-flex;
	font-size: 1.35rem;
	height: 52px;
	justify-content: center;
	margin-bottom: 20px;
	width: 52px;
}
.feature-list {
	display: grid;
	gap: 14px;
}
.feature-list i {
	font-size: 1.125rem;
	margin-top: 4px;
}
.feature-list li {
	align-items: start;
	display: flex;
	gap: 12px;
}
.feature-list--stacked {
	margin-top: 8px;
}
.flex {
	display: flex;
}
.font-medium {
	font-weight: 500;
}
.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(148, 163, 184, .16);
	color: var(--gray-500);
	display: flex;
	font-size: .9rem;
	justify-content: space-between;
	padding-top: 24px;
}
.footer-grid-main {
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	margin-bottom: 48px;
}
.footer-links a,
.footer-brand p {
	color: var(--gray-400);
	font-size: .92rem;
}
.footer-links a:hover {
	color: #ffffff;
}
.footer-links h4 {
	color: #ffffff;
	font-size: 1rem;
	margin-bottom: 16px;
}
.footer-links ul {
	display: grid;
	gap: 12px;
}
.footer-note {
	text-align: right;
}
.form-group {
	display: grid;
	gap: 8px;
}
.form-input,
.form-textarea {
	background: #ffffff;
	border: 1px solid var(--gray-300);
	border-radius: 10px;
	box-shadow: var(--shadow-sm);
	color: var(--gray-900);
	padding: 12px 14px;
	transition: border-color .2s ease, box-shadow .2s ease;
	width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--gray-400);
}
.form-input:focus,
.form-textarea:focus {
	border-color: var(--primary-500);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .16);
	outline: none;
}
.form-label {
	color: var(--gray-700);
	font-size: .9rem;
	font-weight: 500;
}
.gap-16 {
	gap: 64px;
}
.gap-4 {
	gap: 16px;
}
.gap-8 {
	gap: 32px;
}
.grid {
	display: grid;
}
.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.header-actions {
	display: flex;
	gap: 8px;
}
.header-inner {
	align-items: center;
	display: flex;
	height: 72px;
	justify-content: space-between;
}
.hero {
	overflow: clip;
}
.hero-content {
	position: relative;
	z-index: 1;
}
.hero-grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
}
.hero-img {
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	position: relative;
	z-index: 1;
}
.hero-visual {
	position: relative;
}
.hero-visual::before {
	background: radial-gradient(circle at center, rgba(37, 99, 235, .15), transparent 65%);
	content: '';
	inset: -12%;
	position: absolute;
	z-index: 0;
}
.hidden {
	display: none;
}
.icon-box {
	align-items: center;
	background: var(--primary-50);
	border-radius: 14px;
	color: var(--primary-600);
	display: inline-flex;
	font-size: 1.25rem;
	height: 52px;
	justify-content: center;
	width: 52px;
}
.items-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.link-primary {
	color: var(--primary-600);
	font-size: .95rem;
	font-weight: 600;
	margin-top: auto;
}
.link-primary:hover {
	color: var(--primary-700);
	text-decoration: underline;
}
.logo {
	align-items: center;
	display: inline-flex;
	font-size: 1.25rem;
	font-weight: 700;
	gap: 10px;
	letter-spacing: -.03em;
}
.logo i {
	color: var(--primary-600);
	font-size: 1.45rem;
}
.logo--footer {
	color: #ffffff;
	margin-bottom: 24px;
}
.logo-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 48px;
	justify-content: center;
}
.max-w-2xl {
	max-width: 42rem;
}
.max-w-3xl {
	max-width: 48rem;
}
.mb-1 {
	margin-bottom: 4px;
}
.mb-10 {
	margin-bottom: 40px;
}
.mb-12 {
	margin-bottom: 48px;
}
.mb-16 {
	margin-bottom: 64px;
}
.mb-2 {
	margin-bottom: 8px;
}
.mb-4 {
	margin-bottom: 16px;
}
.mb-6 {
	margin-bottom: 24px;
}
.mb-8 {
	margin-bottom: 32px;
}
.ml-2 {
	margin-left: 8px;
}
.mobile-menu-toggle {
	color: var(--gray-700);
	display: none;
	font-size: 1.5rem;
	padding: 8px;
}
.mobile-nav-actions {
	display: grid;
	gap: 12px;
}
.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}
.mobile-nav-links a {
	color: var(--gray-800);
	display: block;
	font-size: 1.125rem;
	font-weight: 500;
	padding: 4px 0;
}
.mobile-nav-overlay {
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	box-shadow: var(--shadow-md);
	display: none;
	left: 0;
	padding: 24px 0 32px 0;
	position: absolute;
	top: 72px;
	width: 100%;
}
.mobile-nav-overlay.active {
	display: block;
}
.mt-4 {
	margin-top: 16px;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.nav-links {
	display: flex;
	gap: 32px;
}
.nav-links a {
	color: var(--gray-600);
	font-size: .95rem;
	font-weight: 500;
}
.nav-links a:hover {
	color: var(--gray-900);
}
.page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}
.page-eyebrow {
	color: var(--primary-700);
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.page-shell {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 28px;
	box-shadow: var(--shadow-sm);
	margin: 0 auto;
	max-width: 860px;
	padding: 40px;
}
.pb-24 {
	padding-bottom: 96px;
}
.popular-badge {
	background: var(--primary-600);
	border-radius: 999px;
	color: #ffffff;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .05em;
	padding: 8px 12px;
	position: absolute;
	right: 20px;
	text-transform: uppercase;
	top: 18px;
}
.price {
	align-items: flex-end;
	display: flex;
	gap: 8px;
}
.pricing-card {
	position: relative;
}
.pricing-card--popular {
	border-color: rgba(37, 99, 235, .35);
	box-shadow: 0 20px 40px -28px rgba(37, 99, 235, .55);
}
.pt-32 {
	padding-top: 128px;
}
.py-12 {
	padding-bottom: 48px;
	padding-top: 48px;
}
.py-24 {
	padding-bottom: 96px;
	padding-top: 96px;
}
.rich-text {
	display: grid;
	gap: 16px;
}
.section-header {
	margin-left: auto;
	margin-right: auto;
}
.site-footer {
	background: var(--gray-900);
	color: var(--gray-300);
	margin-top: 0;
	padding: 72px 0 32px 0;
}
.site-header {
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, .88);
	border-bottom: 1px solid rgba(226, 232, 240, .9);
	left: 0;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 50;
}
.social-links {
	display: flex;
	gap: 14px;
}
.social-links a {
	color: var(--gray-400);
	font-size: 1.25rem;
}
.social-links a:hover {
	color: #ffffff;
}
.text-blue-100 {
	color: #dbeafe;
}
.text-center {
	text-align: center;
}
.text-display {
	font-size: clamp(2.8rem, 5vw, 4.5rem);
	font-weight: 700;
	letter-spacing: -.06em;
	line-height: 1.02;
}
.text-h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
}
.text-h4 {
	font-size: 1.25rem;
	font-weight: 600;
}
.text-h5 {
	font-size: 1.125rem;
	font-weight: 600;
}
.text-lead {
	font-size: 1.25rem;
}
.text-lg {
	font-size: 1.125rem;
}
.text-muted {
	color: var(--text-muted);
}
.text-primary {
	color: var(--primary-600);
}
.text-sm {
	font-size: .875rem;
}
.text-white {
	color: #ffffff;
}
@media (max-width: 1100px){
	.desktop-nav {
		display: none;
	}
	.desktop-only {
		display: none;
	}
	.grid-cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hero-grid,
	.grid-cols-2,
	.contact-page-grid,
	.feature-copy-grid,
	.footer-grid-main {
		grid-template-columns: 1fr;
	}
	.mobile-menu-toggle {
		display: inline-flex;
	}
}
@media (max-width: 760px){
	.button-group,
	.page-actions,
	.footer-bottom {
		align-items: stretch;
		flex-direction: column;
	}
	.contact-form-wrapper,
	.page-shell,
	.feature-card,
	.card-body {
		padding: 24px;
	}
	.container {
		padding: 0 18px;
	}
	.grid-cols-3 {
		grid-template-columns: 1fr;
	}
	.header-inner {
		height: 68px;
	}
	.mobile-nav-overlay {
		top: 68px;
	}
	.pt-32 {
		padding-top: 112px;
	}
	.py-24 {
		padding-bottom: 72px;
		padding-top: 72px;
	}
	.text-display {
		font-size: clamp(2.35rem, 12vw, 3.4rem);
	}
}