/* ============================================================
   Contact landing — modern 2-column layout.
   All selectors prefixed `.cl` or `.cl-*` — zero global collision.
   Same design tokens as home-landing for visual consistency.
   ============================================================ */

.cl {
	--cl-max: 1200px;
	--cl-text: #0d1321;
	--cl-text-muted: #5b6574;
	--cl-text-soft: #8a93a3;
	--cl-surface: #ffffff;
	--cl-bg-subtle: #f7f8fb;
	--cl-bg-tint: #eef3ff;
	--cl-border: #e6e8ed;
	--cl-border-strong: #d6dae3;
	--cl-brand: #1552e3;
	--cl-brand-hover: #0e3fb2;
	--cl-brand-soft: #eef3ff;
	--cl-accent: #10b981;
	--cl-accent-soft: #ecfdf5;
	--cl-radius-sm: 10px;
	--cl-radius-md: 14px;
	--cl-radius-lg: 20px;
	--cl-shadow-1: 0 1px 2px rgba(13, 19, 33, 0.04);
	--cl-shadow-2: 0 1px 2px rgba(13, 19, 33, 0.04), 0 12px 32px rgba(13, 19, 33, 0.06);
	--cl-shadow-3: 0 2px 4px rgba(13, 19, 33, 0.04), 0 24px 60px rgba(13, 19, 33, 0.10);
	color: var(--cl-text);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.cl * { box-sizing: border-box; }

.cl-eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cl-brand);
	margin: 0 0 12px;
}

/* ============================================================
   HERO — compact, centered, dotted background
   ============================================================ */

.cl-hero {
	position: relative;
	padding: clamp(72px, 9vw, 96px) 24px clamp(48px, 6vw, 64px);
	overflow: hidden;
	background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}
.cl-hero__bg {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(21, 82, 227, 0.16) 1px, transparent 0);
	background-size: 22px 22px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
	pointer-events: none;
}
.cl-hero__wrap {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.cl-hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--cl-text);
	margin: 0 0 18px;
}
.cl-hero__subtitle {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	color: var(--cl-text-muted);
	line-height: 1.6;
	max-width: 640px;
	margin: 0 auto;
}

/* ============================================================
   MAIN — 2-column layout
   ============================================================ */

.cl-main {
	padding: 64px 24px 96px;
	background: linear-gradient(180deg, #ffffff 0%, var(--cl-bg-subtle) 100%);
}
.cl-main__wrap {
	max-width: var(--cl-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
	gap: 48px;
	align-items: start;
}

@media (max-width: 980px) {
	.cl-main { padding: 48px 16px 72px; }
	.cl-main__wrap {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ============================================================
   LEFT — info column (sticky on desktop)
   ============================================================ */

.cl-info {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
@media (max-width: 980px) {
	.cl-info {
		position: static;
		top: auto;
	}
}
.cl-info__header {
	margin-bottom: 4px;
}
.cl-info__title {
	font-size: clamp(1.375rem, 2.2vw, 1.625rem);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.015em;
	margin: 0;
}

/* Cards list */
.cl-info__cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cl-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: var(--cl-surface);
	border: 1px solid var(--cl-border);
	border-radius: var(--cl-radius-md);
	box-shadow: var(--cl-shadow-1);
	transition: transform 0.18s, box-shadow 0.2s, border-color 0.2s;
}
.cl-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--cl-shadow-2);
	border-color: var(--cl-border-strong);
}

.cl-card__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cl-brand-soft);
	color: var(--cl-brand);
	border-radius: var(--cl-radius-sm);
}

.cl-card__body {
	flex: 1;
	min-width: 0;
}
.cl-card__label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--cl-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 6px;
}
.cl-card__value {
	display: block;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--cl-text);
	text-decoration: none;
	margin: 0 0 4px;
	word-break: break-word;
}
a.cl-card__value:hover {
	color: var(--cl-brand);
}
.cl-card__value--address {
	font-style: normal;
	font-weight: 500;
	line-height: 1.45;
}
.cl-card__hint {
	font-size: 0.875rem;
	color: var(--cl-text-muted);
	margin: 0;
}

/* ============================================================
   RIGHT — form card
   ============================================================ */

.cl-form {
	background: var(--cl-surface);
	border: 1px solid var(--cl-border);
	border-radius: var(--cl-radius-lg);
	box-shadow: var(--cl-shadow-3);
	padding: 40px;
}
@media (max-width: 700px) {
	.cl-form { padding: 28px 22px; }
}
.cl-form__header {
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--cl-border);
}
.cl-form__title {
	font-size: clamp(1.375rem, 2.2vw, 1.75rem);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.015em;
	margin: 0 0 8px;
}
.cl-form__desc {
	font-size: 1rem;
	color: var(--cl-text-muted);
	line-height: 1.55;
	margin: 0;
}

/* ----- Style the embedded naviti form -----
   The custom form-builder renders unstyled HTML; we restyle it here so
   it visually matches the modern card. Selectors are scoped to .cl-form
   so other instances of the same shortcode stay untouched. */
.cl-form__body form,
.cl-form__body .naviti-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.cl-form__body label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--cl-text);
	margin: 0 0 6px;
	letter-spacing: -0.005em;
}
.cl-form__body input[type="text"],
.cl-form__body input[type="email"],
.cl-form__body input[type="tel"],
.cl-form__body input[type="url"],
.cl-form__body input[type="number"],
.cl-form__body input[type="date"],
.cl-form__body select,
.cl-form__body textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 0.9375rem;
	font-family: inherit;
	color: var(--cl-text);
	background: #fff;
	border: 1px solid var(--cl-border-strong);
	border-radius: var(--cl-radius-sm);
	transition: border-color 0.15s, box-shadow 0.15s;
	line-height: 1.4;
}
.cl-form__body textarea {
	min-height: 140px;
	resize: vertical;
}
.cl-form__body input:focus,
.cl-form__body select:focus,
.cl-form__body textarea:focus {
	outline: none;
	border-color: var(--cl-brand);
	box-shadow: 0 0 0 3px rgba(21, 82, 227, 0.18);
}
.cl-form__body input::placeholder,
.cl-form__body textarea::placeholder {
	color: var(--cl-text-soft);
}

.cl-form__body button[type="submit"],
.cl-form__body input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: inherit;
	line-height: 1;
	background: var(--cl-brand);
	color: #fff;
	border: 1px solid var(--cl-brand);
	border-radius: var(--cl-radius-sm);
	cursor: pointer;
	transition: background 0.15s, box-shadow 0.2s, transform 0.12s;
	box-shadow: 0 6px 20px rgba(21, 82, 227, 0.32);
	letter-spacing: -0.005em;
	align-self: flex-start;
}
.cl-form__body button[type="submit"]:hover,
.cl-form__body input[type="submit"]:hover {
	background: var(--cl-brand-hover);
	border-color: var(--cl-brand-hover);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(21, 82, 227, 0.42);
}

/* Checkbox / radio inline labels — keep them readable when present */
.cl-form__body input[type="checkbox"],
.cl-form__body input[type="radio"] {
	width: auto;
	margin-right: 6px;
	vertical-align: middle;
}

/* Error / success messages from the form-builder */
.cl-form__body .naviti-form-error,
.cl-form__body .error {
	color: #b91c1c;
	font-size: 0.875rem;
	margin-top: 4px;
}
.cl-form__body .naviti-form-success,
.cl-form__body .success {
	padding: 14px 16px;
	background: var(--cl-accent-soft);
	color: #064e3b;
	border: 1px solid rgba(16, 185, 129, 0.25);
	border-radius: var(--cl-radius-sm);
	font-size: 0.9375rem;
}

/* ============================================================
   BANNER — full-width demo CTA, end of page
   ============================================================ */

.cl-banner {
	padding: 0 24px 80px;
	background: linear-gradient(180deg, var(--cl-bg-subtle) 0%, var(--cl-bg-subtle) 100%);
}
.cl-banner__wrap {
	max-width: var(--cl-max);
	margin: 0 auto;
	padding: 36px 44px;
	background: linear-gradient(135deg, #0b1225 0%, #1b2a55 100%);
	border-radius: var(--cl-radius-lg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	box-shadow: 0 12px 40px rgba(11, 18, 37, 0.18);
	position: relative;
	overflow: hidden;
}
.cl-banner__wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
	background-size: 22px 22px;
	mask-image: radial-gradient(ellipse 60% 80% at 100% 50%, #000 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 60% 80% at 100% 50%, #000 0%, transparent 70%);
	pointer-events: none;
}
.cl-banner__text {
	position: relative;
	flex: 1;
	min-width: 0;
}
.cl-banner__title {
	font-size: clamp(1.25rem, 2.2vw, 1.625rem);
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: #fff;
	margin: 0 0 6px;
}
.cl-banner__desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.55;
	margin: 0;
	max-width: 640px;
}
.cl-banner__cta {
	position: relative;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #0b1225 !important;
	background: #fff;
	border-radius: var(--cl-radius-sm);
	text-decoration: none;
	transition: transform 0.18s, box-shadow 0.2s;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.cl-banner__cta svg {
	transition: transform 0.18s;
}
.cl-banner__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.cl-banner__cta:hover svg {
	transform: translateX(3px);
}

@media (max-width: 760px) {
	.cl-banner { padding: 0 16px 56px; }
	.cl-banner__wrap {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 24px;
		gap: 20px;
	}
	.cl-banner__cta {
		align-self: stretch;
		justify-content: center;
	}
}
