.flowrage-contact__section {
	margin-top: 22px;
	padding: 34px 0;
}

.flowrage-contact__panel {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(214, 201, 184, 0.85);
	padding: 22px;
}

.flowrage-lead-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.flowrage-lead-modal[hidden] {
	display: none;
}

.flowrage-lead-modal.is-visible,
.flowrage-lead-modal.is-closing {
	visibility: visible;
}

.flowrage-lead-modal.is-visible {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 260ms ease, visibility 0s linear 0s;
}

.flowrage-lead-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 9, 23, 0.72);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 260ms ease;
}

.flowrage-lead-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(1320px, 100%);
	max-height: calc(100vh - 40px);
	overflow: auto;
	background: #ffffff;
	border: 1px solid rgba(214, 201, 184, 0.9);
	box-shadow: 0 36px 90px rgba(2, 10, 28, 0.28);
	opacity: 0;
	transform: translateY(24px) scale(0.985);
	transition: opacity 260ms ease, transform 260ms ease;
}

.flowrage-lead-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.06);
	color: #102335;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	padding: 0;
	text-align: center;
	z-index: 2;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.flowrage-lead-modal__close span {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	font-size: 0;
	line-height: 0;
	transform: none;
}

.flowrage-lead-modal__close span::before,
.flowrage-lead-modal__close span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 2.5px;
	background: currentColor;
	border-radius: 999px;
	transform-origin: center;
	translate: -50% -50%;
}

.flowrage-lead-modal__close span::before {
	transform: rotate(45deg);
}

.flowrage-lead-modal__close span::after {
	transform: rotate(-45deg);
}

.flowrage-lead-modal__close:hover,
.flowrage-lead-modal__close:focus-visible {
	background: linear-gradient(135deg, var(--fa-secondary), var(--fa-primary));
	color: #ffffff;
	transform: scale(1.04);
	outline: none;
}

.flowrage-lead-modal.is-visible .flowrage-lead-modal__backdrop {
	opacity: 1;
}

.flowrage-lead-modal.is-visible .flowrage-lead-modal__dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.flowrage-lead-modal__head {
	padding: 22px 28px 14px;
	text-align: center;
}

.flowrage-lead-modal__eyebrow {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fa-primary);
}

.flowrage-lead-modal__title {
	margin: 8px 0 0;
	font-size: clamp(1.8rem, 2.3vw, 2.65rem);
	line-height: 1.04;
	color: #e3342f;
}

.flowrage-lead-modal__sub {
	margin: 8px auto 0;
	max-width: 64ch;
	font-size: 0.98rem;
	line-height: 1.55;
	color: #4c6277;
}

.flowrage-lead-modal__body {
	padding: 0 28px 28px;
}

body.flowrage-modal-open {
	overflow: hidden;
}

.flowrage-pricing-lead {
	display: grid;
	grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
	border: 1px solid rgba(214, 201, 184, 0.92);
	max-height: none;
}

.flowrage-pricing-lead__offer {
	padding: 24px 22px;
	background:
		radial-gradient(circle at top left, rgba(227, 52, 47, 0.1), transparent 42%),
		linear-gradient(180deg, #fff9f8 0%, #ffffff 100%);
	border-right: 1px solid rgba(214, 201, 184, 0.82);
	overflow: visible;
}

.flowrage-pricing-lead__offer-eyebrow {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--fa-primary);
}

.flowrage-pricing-lead__offer-title {
	margin: 10px 0 0;
	font-size: clamp(1.55rem, 2vw, 2.1rem);
	line-height: 1.06;
	color: #102335;
}

.flowrage-pricing-lead__offer-text {
	margin: 10px 0 0;
	font-size: 0.94rem;
	line-height: 1.6;
	color: #52687b;
}

.flowrage-pricing-lead__offer-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.flowrage-pricing-lead__offer-list li {
	position: relative;
	padding-left: 22px;
	font-size: 0.92rem;
	line-height: 1.5;
	color: #15324b;
}

.flowrage-pricing-lead__offer-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.46em;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--fa-secondary), var(--fa-primary));
	box-shadow: 0 0 0 3px rgba(227, 52, 47, 0.1);
}

.flowrage-pricing-lead__cta-card {
	margin-top: 18px;
	padding: 18px 18px;
	border: 1px solid rgba(227, 52, 47, 0.26);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 245, 0.96));
	box-shadow: 0 16px 32px rgba(227, 52, 47, 0.08);
}

.flowrage-pricing-lead__cta-title {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.2;
	color: #102335;
}

.flowrage-pricing-lead__cta-text {
	margin: 8px 0 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #546b7f;
}

.flowrage-pricing-lead__cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 14px;
	padding: 0 18px;
	background: linear-gradient(90deg, var(--fa-secondary), var(--fa-primary));
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(227, 52, 47, 0.18);
}

.flowrage-pricing-lead__cta-button:hover,
.flowrage-pricing-lead__cta-button:focus-visible {
	filter: brightness(1.03);
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.flowrage-pricing-lead__associated {
	margin-top: 18px;
}

.flowrage-pricing-lead__associated-title {
	position: relative;
	padding-left: 14px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	color: #102335;
}

.flowrage-pricing-lead__associated-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	bottom: 1px;
	width: 4px;
	background: linear-gradient(180deg, var(--fa-secondary), var(--fa-primary));
}

.flowrage-pricing-lead__associated-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.flowrage-pricing-lead__associated-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(214, 201, 184, 0.76);
}

.flowrage-pricing-lead__associated-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.flowrage-pricing-lead__associated-item img {
	display: block;
	max-width: 100%;
	max-height: 34px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.flowrage-pricing-lead__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.flowrage-pricing-lead__trust span {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 6px 0 6px 18px;
	font-size: 0.92rem;
	font-weight: 700;
	color: #17324a;
	letter-spacing: 0.01em;
}

.flowrage-pricing-lead__trust span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 4px;
	background: linear-gradient(180deg, var(--fa-secondary), var(--fa-primary));
}

.flowrage-pricing-lead__form-wrap {
	padding: 20px 22px;
	background: #ffffff;
	overflow: visible;
}

.flowrage-pricing-lead__form-card {
	position: relative;
}

.flowrage-pricing-lead__form-head {
	margin-bottom: 12px;
}

.flowrage-pricing-lead__form-title {
	margin: 0;
	font-size: 1.22rem;
	line-height: 1.2;
	color: #102335;
}

.flowrage-pricing-lead__form-note {
	margin: 6px 0 0;
	font-size: 0.92rem;
	color: #5a7084;
	line-height: 1.5;
}

.flowrage-pricing-lead__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 14px;
}

.flowrage-pricing-lead__form .flowrage-contact__field {
	margin: 0;
}

.flowrage-pricing-lead__form .flowrage-contact__field label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.88rem;
	font-weight: 700;
	color: #18324b;
}

.flowrage-pricing-lead__form .flowrage-contact__field input,
.flowrage-pricing-lead__form .flowrage-contact__field select,
.flowrage-pricing-lead__form .flowrage-contact__field textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #cdd8e1;
	background: #ffffff;
	font-size: 0.96rem;
	line-height: 1.45;
	color: #102335;
}

.flowrage-pricing-lead__form textarea[name="about_project"] {
	min-height: 110px;
}

.flowrage-pricing-lead__form .flowrage-contact__recaptcha {
	margin-top: 12px;
}

.flowrage-pricing-lead__form .flowrage-contact__recaptcha-box {
	transform-origin: top left;
}

.flowrage-pricing-lead__form .flowrage-contact__field input[readonly] {
	background: #f6f8fb;
	color: #42586d;
}

.flowrage-pricing-lead__footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-top: 12px;
}

.flowrage-pricing-lead__footer .flowrage-contact__consent {
	margin-top: 4px;
	font-size: 0.86rem;
	line-height: 1.5;
}

.flowrage-pricing-lead__footer .flowrage-contact__submit {
	min-width: 220px;
	min-height: 46px;
	padding: 0 18px;
}

.flowrage-contact__panel::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--fa-secondary), var(--fa-primary));
}

.flowrage-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
	gap: 26px;
	align-items: start;
}

.flowrage-contact__form-card {
	background: transparent;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	overflow: visible;
	position: relative;
	min-width: 0;
}

.flowrage-contact__form-head {
	padding: 0;
}

.flowrage-contact__form-title {
	margin: 0;
	font-size: 1.6rem;
}

.flowrage-contact__form-note {
	margin: 8px 0 0;
	color: var(--fa-muted);
}

.flowrage-contact__notice {
	margin: 14px 0 0;
	padding: 10px 12px;
	border-radius: 0;
	border: 1px solid rgba(30, 58, 138, 0.18);
	background: rgba(30, 58, 138, 0.06);
	color: #1a2a3d;
	font-size: 0.95rem;
}

.flowrage-contact__form {
	padding: 18px 0 0;
	min-width: 0;
}

.flowrage-contact__honeypot {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.flowrage-contact__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 14px;
	margin-top: 6px;
}

.flowrage-contact__field label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: rgba(26, 42, 61, 0.8);
	margin: 0 0 6px;
}

.flowrage-contact__field input,
.flowrage-contact__field select,
.flowrage-contact__field textarea {
	width: 100%;
	border-radius: 0;
	border: 1px solid rgba(182, 190, 201, 0.95);
	padding: 12px 14px;
	font: inherit;
	background: #fff;
	color: #1a2a3d;
}

.flowrage-contact__field textarea {
	resize: vertical;
}

.flowrage-contact__field--full {
	grid-column: 1 / -1;
}

.flowrage-contact__field input:focus,
.flowrage-contact__field select:focus,
.flowrage-contact__field textarea:focus {
	outline: 2px solid rgba(233, 78, 25, 0.35);
	outline-offset: 1px;
}

.flowrage-contact__recaptcha {
	margin-top: 14px;
}

.flowrage-contact__recaptcha-box {
	background: #ffffff;
	min-height: 84px;
	display: flex;
	align-items: center;
	color: rgba(26, 42, 61, 0.6);
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

.flowrage-contact__recaptcha-placeholder {
	font-size: 13px;
}

.flowrage-contact__form-footer {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	min-width: 0;
}

.flowrage-contact__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	color: rgba(26, 42, 61, 0.75);
	font-size: 0.95rem;
	flex: 1 1 320px;
	min-width: 0;
}

.flowrage-contact__consent input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
}

.flowrage-contact__consent a {
	color: var(--fa-secondary, #1E3A8A);
	text-decoration: underline;
}

.flowrage-contact__consent span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.flowrage-contact__submit {
	margin-top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	min-width: 180px;
	padding: 0 18px;
	border: 0;
	border-radius: 0;
	background: var(--fa-primary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	flex: 0 0 auto;
}

.flowrage-contact__submit:hover {
	filter: brightness(0.96);
}

.flowrage-contact__info-card {
	position: relative;
	border-radius: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: #00103d;
	color: #ffffff;
	padding: 22px;
	box-shadow: none;
	overflow: hidden;
	min-height: 100%;
}

.flowrage-contact__info-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../images/footer/grid-box-dark.svg");
	background-repeat: repeat;
	background-size: 62px 60px;
	opacity: 0.18;
	pointer-events: none;
}

.flowrage-contact__info-card > * {
	position: relative;
	z-index: 1;
}

.flowrage-contact__info-head {
	display: grid;
	gap: 8px;
}

.flowrage-contact__info-card,
.flowrage-contact__info-card h2,
.flowrage-contact__info-card h3 {
	color: #ffffff;
}

.flowrage-contact__info-title {
	margin: 0;
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff !important;
}

.flowrage-contact__info-sub {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
	opacity: 1;
}

.flowrage-contact__info-items {
	margin-top: 18px;
	display: grid;
	gap: 10px;
}

.flowrage-contact__info-item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	text-decoration: none;
	color: #ffffff;
	padding: 8px 0;
	border-radius: 0;
	border: 0;
	background: transparent;
}

.flowrage-contact__info-item:hover {
	background: transparent;
}

.flowrage-contact__info-badge {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
}

.flowrage-contact__info-kicker {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.72);
}

.flowrage-contact__info-value {
	display: block;
	font-weight: 700;
	font-size: 0.98rem;
}

.flowrage-contact__social {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.flowrage-contact__social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #ffffff;
	text-decoration: none;
}

.flowrage-contact__social a:hover {
	background: rgba(255, 255, 255, 0.14);
}

.flowrage-contact__modes {
	margin-top: 64px;
	padding: 76px 0;
	border-radius: 0;
	color: #ffffff;
	position: relative;
	overflow: visible;
	z-index: 0;
}

.flowrage-contact__modes::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background-image: url("../images/footer/grid-box-dark.svg");
	background-repeat: repeat;
	background-size: 62px 60px;
	opacity: 0.18;
	pointer-events: none;
	z-index: 1;
}

.flowrage-contact__modes::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background: #0b0f18;
	pointer-events: none;
	z-index: 0;
}

.flowrage-contact__modes-inner {
	max-width: var(--fa-shell, 1280px);
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.flowrage-contact__modes-title {
	margin: 0;
	text-align: center;
	font-size: clamp(2.2rem, 4vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.flowrage-contact__modes-sub {
	margin: 10px auto 0;
	text-align: center;
	max-width: none;
	width: 100%;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
}

.flowrage-contact__modes-actions {
	margin-top: 22px;
	display: flex;
	justify-content: center;
}

.flowrage-contact__modes-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 28px;
	background: var(--fa-primary);
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
	border: 0;
	border-radius: 0;
}

.flowrage-contact__modes-button:hover {
	filter: brightness(0.96);
	color: #ffffff;
}

.flowrage-contact__modes-grid {
	margin-top: 26px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.flowrage-contact__mode-card {
	position: relative;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 0;
	padding: 34px 34px 32px;
	color: #ffffff;
}

.flowrage-contact__mode-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--fa-secondary), var(--fa-primary));
}

.flowrage-contact__mode-card h3 {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 600;
	color: #ffffff;
}

.flowrage-contact__mode-card p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
}

.flowrage-contact__map {
	margin-top: 34px;
}

.flowrage-contact__map-title {
	margin: 0 0 12px;
}

@media (max-width: 980px) {
	.flowrage-contact__grid {
		grid-template-columns: 1fr;
	}
	.flowrage-contact__modes-grid {
		grid-template-columns: 1fr;
	}
	.flowrage-contact__section {
		padding: 22px 0;
	}
	.flowrage-contact__panel {
		padding: 18px;
	}
	.flowrage-lead-modal {
		padding: 12px;
	}
	.flowrage-lead-modal__head {
		padding: 26px 18px 14px;
	}
	.flowrage-lead-modal__body {
		padding: 0 18px 18px;
	}
	.flowrage-pricing-lead {
		grid-template-columns: 1fr;
		max-height: none;
	}
	.flowrage-pricing-lead__offer {
		padding: 24px 20px;
		border-right: 0;
		border-bottom: 1px solid rgba(214, 201, 184, 0.82);
		overflow: visible;
	}
	.flowrage-pricing-lead__form-wrap {
		padding: 20px;
		overflow: visible;
	}
	.flowrage-pricing-lead__grid {
		grid-template-columns: 1fr;
	}
	.flowrage-pricing-lead__footer {
		flex-direction: column;
	}
	.flowrage-pricing-lead__associated-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.flowrage-contact__submit {
		width: 100%;
		min-width: 0;
	}
	.flowrage-contact__mode-card {
		padding: 26px 22px 24px;
	}
}

@media (max-width: 560px) {
	.flowrage-contact__section {
		padding: 18px 0;
	}
	.flowrage-contact__panel,
	.flowrage-pricing-lead__offer,
	.flowrage-pricing-lead__form-wrap {
		padding: 16px;
	}
	.flowrage-lead-modal {
		padding: 8px;
	}
	.flowrage-lead-modal__head {
		padding: 22px 14px 12px;
	}
	.flowrage-lead-modal__body {
		padding: 0 14px 14px;
	}
	.flowrage-pricing-lead__associated-grid {
		grid-template-columns: 1fr;
	}
	.flowrage-pricing-lead__footer .flowrage-contact__submit {
		width: 100%;
	}
}
