:root {
	--ffc-bg: #f5f7fa;
	--ffc-card: #fff;
	--ffc-navy: #0d1b2a;
	--ffc-text: #222a34;
	--ffc-muted: #5f6b77;
	--ffc-line: rgba(13, 27, 42, 0.11);
	--ffc-gold: #d8a546;
	--ffc-gold-soft: #f7f2e7;
	--ffc-container: 1280px;
}

.ff-contact,
.ff-contact * {
	box-sizing: border-box;
	border-radius: 0 !important;
}

.ff-contact {
	background:
		radial-gradient(circle at 8% 30%, rgba(216, 165, 70, 0.12), transparent 28%),
		linear-gradient(180deg, #f6f8fb 0%, #fff 58%, #f6f8fb 100%);
	color: var(--ffc-text);
	font-family: var(--ff-body);
	overflow: hidden;
}

.ffc-container {
	margin: 0 auto;
	max-width: var(--ffc-container);
	padding-left: clamp(20px, 4vw, 72px);
	padding-right: clamp(20px, 4vw, 72px);
	width: 100%;
}

.ffc-hero {
	padding: 150px 0 76px;
}

.ffc-hero__intro {
	margin: 0 auto 40px;
	max-width: 820px;
	text-align: center;
}

.ffc-badge {
	background: var(--ffc-gold-soft);
	border: 1px solid rgba(216, 165, 70, 0.35);
	color: var(--ffc-navy);
	display: inline-flex;
	font-family: var(--ff-heading);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 20px;
	min-height: 30px;
	padding: 7px 18px;
	text-transform: uppercase;
}

.ffc-hero h1 {
	color: #151a20;
	font-family: var(--ff-heading);
	font-size: clamp(42px, 5.4vw, 68px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.06;
	margin: 0;
}

.ffc-hero__intro p {
	color: var(--ffc-muted);
	font-size: 19px;
	line-height: 1.65;
	margin: 22px auto 0;
	max-width: 690px;
}

.ffc-grid {
	align-items: stretch;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	margin: 0 auto;
	max-width: 1160px;
}

.ffc-form-card,
.ffc-request,
.ffc-proof {
	background: var(--ffc-card);
	border: 1px solid var(--ffc-line);
	box-shadow: 0 24px 58px rgba(13, 27, 42, 0.09);
}

.ffc-form-card {
	padding: clamp(28px, 4vw, 44px);
}

.ffc-form-card h2 {
	color: #151a20;
	font-family: var(--ff-heading);
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 28px;
}

.ffc-form-card form {
	display: grid;
	gap: 22px;
}

.ffc-field-row {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ffc-form-card label {
	display: grid;
	gap: 8px;
}

.ffc-form-card label span {
	color: #394451;
	font-family: var(--ff-heading);
	font-size: 13px;
	font-weight: 800;
}

.ffc-form-card input,
.ffc-form-card select,
.ffc-form-card textarea {
	background: #f8fafc;
	border: 1px solid rgba(13, 27, 42, 0.15);
	color: var(--ffc-navy);
	font-size: 15px;
	outline: none;
	padding: 17px 18px;
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.ffc-form-card textarea {
	min-height: 150px;
	resize: vertical;
}

.ffc-form-card input:focus,
.ffc-form-card select:focus,
.ffc-form-card textarea:focus {
	background: #fff;
	border-color: var(--ffc-gold);
	box-shadow: 0 0 0 3px rgba(216, 165, 70, 0.16);
}

.ffc-form-card button,
.ffc-request a {
	align-items: center;
	background: var(--ffc-gold);
	border: 1px solid var(--ffc-gold);
	color: #142033;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--ff-heading);
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.03em;
	min-height: 56px;
	padding: 18px 34px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ffc-form-card button {
	margin-top: 4px;
	width: 100%;
}

.ffc-form-card button:hover,
.ffc-request a:hover {
	background: #ffdeaa;
	border-color: #ffdeaa;
	transform: translateY(-1px);
}

.ffc-side {
	display: grid;
	gap: 22px;
}

.ffc-request {
	background:
		linear-gradient(135deg, rgba(216, 165, 70, 0.96), rgba(179, 128, 41, 0.96)),
		var(--ffc-gold);
	color: #172033;
	min-height: 210px;
	padding: 34px;
	position: relative;
	overflow: hidden;
}

.ffc-request span {
	color: rgba(13, 27, 42, 0.75);
	display: block;
	font-family: var(--ff-heading);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.ffc-request h2 {
	color: #101820;
	font-family: var(--ff-heading);
	font-size: 25px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 12px;
	max-width: 380px;
}

.ffc-request p {
	color: rgba(13, 27, 42, 0.82);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 410px;
}

.ffc-request a {
	background: var(--ffc-navy);
	border-color: var(--ffc-navy);
	color: #fff;
	min-height: 48px;
	position: relative;
	z-index: 1;
}

.ffc-request a:hover {
	background: #142842;
	border-color: #142842;
	color: #fff;
}

.ffc-proof-list {
	display: grid;
	gap: 14px;
}

.ffc-proof {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: 56px minmax(0, 1fr);
	padding: 22px;
}

.ffc-proof > span {
	align-items: center;
	background: var(--ffc-gold-soft);
	color: var(--ffc-gold);
	display: flex;
	font-family: var(--ff-heading);
	font-size: 14px;
	font-weight: 800;
	height: 56px;
	justify-content: center;
	width: 56px;
}

.ffc-proof strong {
	color: #151a20;
	display: block;
	font-family: var(--ff-heading);
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 5px;
}

.ffc-proof p {
	color: var(--ffc-muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

.ffc-coverage {
	padding: 0 0 96px;
}

.ffc-map {
	background: #f8fafc;
	border: 1px solid var(--ffc-line);
	box-shadow: 0 26px 70px rgba(13, 27, 42, 0.1);
	height: clamp(320px, 34vw, 440px);
	margin: 0 auto;
	max-width: 1160px;
	overflow: hidden;
	position: relative;
}

.ffc-map iframe {
	border: 0;
	display: block;
	filter: grayscale(0.18) contrast(0.96) saturate(0.9);
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.ffc-map__card {
	background: rgb(255, 255, 255);
	border: 1px solid var(--ffc-line);
	box-shadow: 0 18px 44px rgba(13, 27, 42, 0.08);
	left: 0;
	max-width: 360px;
	padding: 28px;
	position: absolute;
	top: 0;
	z-index: 2;
}

.ffc-map__card span {
	color: var(--ffc-gold);
	display: block;
	font-family: var(--ff-heading);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.ffc-map__card strong {
	color: #151a20;
	display: block;
	font-family: var(--ff-heading);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 10px;
}

.ffc-map__card p {
	color: var(--ffc-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 980px) {
	.ffc-grid {
		grid-template-columns: 1fr;
	}

	.ffc-side {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.ffc-hero {
		padding-top: 132px;
	}

	.ffc-field-row {
		grid-template-columns: 1fr;
	}

	.ffc-map {
		height: 460px;
	}

	.ffc-map__card {
		left: 0;
		right: 20px;
	}
}
