/*
 * Styles principaux du theme.
 * A remplacer par votre design system.
 */

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-primary, Arial, sans-serif);
	color: var(--color-text);
	background: var(--color-white, #ffffff);
}

body.has-fixed-header {
	padding-top: 86px;
}

@media (max-width: 991px) {
	body.has-fixed-header {
		padding-top: 78px;
	}
}

body.admin-bar .sp-header {
	top: 32px;
}

.container {
	width: min(100% - 2rem, var(--container-max, 1280px));
	margin-inline: auto;
}

.btn {
	display: inline-block;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	text-decoration: none;
}

.btn-primary {
	background: var(--color-primary);
	color: #ffffff;
}

.btn-secondary {
	background: var(--color-accent);
	color: #ffffff;
}

.site-main {
	padding-top: 0;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

/* Header */
.sp-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.98), rgba(4, 27, 52, 0.92));
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: saturate(140%) blur(6px);
	overflow-x: clip;
}

.sp-header__inner {
	width: 100%;
	max-width: 1360px;
	margin-inline: auto;
	padding-inline: clamp(10px, 3vw, 16px);
	box-sizing: border-box;
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.sp-header__brand {
	flex: 0 0 auto;
	min-width: 0;
}

.sp-header__logo-link {
	display: inline-flex;
	align-items: center;
}

.sp-header__logo {
	width: clamp(150px, 46vw, 190px);
	height: auto;
	display: block;
}

.sp-header__toggle {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	cursor: pointer;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	border-radius: 10px;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	flex: 0 0 48px;
	margin-left: 0.35rem;
}

.sp-header__toggle-line {
	position: absolute;
	left: 12px;
	width: 24px;
	height: 2.5px;
	background: #ffffff !important;
	border-radius: 10px;
	transition: transform 0.25s ease, opacity 0.2s ease;
	transform-origin: center;
}

.sp-header__toggle-line:nth-child(1) {
	top: 15px;
}

.sp-header__toggle-line:nth-child(2) {
	top: 22px;
}

.sp-header__toggle-line:nth-child(3) {
	top: 29px;
}

.sp-header__toggle:hover,
.sp-header__toggle:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.44);
}

.sp-header__toggle[aria-expanded="true"] .sp-header__toggle-line:nth-child(1) {
	top: 22px;
	transform: rotate(45deg);
}

.sp-header__toggle[aria-expanded="true"] .sp-header__toggle-line:nth-child(2) {
	opacity: 0;
}

.sp-header__toggle[aria-expanded="true"] .sp-header__toggle-line:nth-child(3) {
	top: 22px;
	transform: rotate(-45deg);
}

.sp-header__nav {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--color-primary, #041b34);
	padding: 0.75rem 1rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	max-height: 0;
	overflow: hidden;
	transform: translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.3s ease, visibility 0s linear 0.3s;
}

.sp-header__nav.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	max-height: 420px;
	transform: translateY(0);
	transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.3s ease;
}

.sp-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.25rem;
}

.sp-header__menu a {
	color: #ffffff;
	text-decoration: none;
	padding: 0.625rem 0.5rem;
	display: block;
	border-radius: 0.4rem;
	font-size: var(--text-base, 15px);
	font-weight: 500;
}

.sp-header__menu a:hover,
.sp-header__menu .current-menu-item > a {
	background: rgba(255, 255, 255, 0.1);
}

.sp-header__cta {
	display: none;
}

.sp-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: #ffffff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.45rem 0.65rem;
	border-radius: 999px;
	white-space: nowrap;
}

.sp-header__phone-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #dbeafe;
}

.sp-header__phone-number {
	font-weight: 600;
	font-size: 0.9rem;
}

@media (min-width: 992px) {
	body.has-fixed-header {
		padding-top: 92px;
	}

	.sp-header__inner {
		min-height: 92px;
	}

	.sp-header__toggle {
		display: none;
	}

	.sp-header__nav {
		position: static;
		display: block;
		padding: 0;
		background: transparent;
		border: 0;
		margin-left: 1rem;
		flex: 1 1 auto;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		max-height: none;
		overflow: visible;
		transform: none;
		transition: none;
	}

	.sp-header__menu {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.2rem;
	}

	.sp-header__menu a {
		padding: 0.55rem 0.75rem;
		font-size: var(--text-small, 14px);
	}

	.sp-header__cta {
		display: block;
		flex: 0 0 auto;
	}
}

@media (max-width: 782px) {
	body.admin-bar .sp-header {
		top: 46px;
	}
}

/* Footer */
.sp-footer {
	margin-top: 3rem;
	background: #041b34;
	color: #f8fafc;
	padding: 2rem 0 2.5rem;
}

.sp-footer a {
	color: #e2e8f0;
	text-decoration: none;
}

.sp-footer a:hover {
	color: #ffffff;
}

.sp-footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-footer__logo {
	width: 170px;
	height: auto;
	display: block;
}

.sp-footer__phone-box {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 0.6rem 0.8rem;
	border-radius: 999px;
}

.sp-footer__phone-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--color-accent, #007aff);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.sp-footer__phone-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	display: block;
}

.sp-footer__phone-text {
	display: grid;
}

.sp-footer__phone-text strong {
	font-size: 0.78rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.sp-footer__content {
	padding-top: 1.7rem;
	display: grid;
	gap: 1.5rem;
}

.sp-footer__col {
	min-width: 0;
}

.sp-footer__title {
	margin: 0 0 0.85rem;
	padding-bottom: 0.55rem;
	font-size: 1.25rem;
	color: #e2e8f0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	text-transform: uppercase;
}

.sp-footer__about {
	margin: 0;
	line-height: 1.7;
	font-size: 1rem;
	color: #d6dfeb;
	max-width: 38ch;
}

.sp-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.55rem;
}

.sp-footer__menu a {
	font-size: 1rem;
}

.sp-footer__bottom {
	padding-top: 1.5rem;
	display: flex;
	justify-content: center;
}

.sp-footer__phone-pill {
	background: linear-gradient(90deg, #1d4ed8, #0ea5ff);
	color: #ffffff;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.7rem 1.8rem;
	display: inline-flex;
}

@media (min-width: 900px) {
	.sp-footer__content {
		grid-template-columns: 1.35fr 1fr 1fr 1fr;
		gap: 2rem;
	}
}

/* 404 */
.sp-404 {
	padding-top: 0;
}

.sp-404__hero {
	position: relative;
	min-height: 35vh;
	display: grid;
	align-items: center;
	background-color: #041b34;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.sp-404__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.78), rgba(4, 27, 52, 0.92));
}

.sp-404__hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ffffff;
	padding: 5rem 0 4rem;
}

.sp-404__kicker {
	margin: 0 0 0.3rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.sp-404__code {
	margin: 0;
	font-size: clamp(3.2rem, 11vw, 9rem);
	line-height: 1;
	font-weight: 700;
}

.sp-404__title {
	margin: 0.4rem 0 0.75rem;
	font-size: clamp(1.7rem, 4.3vw, 2.7rem);
	text-transform: uppercase;
}

.sp-404__description {
	max-width: 60ch;
	margin: 0 auto;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.sp-404__home-btn {
	margin-top: 1.7rem;
}

.sp-404__reassurance {
	background: #ffffff;
	padding: 1.25rem 0 0.5rem;
}

.sp-404__reassurance-grid {
	display: grid;
	gap: 0.9rem;
}

.sp-404__item {
	padding: 1rem 1.1rem;
	border: 1px solid #dbeafe;
	border-radius: 12px;
	background: #f8fbff;
}

.sp-404__item-image {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 0.75rem;
}

.sp-404__item h2 {
	margin: 0;
	color: #041b34;
	font-size: 1.05rem;
}

.sp-404__item p {
	margin: 0.25rem 0 0;
	color: #334155;
}

@media (min-width: 900px) {
	.sp-404__hero {
		min-height: 42vh;
		background-size: 340px auto;
	}

	.sp-404__reassurance-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
	}
}

/* Blog single */
.sp-blog-single__hero {
	position: relative;
	min-height: 28vh;
	background-color: #041b34;
	background-size: cover;
	background-position: center;
	display: grid;
	align-items: end;
}

.sp-blog-single__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.5), rgba(4, 27, 52, 0.82));
}

.sp-blog-single__hero-inner {
	position: relative;
	z-index: 1;
	padding: 1rem 0 1.2rem;
}

.sp-blog-single__title {
	margin: 0;
	color: #ffffff;
	text-transform: uppercase;
	font-size: clamp(1.5rem, 4.5vw, 2.4rem);
}

.sp-blog-single__content-wrap {
	max-width: 970px;
	padding-top: 1.1rem;
}

.sp-blog-single__featured img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.sp-blog-single__article .entry-content {
	color: #324a6d;
	font-size: 1rem;
	line-height: 1.7;
}

.sp-blog-single__post-nav {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #d1d9e2;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.sp-blog-single__post-nav a {
	color: #1c244b;
	font-style: italic;
	text-decoration: underline;
}

.sp-blog-single__share {
	margin-top: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.sp-blog-single__share-label {
	color: #0a1b2b;
}

.sp-blog-single__share-links {
	display: inline-flex;
	gap: 1rem;
}

.sp-blog-single__share-links a {
	color: #467ff7;
	text-decoration: none;
}

.sp-blog-single__related {
	margin-top: 2rem;
	margin-bottom: 4rem;
}

.sp-blog-single__related-title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	text-align: center;
	color: #0a1b2b;
}

.sp-blog-single__related-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.3rem;
}

.sp-blog-single__card {
	background: #ffffff;
	border: 1px solid #e1e6ef;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-blog-single__card:hover {
	transform: translateY(-4px);
	border-color: #f7bf23;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.sp-blog-single__card-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.sp-blog-single__card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.sp-blog-single__card:hover .sp-blog-single__card-thumb img {
	transform: scale(1.06);
}

.sp-blog-single__card-content {
	padding: 1rem;
	display: grid;
	gap: 0.5rem;
	align-content: start;
}

.sp-blog-single__card-date {
	margin: 0;
	font-size: 0.75rem;
	color: #7b8794;
	text-transform: uppercase;
}

.sp-blog-single__card-title {
	margin: 0;
	font-size: 1.25rem;
}

.sp-blog-single__card-title a {
	color: #0a1b2b;
	text-decoration: none;
}

.sp-blog-single__card-excerpt {
	margin: 0;
	color: #334155;
}

.sp-blog-single__card-link {
	margin-top: 0.35rem;
	font-size: 0.86rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ffffff;
	background: #007aff;
	border-radius: 6px;
	padding: 0.5rem 0.85rem;
	text-decoration: none;
	display: inline-flex;
	width: fit-content;
}

@media (min-width: 900px) {
	.sp-blog-single__related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
	}
}

/* Blog archive */
.sp-blog-archive__hero {
	position: relative;
	min-height: 26vh;
	background-color: #041b34;
	background-size: cover;
	background-position: center;
	display: grid;
	align-items: end;
}

.sp-blog-archive__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.5), rgba(4, 27, 52, 0.82));
}

.sp-blog-archive__hero-inner {
	position: relative;
	z-index: 1;
	padding: 1rem 0 1.2rem;
}

.sp-blog-archive__title {
	margin: 0;
	color: #ffffff;
	text-transform: uppercase;
	font-size: clamp(2rem, 4vw, 2.6rem);
	text-align: center;
}

.sp-blog-archive__list-section {
	padding: 1.2rem 0 5rem;
}

.sp-blog-archive__grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.4rem;
}

.sp-blog-archive__card {
	background: #ffffff;
	border: 1px solid #e1e6ef;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sp-blog-archive__card:hover {
	transform: translateY(-4px);
	border-color: #f7bf23;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.sp-blog-archive__card-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.sp-blog-archive__card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.sp-blog-archive__card:hover .sp-blog-archive__card-thumb img {
	transform: scale(1.06);
}

.sp-blog-archive__card-content {
	padding: 1rem;
	display: grid;
	gap: 0.55rem;
	align-content: start;
}

.sp-blog-archive__card-date {
	margin: 0;
	font-size: 0.75rem;
	color: #7b8794;
	text-transform: uppercase;
}

.sp-blog-archive__card-title {
	margin: 0;
	font-size: 1.25rem;
}

.sp-blog-archive__card-title a {
	color: #0a1b2b;
	text-decoration: none;
}

.sp-blog-archive__card-excerpt {
	margin: 0;
	color: #334155;
}

.sp-blog-archive__card-link {
	margin-top: 0.35rem;
	font-size: 0.86rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ffffff;
	background: #007aff;
	border-radius: 6px;
	padding: 0.5rem 0.85rem;
	text-decoration: none;
	display: inline-flex;
	width: fit-content;
}

.sp-blog-archive__pagination {
	margin-top: 2.2rem;
}

.sp-blog-archive__pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.sp-blog-archive__pagination .page-numbers {
	padding: 0.45rem 0.7rem;
	border-radius: 6px;
	border: 1px solid #d7dfeb;
	color: #0a1b2b;
	text-decoration: none;
}

.sp-blog-archive__pagination .current {
	background: #0a1b2b;
	color: #ffffff;
	border-color: #0a1b2b;
}

.sp-blog-archive__empty {
	margin-top: 2rem;
}

@media (min-width: 900px) {
	.sp-blog-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.2rem 3rem;
	}
}

@media (min-width: 1200px) {
	.sp-blog-archive__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}
}

/* Ville page conversion */
.sp-city-page__hero {
	background: linear-gradient(180deg, #041b34, #0a2a4d);
	color: #ffffff;
	padding: 3rem 0;
}

.sp-city-page__hero h1 {
	margin: 0.25rem 0 0.5rem;
	font-size: clamp(2rem, 5vw, 3rem);
	text-transform: uppercase;
}

.sp-city-page__kicker {
	margin: 0;
	color: #bfdbfe;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.sp-city-page__subtitle {
	max-width: 70ch;
	color: rgba(255, 255, 255, 0.92);
}

.sp-city-page__badges {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: grid;
	gap: 0.5rem;
}

.sp-city-page__badges li {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	padding: 0.45rem 0.8rem;
	display: inline-flex;
	width: fit-content;
}

.sp-city-page__actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.sp-city-page__services,
.sp-city-page__zone,
.sp-city-page__contact {
	padding: 2.2rem 0;
}

.sp-city-page__services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.sp-city-page__service-card {
	border: 1px solid #dbe3ef;
	border-radius: 10px;
	background: #ffffff;
	padding: 1rem;
	text-align: center;
}

.sp-city-page__service-icon {
	width: 42px;
	height: 42px;
	object-fit: contain;
	margin: 0 auto 0.5rem;
}

.sp-city-page__service-card h3 {
	margin: 0;
	font-size: 1.1rem;
}

.sp-city-page__price {
	margin: 0.35rem 0 0;
	color: #1d4ed8;
	font-weight: 700;
}

.sp-city-page__zone {
	background: #f8fafc;
}

/* Form readability fix */
.contact-form__form input,
.contact-form__form textarea,
.contact-form__form select {
	width: 100%;
	background: #ffffff;
	color: #0f172a;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 0.68rem 0.8rem;
}

.contact-form__form label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
}

.contact-form__field-group {
	margin-bottom: 0.8rem;
}

@media (min-width: 900px) {
	.sp-city-page__services-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Global button system (theme + Elementor) */
.btn,
a.btn,
.elementor a.elementor-button,
.elementor .elementor-button,
input[type="submit"],
button.btn-primary,
button.btn-secondary {
	background-color: var(--color-accent, #007aff);
	color: var(--color-white, #ffffff);
	font-family: var(--font-primary, "Sora", sans-serif);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.2px;
	line-height: 1.2;
	border: 1px solid transparent;
	border-radius: 5px;
	padding: 0.85rem 1.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
	box-shadow: 0 6px 18px rgba(0, 122, 255, 0.2);
}

.btn:hover,
a.btn:hover,
.elementor a.elementor-button:hover,
.elementor .elementor-button:hover,
input[type="submit"]:hover,
button.btn-primary:hover,
button.btn-secondary:hover {
	background-color: #0f8dff;
	color: var(--color-white, #ffffff);
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 122, 255, 0.32);
}

.btn:focus-visible,
a.btn:focus-visible,
.elementor a.elementor-button:focus-visible,
.elementor .elementor-button:focus-visible,
input[type="submit"]:focus-visible,
button.btn-primary:focus-visible,
button.btn-secondary:focus-visible {
	outline: 2px solid #f7bf23;
	outline-offset: 2px;
}

.btn-primary,
.btn-secondary {
	background-color: var(--color-accent, #007aff);
	color: var(--color-white, #ffffff);
}

/* 404 hero refinements */
.sp-404__hero {
	min-height: clamp(420px, 72vh, 760px);
	background-position: center center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.sp-404__hero-inner {
	padding: clamp(4rem, 9vw, 7.2rem) 0;
}

.sp-404__overlay {
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.62), rgba(4, 27, 52, 0.88));
}

/* Global floating contact (mobile-first) */
.sp-floating-contact {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: calc(16px + env(safe-area-inset-bottom));
	transform: none;
	z-index: 9999;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

@media (max-width: 991px) {
	body.has-cookie-widget .sp-floating-contact {
		left: 78px;
		right: 12px;
	}

	body.is-mobile-menu-open {
		overflow: hidden;
	}
}

.sp-floating-contact__call,
.sp-floating-contact__wa {
	pointer-events: auto;
}

.sp-floating-contact__call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.8rem 1rem;
	border-radius: 999px;
	background: #007aff;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.2px;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	flex: 0 1 auto;
	width: auto;
	max-width: 270px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	gap: 0.45rem;
	animation: sp-call-pulse 2.2s ease-in-out infinite;
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.sp-floating-contact__call-icon {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.sp-floating-contact__call-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.sp-floating-contact__call-text {
	overflow: hidden;
	text-overflow: ellipsis;
}

.sp-floating-contact__wa {
	position: static;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: #25d366;
	color: #ffffff;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.sp-floating-contact__wa-icon {
	width: 34px;
	height: 34px;
	object-fit: contain;
	display: block;
}

.sp-floating-contact__call:hover,
.sp-floating-contact__wa:hover {
	filter: brightness(1.05);
	animation-play-state: paused;
}

.sp-floating-contact__call:hover,
.sp-floating-contact__call:focus {
	background: #0f8dff;
	color: #ffffff !important;
}

.sp-floating-contact__wa:hover,
.sp-floating-contact__wa:focus {
	background: #1fb85a;
	color: #ffffff !important;
	transform: translateY(-1px);
}

@media (min-width: 992px) {
	.sp-floating-contact {
		left: auto;
		right: 20px;
		bottom: 20px;
		max-width: none;
	}
}

@keyframes sp-call-pulse {
	0%, 100% {
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
		transform: translateY(0);
	}
	50% {
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
		transform: translateY(-1px);
	}
}

/* Visual fixes requested */
.sp-header {
	width: 100%;
}

.sp-header__inner {
	max-width: 1360px;
}

@media (max-width: 360px) {
	.sp-header__logo {
		width: 142px;
	}
}

.sp-header__toggle {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.26) !important;
	box-shadow: 0 6px 16px rgba(2, 6, 23, 0.16);
}

.sp-header__menu a {
	color: #ffffff !important;
}

.sp-header__menu a:hover,
.sp-header__menu a:focus,
.sp-header__menu a:active {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.14);
}

.sp-header__menu .current-menu-item > a,
.sp-header__menu .current_page_item > a {
	color: #ffffff !important;
	background: rgba(70, 127, 247, 0.28);
}

.sp-header__menu a:empty {
	display: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.sp-header__phone:hover,
.sp-header__phone:focus {
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.32);
}

.sp-header__phone {
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.sp-header__phone:hover {
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
	transform: translateY(-1px);
}

.sp-footer__phone-box {
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.sp-footer__phone-box:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	transform: translateY(-1px);
}

/* Form design upgrade */
.contact-form {
	padding: 1rem 0;
}

.contact-form .container {
	background: #ffffff;
	border: 1px solid #dbe3ef;
	border-radius: 14px;
	padding: 0.95rem 0.9rem 1rem;
	box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
}

.contact-form__intro {
	color: #475569;
	margin-top: 0.2rem;
}

.contact-form__form {
	margin-top: 0.55rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.55rem;
}

.contact-form__field-group {
	display: grid;
	gap: 0.3rem;
}

.contact-form__field-group label {
	font-size: 0.84rem;
	font-weight: 700;
	color: #0f172a;
}

.contact-form__form input,
.contact-form__form textarea,
.contact-form__form select {
	background: #ffffff !important;
	color: #0f172a !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 10px !important;
	padding: 0.62rem 0.76rem !important;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form__select-wrap {
	position: relative;
}

.contact-form__select-wrap select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 2.4rem !important;
}

.contact-form__select-caret {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	width: 0.72rem;
	height: 0.72rem;
	border-right: 2px solid #334155;
	border-bottom: 2px solid #334155;
	transform: translateY(-60%) rotate(45deg);
	pointer-events: none;
}

.contact-form__form input::placeholder,
.contact-form__form textarea::placeholder {
	color: #64748b !important;
}

.contact-form__form input:focus,
.contact-form__form textarea:focus,
.contact-form__form select:focus {
	outline: none;
	border-color: #60a5fa !important;
	box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}

.contact-form__form textarea {
	min-height: 92px;
	resize: vertical;
}

.contact-form__actions {
	margin-top: 0.15rem;
}

.contact-form__submit {
	min-width: 220px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.contact-form__submit-icon {
	width: 15px;
	height: 15px;
	display: inline-flex;
	flex: 0 0 auto;
}

.contact-form__submit-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

@media (min-width: 900px) {
	.contact-form__form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 0.7rem;
		row-gap: 0.65rem;
	}

	.contact-form__field-group--full {
		grid-column: 1 / -1;
	}

	.contact-form__field-group--half {
		grid-column: span 1;
	}

	.contact-form__form input[type="hidden"] {
		display: none;
	}

	.contact-form__actions {
		grid-column: 1 / -1;
	}
}

.single-landing .landing-hero,
.single-landing .landing-urgency,
.single-landing .landing-benefits,
.single-landing .landing-social-proof,
.single-landing .landing-intervention-area,
.single-landing .landing-main-content,
.single-landing .landing-faq,
.single-landing .landing-final-cta {
	padding: 2.6rem 0;
}

.single-landing .landing-hero {
	background: linear-gradient(180deg, #041b34, #0d2f55);
	color: #ffffff;
}

.single-landing .landing-hero h1,
.single-landing .landing-hero__subtitle,
.single-landing .landing-hero__kicker {
	color: #ffffff;
}

/* Service page redesign */
.sp-service-page__hero {
	position: relative;
	min-height: 38vh;
	display: grid;
	align-items: end;
	background-color: #041b34;
	background-size: cover;
	background-position: center;
}

.sp-service-page__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.55), rgba(4, 27, 52, 0.86));
}

.sp-service-page__hero-inner {
	position: relative;
	z-index: 1;
	color: #ffffff;
	padding: 2rem 0 2.3rem;
}

.sp-service-page__hero-icon {
	width: 54px;
	height: 54px;
	object-fit: contain;
	margin-bottom: 0.5rem;
}

.sp-service-page__hero-inner h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.2rem);
}

.sp-service-page__hero-subtitle {
	margin: 0.6rem 0 0;
	max-width: 68ch;
	color: rgba(255, 255, 255, 0.92);
}

.sp-service-page__hero-meta {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.sp-service-page__badge {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	padding: 0.45rem 0.8rem;
	font-size: 0.92rem;
}

.sp-service-page__hero-actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.sp-service-page__content {
	padding: 1.6rem 0 0.6rem;
}

.sp-service-page__article .entry-content {
	color: #334155;
	font-size: 1.03rem;
	line-height: 1.75;
}

.sp-service-page__highlights {
	padding: 1rem 0 1.8rem;
}

.sp-service-page__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.sp-service-page__card {
	background: #ffffff;
	border: 1px solid #dbe3ef;
	border-radius: 12px;
	padding: 1rem 1.1rem;
	box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}

.sp-service-page__card h2 {
	margin: 0 0 0.75rem;
	font-size: 1.35rem;
	color: #041b34;
}

.sp-service-page__card ul {
	margin: 0;
	padding-left: 1.05rem;
	display: grid;
	gap: 0.45rem;
}

.sp-service-page__zones {
	padding: 1rem 0 2rem;
	background: #f8fafc;
}

.sp-service-page__zones h2 {
	margin: 0 0 0.9rem;
	font-size: 1.6rem;
}

.sp-service-page__zones-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
}

.sp-service-page__zone-card {
	display: block;
	border: 1px solid #d3deed;
	border-radius: 10px;
	padding: 0.9rem 1rem;
	text-decoration: none;
	color: #041b34;
	background: #ffffff;
}

.sp-service-page__zone-card span {
	font-weight: 700;
	display: block;
}

.sp-service-page__zone-card small {
	color: #475569;
}

.sp-service-page__contact {
	padding: 2rem 0 2.6rem;
}

.sp-service-page__contact h2 {
	margin: 0 0 0.9rem;
}

@media (min-width: 992px) {
	.sp-service-page__hero {
		min-height: 46vh;
	}

	.sp-service-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.2rem;
	}

	.sp-service-page__zones-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.sp-header__toggle {
		display: none !important;
	}
}

.sp-footer {
	padding: 1.8rem 0 1.8rem;
	margin-top: 0 !important;
	clear: both;
}

.sp-footer__top {
	padding-bottom: 1rem;
}

.sp-footer__content {
	padding-top: 1.2rem;
	align-items: start;
}

.sp-footer__col {
	display: grid;
	align-content: start;
	gap: 0.35rem;
}

.sp-footer__title {
	margin-bottom: 0.55rem;
}

.sp-footer__menu {
	gap: 0.35rem;
}

.sp-footer__bottom {
	padding-top: 0.9rem;
}

/* Avoid white gaps before footer */
.site-main > *:last-child {
	margin-bottom: 0 !important;
}

.site-main > *:first-child {
	margin-top: 0 !important;
}

@media (min-width: 900px) {
	.sp-footer__content {
		grid-template-columns: 1.35fr 1fr 1fr 1fr;
		gap: 1.4rem;
	}
}

/* City page redesign v2 */
.sp-city-page__hero {
	position: relative;
	overflow: hidden;
}

.sp-city-page__hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
}

.sp-city-page__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.72), rgba(4, 27, 52, 0.9));
}

.sp-city-page__hero-inner {
	position: relative;
	z-index: 1;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.sp-city-page__hero h1 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	margin-bottom: 0.7rem;
}

.sp-city-page__hero h1,
.sp-city-page__hero .sp-city-page__subtitle,
.sp-city-page__hero .sp-city-page__kicker {
	color: #ffffff;
}

.sp-city-page__hero .sp-city-page__subtitle {
	max-width: 68ch;
	color: rgba(255, 255, 255, 0.92);
}

.sp-city-page__badges {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.55rem;
	margin-top: 1rem;
}

.sp-city-page__badge-card {
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 12px;
	padding: 0.65rem 0.85rem;
	display: grid;
	gap: 0.15rem;
}

.sp-city-page__badge-card strong {
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.sp-city-page__badge-card span {
	color: rgba(255, 255, 255, 0.95);
}

.sp-city-page__actions {
	margin-top: 1rem;
}

.sp-city-page__actions .btn {
	min-width: 190px;
}

.sp-city-page__services {
	padding: 2rem 0;
}

.sp-city-page__services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	margin-top: 1rem;
}

.sp-city-page__service-card {
	border: 1px solid #dbe4f0;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 10px 25px rgba(2, 6, 23, 0.05);
}

.sp-city-page__service-link {
	display: block;
	padding: 1rem;
	color: inherit;
	text-decoration: none;
}

.sp-city-page__service-link:hover,
.sp-city-page__service-link:focus-visible {
	transform: translateY(-1px);
}

.sp-city-page__service-icon {
	width: 44px;
	height: 44px;
	object-fit: contain;
	margin-bottom: 0.55rem;
}

.sp-city-page__service-card h3 {
	margin: 0 0 0.3rem;
	font-size: 1.08rem;
	color: #041b34;
}

.sp-city-page__price {
	margin: 0;
	font-weight: 700;
	color: #0f8dff;
}

.sp-city-page__zone {
	background: #f8fafc;
	padding: 2rem 0;
}

.sp-city-page__zone-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
	margin-top: 0.9rem;
}

.sp-city-page__zone-text {
	background: #ffffff;
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	padding: 1rem 1.05rem;
	color: #334155;
	line-height: 1.75;
}

.sp-city-page__zone-aside {
	background: linear-gradient(180deg, #041b34, #0d2f55);
	border-radius: 12px;
	padding: 1rem 1.05rem;
	display: grid;
	gap: 0.55rem;
	align-content: start;
}

.sp-city-page__zone-aside h3 {
	color: #ffffff;
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
}

.sp-city-page__zone-aside .btn {
	width: 100%;
	justify-content: center;
}

.sp-city-page__contact {
	padding: 2rem 0 2.6rem;
}

.sp-city-page__form-section {
	background: #f8fafc;
}

.sp-city-page__form-section .contact-form .container {
	max-width: 980px;
}

@media (min-width: 768px) {
	.sp-city-page__badges {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sp-city-page__services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-city-page__zone-grid {
		grid-template-columns: 1.2fr 0.8fr;
		align-items: start;
	}
}

@media (min-width: 1100px) {
	.sp-city-page__services-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Landing page redesign v2 */
.single-landing .section {
	padding: 2.3rem 0;
}

.single-landing .landing-hero {
	position: relative;
	overflow: hidden;
	padding: 0;
}

.landing-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
}

.landing-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 27, 52, 0.7), rgba(4, 27, 52, 0.92));
}

.landing-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	padding-top: 2.3rem;
	padding-bottom: 2.3rem;
}

.landing-hero__content h1 {
	color: #ffffff;
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.2rem);
}

.landing-hero__kicker {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-size: 0.82rem;
}

.landing-hero__subtitle {
	color: rgba(255, 255, 255, 0.92);
	max-width: 65ch;
	margin-top: 0.75rem;
}

.landing-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1rem;
}

.landing-hero__actions .btn {
	min-width: 190px;
}

.landing-hero__trust-list {
	margin-top: 1rem;
	display: grid;
	gap: 0.6rem;
	grid-template-columns: 1fr;
}

.landing-hero__trust-item {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 0.7rem 0.85rem;
	display: grid;
	gap: 0.2rem;
}

.landing-hero__trust-item strong {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #ffffff;
}

.landing-hero__trust-item span {
	color: rgba(255, 255, 255, 0.95);
}

.landing-hero__aside {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbe4f0;
	border-radius: 14px;
	padding: 1rem;
	box-shadow: 0 12px 30px rgba(2, 6, 23, 0.15);
	align-content: start;
}

.landing-hero__service-icon {
	width: 46px;
	height: 46px;
	object-fit: contain;
	margin-bottom: 0.55rem;
}

.landing-hero__aside h2 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
}

.landing-hero__aside ul {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.4rem;
}

.landing-hero__urgent {
	margin-top: 0.75rem;
	display: inline-flex;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: #fee2e2;
	color: #991b1b;
	font-weight: 700;
	font-size: 0.84rem;
}

.landing-urgency {
	background: #f8fafc;
}

.landing-urgency__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
}

.landing-urgency__content p {
	color: #334155;
}

.landing-urgency__card {
	background: #ffffff;
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}

.landing-urgency__card h3 {
	margin: 0 0 0.5rem;
}

.landing-urgency__card ul {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.45rem;
}

.landing-benefits__list {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
}

.landing-benefits__list li {
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	background: #ffffff;
	padding: 0.85rem 0.95rem;
	display: flex;
	gap: 0.7rem;
	align-items: start;
}

.landing-benefits__index {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #0f8dff;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.landing-benefits__list li p {
	margin: 0;
}

.landing-benefits__empty {
	background: #f8fafc;
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	padding: 0.9rem 1rem;
	margin-top: 0.8rem;
}

.landing-social-proof {
	background: #f8fafc;
}

.landing-social-proof__objection {
	margin-top: 0.4rem;
	font-weight: 600;
	color: #1e293b;
}

.landing-social-proof__stats {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
}

.landing-social-proof__stat-card {
	background: #ffffff;
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	padding: 0.8rem 0.9rem;
	display: grid;
	gap: 0.2rem;
}

.landing-social-proof__stat-card strong {
	color: #041b34;
	font-size: 1.1rem;
}

.landing-social-proof__placeholder {
	margin-top: 0.8rem;
	border: 1px dashed #b9c9de;
	border-radius: 12px;
	padding: 0.8rem 0.95rem;
	background: #ffffff;
	color: #475569;
}

.landing-intervention-area__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
	margin-top: 1rem;
}

.landing-intervention-area__media img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	max-height: 340px;
	object-fit: cover;
	border-radius: 12px;
}

.landing-intervention-area__content {
	background: #ffffff;
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	padding: 1rem;
}

.landing-intervention-area__meta {
	margin: 0.8rem 0 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.45rem;
}

.landing-main-content {
	background: #ffffff;
}

.landing-main-content__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
}

.landing-main-content__wysiwyg {
	background: #ffffff;
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	padding: 1rem;
}

.landing-main-content__aside {
	background: linear-gradient(180deg, #041b34, #0d2f55);
	border-radius: 12px;
	padding: 1rem;
	display: grid;
	gap: 0.55rem;
	align-content: start;
}

.landing-main-content__aside h3,
.landing-main-content__aside p {
	color: #ffffff;
}

.landing-main-content__aside h3 {
	margin: 0;
}

.landing-main-content__aside .btn {
	width: 100%;
	justify-content: center;
}

.landing-faq {
	background: #f8fafc;
}

.landing-faq__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
}

.landing-faq__item {
	background: #ffffff;
	border: 1px solid #dbe4f0;
	border-radius: 12px;
	padding: 0.8rem 0.9rem;
}

.landing-faq__item summary {
	cursor: pointer;
	font-weight: 700;
	color: #041b34;
}

.landing-faq__item div {
	margin-top: 0.55rem;
	color: #334155;
}

.landing-final-cta {
	background: linear-gradient(180deg, #041b34, #0d2f55);
}

.landing-final-cta__panel {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 14px;
	padding: 1rem;
}

.landing-final-cta h2,
.landing-final-cta p {
	color: #ffffff;
}

.landing-final-cta__badge {
	display: inline-flex;
	margin-top: 0.45rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(247, 191, 35, 0.18);
	border: 1px solid rgba(247, 191, 35, 0.5);
	color: #fff7db;
	font-weight: 700;
}

.landing-final-cta__actions {
	margin-top: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.landing-final-cta__actions .btn {
	min-width: 190px;
}

.landing-final-cta__form-wrap {
	margin-top: 1rem;
}

.landing-final-cta__form-section {
	padding: 0;
	background: transparent;
}

.landing-final-cta__form-section .container {
	max-width: 980px;
	background: #ffffff;
}

@media (min-width: 900px) {
	.landing-hero__inner {
		grid-template-columns: 1.25fr 0.75fr;
		gap: 1.15rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.landing-hero__trust-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.landing-urgency__grid {
		grid-template-columns: 1.1fr 0.9fr;
	}

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

	.landing-social-proof__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.landing-intervention-area__grid {
		grid-template-columns: 1fr 1fr;
	}

	.landing-main-content__grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

/* CTA icons + form consistency */
.sp-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.sp-cta-button__icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.sp-cta-button__icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.contact-form__submit,
.contact-form__actions button,
.contact-form__actions input[type="submit"] {
	border-radius: 10px !important;
}

/* City map block */
.sp-city-page__map {
	width: 100%;
	min-height: 290px;
	margin-top: 0.9rem;
	border-radius: 12px;
	border: 1px solid #dbe4f0;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.07);
}

.sp-city-page__map .leaflet-control-zoom a {
	background: #041b34;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-city-page__map .leaflet-popup-content-wrapper {
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.15);
}

.sp-city-map-marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sp-city-map-marker span {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: #007aff;
	border: 2px solid #ffffff;
	box-shadow: 0 0 0 5px rgba(0, 122, 255, 0.25);
}
