:root {
	--ink: #103b46;
	--ink-deep: #082a33;
	--teal: #087f8c;
	--teal-bright: #0aa2a7;
	--blue: #dff4f8;
	--sage: #dcebdd;
	--sage-deep: #6f9f7a;
	--sun: #f6c85f;
	--white: #fff;
	--paper: #f8fbfa;
	--mist: #eef5f4;
	--line: #cdddda;
	--muted: #527078;
	--danger: #a82b2b;
	--success: #1f7256;
	--shadow: 0 22px 60px rgba(8, 42, 51, .12);
	--radius: 1.25rem;
	--radius-sm: .75rem;
	--shell: min(1180px, calc(100% - 40px));
	--font-display: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
	--font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 7rem;
	overflow-x: clip;
}

body {
	margin: 0;
	overflow-x: clip;
	color: var(--ink);
	background: var(--white);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

a {
	color: var(--teal);
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

a:hover { color: var(--ink-deep); }

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
	outline: 3px solid var(--sun);
	outline-offset: 4px;
}

::selection {
	color: var(--ink-deep);
	background: var(--sun);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 .65em;
	color: var(--ink-deep);
	font-family: var(--font-display);
	line-height: 1.08;
	letter-spacing: -.035em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin: 0 0 1.25em; }

address { margin-bottom: .7rem; font-style: normal; }

.shell { width: var(--shell); margin-inline: auto; }
.shell--content { max-width: 850px; }
.shell--article { max-width: 800px; }
.shell--wide { max-width: 1280px; }

.site-main { min-height: 50vh; overflow: clip; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

.skip-link {
	position: fixed;
	z-index: 9999;
	top: .8rem;
	left: .8rem;
	padding: .7rem 1rem;
	color: var(--white);
	background: var(--ink-deep);
	border-radius: .4rem;
	transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.eyebrow {
	display: flex;
	gap: .6rem;
	align-items: center;
	margin-bottom: 1.1rem;
	color: var(--teal);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 1.9rem;
	height: 3px;
	background: var(--sun);
	content: "";
}

.eyebrow--light { color: #bceff0; }

.button {
	display: inline-flex;
	min-height: 3.35rem;
	justify-content: center;
	align-items: center;
	padding: .85rem 1.45rem;
	color: var(--white);
	background: var(--teal);
	border: 2px solid var(--teal);
	border-radius: 999px;
	box-shadow: 0 10px 25px rgba(8, 127, 140, .2);
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
	color: var(--white);
	background: var(--ink-deep);
	border-color: var(--ink-deep);
	box-shadow: 0 13px 30px rgba(8, 42, 51, .22);
	transform: translateY(-2px);
}

.button--small {
	min-height: 2.75rem;
	padding: .65rem 1.1rem;
	font-size: .9rem;
}

.button--light {
	color: var(--ink-deep);
	background: var(--white);
	border-color: var(--white);
	box-shadow: none;
}

.button--light:hover {
	color: var(--ink-deep);
	background: var(--sun);
	border-color: var(--sun);
}

.button--ghost {
	color: var(--teal);
	background: transparent;
	box-shadow: none;
}

.button--ghost:hover {
	color: var(--white);
	background: var(--teal);
	border-color: var(--teal);
}

.text-link {
	display: inline-flex;
	gap: .4rem;
	align-items: center;
	color: var(--ink-deep);
	font-weight: 800;
	text-decoration-color: var(--sun);
	text-decoration-thickness: 3px;
}

.text-link--light { color: var(--white); }
.text-link--light:hover { color: var(--sun); }

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	background: rgba(255,255,255,.97);
	border-bottom: 1px solid rgba(8,42,51,.08);
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
	box-shadow: 0 8px 30px rgba(8,42,51,.08);
}

.notice-bar {
	color: #d9f7f6;
	background: var(--ink-deep);
	font-size: .78rem;
}

.notice-bar__inner {
	display: flex;
	min-height: 2.15rem;
	gap: .7rem;
	align-items: center;
}

.notice-bar a { color: var(--white); font-weight: 800; text-decoration: none; }
.notice-bar__area { margin-left: auto; color: #b5d4d7; }

.site-header__inner {
	display: flex;
	min-height: 5.5rem;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.brand {
	display: inline-flex;
	gap: .65rem;
	align-items: center;
	color: var(--ink-deep);
	line-height: 1;
	text-decoration: none;
}

.brand:hover { color: var(--ink-deep); }

.brand__mark {
	display: grid;
	width: 2.65rem;
	height: 2.65rem;
	place-items: center;
	color: var(--white);
	background: var(--teal);
	border-radius: 50% 50% 48% 52% / 42% 42% 58% 58%;
	transform: rotate(4deg);
}

.brand__mark svg { width: 1.65rem; fill: currentColor; transform: rotate(-4deg); }
.brand__mark .brand__shine { fill: none; stroke: var(--sun); stroke-linecap: round; stroke-width: 3; }

.brand__text { display: grid; gap: .18rem; }
.brand__text strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.03em; }
.brand__text small { color: var(--teal); font-size: .75rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }

.site-nav {
	display: flex;
	gap: 1.7rem;
	align-items: center;
}

.site-nav__list {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 1.25rem;
	align-items: center;
	list-style: none;
}

.site-nav__list a {
	color: var(--ink);
	font-size: .91rem;
	font-weight: 750;
	text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a { color: var(--teal); }

.menu-toggle { display: none; }

/* Hero */
.hero {
	position: relative;
	min-height: clamp(650px, 78vh, 830px);
	display: grid;
	align-items: center;
	isolation: isolate;
	background: var(--paper);
}

.hero__media,
.hero__wash {
	position: absolute;
	z-index: -2;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% center;
}

.hero__wash {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(248,251,250,.99) 0%, rgba(248,251,250,.97) 35%, rgba(248,251,250,.48) 60%, rgba(248,251,250,.04) 82%),
		linear-gradient(0deg, rgba(8,42,51,.12), transparent 35%);
}

.hero__content {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.hero__content > * { max-width: 650px; }
.hero h1 { max-width: 740px; margin-bottom: .3em; text-wrap: balance; }
.hero__lead { max-width: 590px; color: #294f58; font-size: clamp(1.1rem, 2vw, 1.32rem); line-height: 1.55; }

.hero__actions {
	display: flex;
	margin-top: 2rem;
	gap: 1.4rem;
	align-items: center;
	flex-wrap: wrap;
}

.hero__proof {
	display: flex;
	margin: 3rem 0 0;
	padding: 1.15rem 0 0;
	gap: 1.4rem;
	border-top: 1px solid rgba(8,42,51,.17);
	color: var(--ink);
	font-size: .89rem;
	font-weight: 700;
	list-style: none;
}

.hero__proof span { color: var(--success); }

/* Sections */
.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
	gap: 4rem;
	align-items: end;
	margin-bottom: 3.25rem;
}

.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading > p { max-width: 510px; margin-bottom: .3rem; color: var(--muted); font-size: 1.08rem; }

.service-intro { background: var(--white); }

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15rem;
}

.service-card {
	position: relative;
	min-height: 315px;
	padding: 2rem;
	overflow: hidden;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
	border-color: #a8ccc8;
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.service-card--feature {
	grid-column: span 2;
	padding-right: 38%;
	color: #d4f1f2;
	background: var(--ink-deep);
	border-color: var(--ink-deep);
}

.service-card--feature::after {
	position: absolute;
	right: -4rem;
	bottom: -8rem;
	width: 22rem;
	height: 22rem;
	background: radial-gradient(circle at 35% 35%, rgba(10,162,167,.75), rgba(10,162,167,.03) 70%);
	border-radius: 50%;
	content: "";
}

.service-card--feature h3,
.service-card--feature a { color: var(--white); }
.service-card--feature .service-card__icon { color: var(--sun); background: rgba(255,255,255,.08); }
.service-card--feature .service-card__meta { color: #9edbdd; }

.service-card__icon {
	display: grid;
	width: 3.4rem;
	height: 3.4rem;
	margin-bottom: 2.2rem;
	place-items: center;
	color: var(--teal);
	background: var(--blue);
	border-radius: .9rem;
}

.service-card__icon svg { width: 2rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.service-card h3 { margin-bottom: .55rem; }
.service-card p { position: relative; z-index: 1; color: var(--muted); }
.service-card--feature p { color: #c5e1e3; }
.service-card a { position: absolute; z-index: 2; bottom: 1.8rem; left: 2rem; font-weight: 800; text-decoration: none; }

.process {
	color: #cce2e5;
	background:
		radial-gradient(circle at 20% 20%, rgba(10,162,167,.24), transparent 32rem),
		var(--ink-deep);
}

.process h2,
.process h3 { color: var(--white); }

.process__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(4rem, 10vw, 8rem);
	align-items: center;
}

.process__intro p:not(.eyebrow) { max-width: 460px; }
.process__intro .button { margin-top: 1rem; }

.process__steps {
	position: relative;
	display: grid;
	margin: 0;
	padding: 0;
	gap: 2.4rem;
	list-style: none;
}

.process__steps::before {
	position: absolute;
	top: 2rem;
	bottom: 2rem;
	left: 1.5rem;
	width: 1px;
	background: rgba(255,255,255,.2);
	content: "";
}

.process__steps li {
	position: relative;
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 1.4rem;
}

.process__steps > li > span {
	z-index: 1;
	display: grid;
	width: 3rem;
	height: 3rem;
	place-items: center;
	color: var(--ink-deep);
	background: var(--sun);
	border: 6px solid var(--ink-deep);
	border-radius: 50%;
	font-weight: 900;
}

.process__steps h3 { margin: .25rem 0 .3rem; }
.process__steps p { margin: 0; color: #b4d0d3; }

.trust { background: var(--paper); }

.trust__grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: clamp(3rem, 8vw, 7rem);
}

.trust__statement { position: sticky; top: 8rem; align-self: start; }
.trust__statement > p:last-child { max-width: 500px; color: var(--muted); font-size: 1.08rem; }

.trust__items { display: grid; }
.trust__items article { position: relative; padding: 0 0 2.3rem 4.5rem; border-bottom: 1px solid var(--line); }
.trust__items article + article { padding-top: 2.3rem; }
.trust__items article + article > span { top: 2.3rem; }
.trust__items article > span { position: absolute; top: 0; left: 0; color: var(--teal); font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; }
.trust__items p { margin: 0; color: var(--muted); }

.area-preview { background: var(--white); }
.area-preview__inner { display: grid; grid-template-columns: 1fr .75fr; gap: 4rem; align-items: center; }
.area-preview__inner > div:first-child > p:not(.eyebrow) { max-width: 690px; color: var(--muted); font-size: 1.08rem; }

.area-preview__cities {
	display: flex;
	margin: 2rem 0;
	gap: .6rem;
	flex-wrap: wrap;
}

.area-preview__cities span {
	padding: .42rem .75rem;
	color: var(--ink);
	background: var(--mist);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: .83rem;
	font-weight: 750;
}

.area-preview__map {
	position: relative;
	max-width: 390px;
	justify-self: center;
	color: var(--teal);
}

.area-preview__map path:first-child { fill: var(--sage); stroke: var(--sage-deep); stroke-width: 3; }
.area-preview__map circle { fill: var(--teal); }
.area-preview__map .area-preview__pulse { fill: none; stroke: var(--teal); stroke-width: 2; opacity: .45; }
.area-preview__map path:nth-of-type(2) { fill: none; stroke: var(--ink); stroke-width: 2; }
.area-preview__map text { fill: var(--ink-deep); font: 800 15px var(--font-body); text-anchor: start; }

.faq { background: var(--blue); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 5rem; }
.faq__grid > div:first-child > p:last-child { color: var(--muted); }

.faq__list { display: grid; gap: .75rem; }
.faq details { padding: 1.25rem 1.35rem; background: var(--white); border: 1px solid rgba(8,42,51,.12); border-radius: var(--radius-sm); }
.faq summary { position: relative; padding-right: 2.2rem; cursor: pointer; color: var(--ink-deep); font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: -.1rem; right: .2rem; color: var(--teal); content: "+"; font-family: var(--font-body); font-size: 1.6rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 1rem 0 .1rem; color: var(--muted); }

/* Inner pages */
.page-hero,
.article__header {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background:
		radial-gradient(circle at 85% 20%, rgba(10,162,167,.14), transparent 28rem),
		linear-gradient(135deg, var(--paper), var(--blue));
	border-bottom: 1px solid var(--line);
}

.page-hero__inner { max-width: 860px; margin-left: max(20px, calc((100% - min(1180px, 100% - 40px)) / 2)); }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5.3rem); }
.page-hero__inner > p:last-child { max-width: 720px; color: var(--muted); font-size: 1.2rem; }

.content-shell { padding: clamp(4rem, 8vw, 7rem) 0; }
.entry-content { color: #244b54; font-size: 1.05rem; }
.entry-content > * + * { margin-top: 1.35rem; }
.entry-content h2 { margin-top: 2.8rem; font-size: clamp(1.85rem, 3vw, 2.65rem); }
.entry-content h3 { margin-top: 2rem; }
.entry-content ul,
.entry-content ol { padding-left: 1.35rem; }
.entry-content li + li { margin-top: .45rem; }
.entry-content blockquote { margin: 2.4rem 0; padding: 1.4rem 1.7rem; background: var(--blue); border-left: 5px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th,
.entry-content td { padding: .8rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.entry-content th { color: var(--ink-deep); background: var(--mist); }

.article__back { display: inline-block; margin-bottom: 2rem; font-weight: 800; text-decoration: none; }
.article__meta { display: flex; margin-bottom: 1rem; gap: 1rem; color: var(--muted); font-size: .84rem; font-weight: 700; }
.article__header h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); text-wrap: balance; }
.article__lead { max-width: 710px; color: var(--muted); font-size: 1.2rem; }
.article__image { margin-top: -3rem; }
.article__image img { width: 100%; max-height: 650px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.article__content { padding-top: 5rem; padding-bottom: 4rem; }
.article__footer { display: flex; margin-bottom: 6rem; padding: 2rem; justify-content: space-between; gap: 2rem; align-items: center; background: var(--sage); border-radius: var(--radius); }
.article__footer p { margin: .25rem 0 0; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(145deg, var(--sage), var(--blue)); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.03); }
.post-card__body { padding: 1.5rem; }
.post-card__meta { margin-bottom: .7rem; color: var(--muted); font-size: .78rem; font-weight: 750; }
.post-card h2 { font-size: 1.45rem; }
.post-card h2 a { color: var(--ink-deep); text-decoration: none; }
.post-card p { color: var(--muted); }
.navigation.pagination { margin-top: 3rem; }
.nav-links { display: flex; gap: .5rem; justify-content: center; }
.page-numbers { display: grid; min-width: 2.7rem; height: 2.7rem; padding: .3rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; text-decoration: none; }
.page-numbers.current { color: var(--white); background: var(--teal); border-color: var(--teal); }
.empty-state { padding: 4rem; text-align: center; background: var(--paper); border-radius: var(--radius); }

.not-found { display: grid; min-height: 65vh; padding: 5rem 0; align-items: center; text-align: center; }
.not-found .hero__actions { justify-content: center; }

/* Forms and service area, rendered by the companion plugin */
.rdp-form {
	display: grid;
	margin: 2rem auto;
	gap: 1.2rem;
}

.rdp-form__intro {
	padding: 1.35rem 1.5rem;
	color: var(--ink);
	background: var(--blue);
	border-left: 5px solid var(--teal);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.rdp-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.rdp-form__field { display: grid; gap: .4rem; }
.rdp-form__field--full { grid-column: 1 / -1; }
.rdp-form label,
.rdp-form legend { color: var(--ink-deep); font-weight: 800; }
.rdp-form label small { color: var(--muted); font-weight: 500; }
.rdp-form input:not([type="checkbox"]),
.rdp-form select,
.rdp-form textarea,
.rdp-area-search input {
	width: 100%;
	min-height: 3.35rem;
	padding: .75rem .9rem;
	color: var(--ink-deep);
	background: var(--white);
	border: 1px solid #aac2bf;
	border-radius: .6rem;
}

.rdp-form textarea { min-height: 9rem; resize: vertical; }
.rdp-form input:focus,
.rdp-form select:focus,
.rdp-form textarea:focus,
.rdp-area-search input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,127,140,.15); outline: none; }
.rdp-form__check { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.rdp-form__check input { width: 1.25rem; height: 1.25rem; margin-top: .25rem; accent-color: var(--teal); }
.rdp-form__check label { font-weight: 500; }
.rdp-form__privacy { color: var(--muted); font-size: .88rem; }
.rdp-form__honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.rdp-form__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.rdp-form__actions .button { cursor: pointer; }
.rdp-form__note { margin: 0; color: var(--muted); font-size: .85rem; }

.rdp-alert { margin: 0 0 2rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); }
.rdp-alert--success { color: #0c4f39; background: #dff5e8; border: 1px solid #97d5b1; }
.rdp-alert--error { color: #792323; background: #fde8e8; border: 1px solid #e4a2a2; }

.rdp-area-search { margin: 2rem 0 1.3rem; }
.rdp-area-search label { display: block; margin-bottom: .45rem; color: var(--ink-deep); font-weight: 800; }
.rdp-area-search__count { margin-top: .55rem; color: var(--muted); font-size: .85rem; }
.rdp-area-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; gap: .65rem; list-style: none; }
.rdp-area-grid li { padding: .65rem .75rem; background: var(--paper); border: 1px solid var(--line); border-radius: .55rem; font-size: .87rem; }
.rdp-area-grid li[hidden] { display: none; }
.rdp-area-grid strong { display: block; color: var(--ink-deep); }
.rdp-area-grid small { color: var(--muted); }

/* Footer */
.footer-cta { padding: 4rem 0; color: #cce5e7; background: var(--teal); }
.footer-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.35rem); }
.footer-cta p:not(.eyebrow) { margin-bottom: 0; }
.footer-cta__inner { display: flex; justify-content: space-between; gap: 3rem; align-items: center; }
.footer-cta__inner > div:first-child { max-width: 690px; }
.footer-cta__actions { display: grid; min-width: 260px; gap: .9rem; text-align: center; }

.site-footer { padding: 5rem 0 1.5rem; color: #aac9cc; background: var(--ink-deep); }
.site-footer a { color: #dff8f7; }
.site-footer a:hover { color: var(--sun); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr .7fr .7fr; gap: 3.5rem; }
.site-footer__brand p { max-width: 390px; margin-top: 1.4rem; }
.brand--footer { color: var(--white); }
.brand--footer:hover { color: var(--white); }
.site-footer__heading { margin-bottom: 1rem; color: var(--white); font-family: var(--font-body); font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__links { margin: 0; padding: 0; list-style: none; }
.site-footer__links li + li { margin-top: .55rem; }
.site-footer__links a { text-decoration: none; }
.site-footer__bottom { display: flex; margin-top: 4rem; padding-top: 1.3rem; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.mobile-action-bar { display: none; }
.whatsapp-float {
	position: fixed;
	z-index: 110;
	right: clamp(1rem, 2.5vw, 2rem);
	bottom: clamp(1rem, 2.5vw, 2rem);
	display: inline-flex;
	min-height: 3.5rem;
	padding: .75rem 1.1rem;
	gap: .6rem;
	align-items: center;
	color: var(--white);
	background: #167b45;
	border: 2px solid rgba(255,255,255,.8);
	border-radius: 999px;
	box-shadow: 0 16px 36px rgba(8,42,51,.28);
	font-weight: 850;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
	color: var(--white);
	background: #0f6035;
	box-shadow: 0 19px 40px rgba(8,42,51,.34);
	transform: translateY(-3px);
}
.whatsapp-float svg { width: 1.45rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

/* Leistungen */
.services-hero {
	position: relative;
	min-height: 660px;
	display: flex;
	overflow: hidden;
	color: #d9eeef;
	background: var(--ink-deep);
	isolation: isolate;
}
.services-hero::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 20% 20%, rgba(10,162,167,.2), transparent 32rem),
		linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 100%);
	background-size: auto, 42px 42px;
	content: "";
}
.services-hero__layers { position: absolute; z-index: -1; inset: 0 0 0 54%; }
.services-hero__layers i {
	position: absolute;
	width: 75%;
	height: 68%;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 2.3rem;
	transform: rotate(-12deg) skewX(-7deg);
}
.services-hero__layers i:nth-child(1) { top: 7%; right: -5%; background: rgba(10,162,167,.52); }
.services-hero__layers i:nth-child(2) { top: 24%; right: 14%; background: rgba(223,244,248,.24); }
.services-hero__layers i:nth-child(3) { top: 43%; right: -2%; background: rgba(246,200,95,.19); }
.services-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(245px, .65fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
	padding-block: clamp(5.5rem, 10vw, 8rem);
}
.services-hero__copy { max-width: 760px; }
.services-hero h1 { color: var(--white); font-size: clamp(3.4rem, 7.4vw, 6.7rem); }
.services-hero h1 span { color: var(--sun); }
.services-hero__lead { max-width: 650px; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.services-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button--sun { color: var(--ink-deep); background: var(--sun); border-color: var(--sun); box-shadow: 0 10px 25px rgba(246,200,95,.18); }
.button--sun:hover { color: var(--white); }
.button--whatsapp { background: #167b45; border-color: #167b45; box-shadow: none; }
.button--whatsapp:hover { background: #0f6035; border-color: #0f6035; }
.services-hero__note { max-width: 650px; margin: 1.25rem 0 0; color: #9fc5c8; font-size: .86rem; }
.services-hero__aside {
	display: grid;
	grid-template-columns: auto 1fr;
	padding: 1.6rem;
	gap: 1rem .85rem;
	align-items: center;
	background: rgba(255,255,255,.09);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: var(--radius);
	backdrop-filter: blur(12px);
}
.services-hero__aside span {
	display: grid;
	width: 2.65rem;
	height: 2.65rem;
	place-items: center;
	color: var(--ink-deep);
	background: var(--sun);
	border-radius: 50%;
	font-size: .75rem;
	font-weight: 900;
}
.services-hero__aside strong { color: var(--white); line-height: 1.25; }
.services-jump { position: relative; z-index: 3; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 12px 35px rgba(8,42,51,.06); }
.services-jump__inner { display: grid; grid-template-columns: 1.15fr repeat(5, 1fr); align-items: stretch; }
.services-jump__label { display: flex; align-items: center; padding: 1rem .8rem 1rem 0; color: var(--muted); font-size: .74rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.services-jump a { display: flex; min-width: 0; padding: 1rem .75rem; gap: .55rem; align-items: center; color: var(--ink-deep); border-left: 1px solid var(--line); font-size: .81rem; font-weight: 800; line-height: 1.2; text-decoration: none; }
.services-jump a:hover { color: var(--teal); background: var(--paper); }
.services-jump small { color: var(--teal); font-weight: 900; }
.services-list { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--paper); }
.services-list__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 4rem; margin-bottom: clamp(3rem, 6vw, 5rem); align-items: end; }
.services-list__intro .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.services-list__intro h2 { margin: 0; }
.services-list__intro > p:last-child { max-width: 570px; margin: 0; }
.service-bands { display: grid; gap: 1.4rem; }
.service-band {
	--service-accent: var(--teal);
	display: grid;
	grid-template-columns: minmax(190px, .42fr) minmax(0, 1.58fr);
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 1.5rem;
	box-shadow: 0 12px 35px rgba(8,42,51,.055);
	scroll-margin-top: 7rem;
}
.service-band--2 { --service-accent: #477db7; }
.service-band--3 { --service-accent: #657f39; }
.service-band--4 { --service-accent: #a8662d; }
.service-band--5 { --service-accent: #755b9b; }
.service-band__rail {
	position: relative;
	display: flex;
	min-height: 100%;
	padding: 2rem;
	flex-direction: column;
	justify-content: space-between;
	color: var(--white);
	background: var(--service-accent);
	overflow: hidden;
}
.service-band__rail::after {
	position: absolute;
	right: -3rem;
	bottom: -3.5rem;
	width: 11rem;
	height: 11rem;
	background: rgba(255,255,255,.12);
	border-radius: 2rem;
	content: "";
	transform: rotate(25deg);
}
.service-band__number { position: relative; z-index: 1; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; letter-spacing: -.08em; line-height: 1; }
.service-band__rail p { position: relative; z-index: 1; margin: 2.5rem 0 0; font-size: .76rem; font-weight: 850; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.service-band__body { padding: clamp(2rem, 5vw, 3.5rem); }
.service-band__body h2 { margin-bottom: .45em; font-size: clamp(2rem, 4vw, 3.35rem); }
.service-band__intro { max-width: 780px; color: var(--ink); font-size: 1.08rem; }
.service-band__benefits { display: flex; flex-wrap: wrap; margin: 1.8rem 0; padding: 0; gap: .55rem; list-style: none; }
.service-band__benefits li { padding: .48rem .75rem; color: var(--ink-deep); background: color-mix(in srgb, var(--service-accent) 10%, white); border: 1px solid color-mix(in srgb, var(--service-accent) 28%, white); border-radius: 999px; font-size: .83rem; font-weight: 750; }
.service-band__hint { max-width: 780px; margin-bottom: 2rem; padding: 1rem 1.15rem; background: var(--paper); border-left: 4px solid var(--sun); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .9rem; }
.service-band__actions { display: flex; flex-wrap: wrap; gap: .75rem 1.15rem; align-items: center; }
.service-band__actions .button { min-height: 3rem; padding: .75rem 1.15rem; background: var(--service-accent); border-color: var(--service-accent); box-shadow: none; }
.service-band__actions .button:hover { background: var(--ink-deep); border-color: var(--ink-deep); }
.service-band__whatsapp { display: inline-flex; min-height: 3rem; padding: .7rem .95rem; gap: .45rem; align-items: center; color: #14663a; background: #e5f7ec; border-radius: 999px; font-size: .88rem; font-weight: 850; text-decoration: none; }
.service-band__whatsapp:hover { color: var(--white); background: #14663a; }
.service-band__whatsapp svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.service-band__phone { color: var(--ink-deep); font-size: .88rem; font-weight: 800; }
.services-help { padding: clamp(4.5rem, 8vw, 7rem) 0; color: #d8eded; background: var(--ink-deep); }
.services-help__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr); gap: 4rem; align-items: center; }
.services-help h2 { max-width: 760px; color: var(--white); }
.services-help p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; }
.services-help__actions { display: grid; gap: 1rem; text-align: center; }
.services-help__actions > a:last-child { color: #d8eded; font-weight: 800; }

@media (max-width: 980px) {
	.site-header__inner { min-height: 4.8rem; }
	.menu-toggle {
		display: flex;
		padding: .65rem .75rem;
		gap: .65rem;
		align-items: center;
		color: var(--ink-deep);
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: .55rem;
		font-weight: 800;
	}
	.menu-toggle__icon { display: grid; width: 1.35rem; gap: 4px; }
	.menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
	.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
	.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
	.site-nav {
		position: fixed;
		top: calc(2.15rem + 4.8rem);
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		padding: 2rem max(20px, calc((100% - 720px) / 2));
		align-content: start;
		gap: 2rem;
		overflow-y: auto;
		background: var(--white);
		visibility: hidden;
		opacity: 0;
		transform: translateY(-10px);
		transition: opacity .2s ease, transform .2s ease, visibility .2s;
	}
	.site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
	.site-nav__list { display: grid; gap: 0; }
	.site-nav__list li { border-bottom: 1px solid var(--line); }
	.site-nav__list a { display: block; padding: 1.1rem 0; font-family: var(--font-display); font-size: 1.35rem; }
	.site-nav__cta { justify-self: stretch; }
	.hero__wash { background: linear-gradient(90deg, rgba(248,251,250,.99), rgba(248,251,250,.88) 60%, rgba(248,251,250,.28)); }
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.service-card--feature { grid-column: 1 / -1; }
	.process__grid,
	.trust__grid,
	.area-preview__inner,
	.faq__grid { grid-template-columns: 1fr; }
	.process__grid,
	.faq__grid { gap: 3.5rem; }
	.trust__statement { position: static; }
	.area-preview__map { order: -1; max-width: 300px; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.rdp-area-grid { grid-template-columns: repeat(3, 1fr); }
	.site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
	.site-footer__grid > div:last-child { grid-column: 2; }
	.services-hero__inner { grid-template-columns: 1fr; }
	.services-hero__copy { max-width: 800px; }
	.services-hero__aside { max-width: 560px; }
	.services-jump__inner { display: flex; overflow-x: auto; }
	.services-jump__label { min-width: 150px; }
	.services-jump a { min-width: 150px; }
	.services-list__intro { grid-template-columns: 1fr; }
	.services-help__inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
	:root { --shell: min(100% - 28px, 1180px); }
	body { padding-bottom: 4rem; }
	.notice-bar__area { display: none; }
	.notice-bar__inner { justify-content: center; }
	.brand__text strong { font-size: 1rem; }
	.brand__text small { font-size: .67rem; }
	.brand__mark { width: 2.35rem; height: 2.35rem; }
	.menu-toggle__label { display: none; }
	.hero { min-height: 720px; align-items: end; }
	.hero__media img { object-position: 72% center; }
	.hero__wash { background: linear-gradient(0deg, rgba(248,251,250,1) 17%, rgba(248,251,250,.94) 55%, rgba(248,251,250,.25) 92%); }
	.hero__content { padding-top: 13rem; padding-bottom: 3.5rem; }
	.hero h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
	.hero__lead { font-size: 1.06rem; }
	.hero__proof { display: grid; gap: .55rem; }
	.section-heading { grid-template-columns: 1fr; gap: 1.4rem; }
	.service-grid,
	.post-grid { grid-template-columns: 1fr; }
	.service-card--feature { grid-column: auto; padding-right: 2rem; }
	.service-card--feature::after { opacity: .5; }
	.process__steps li { gap: 1rem; }
	.trust__items article { padding-left: 3.4rem; }
	.faq details { padding: 1rem; }
	.page-hero__inner { margin-inline: auto; width: var(--shell); }
	.page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); overflow-wrap: anywhere; }
	.article__footer,
	.footer-cta__inner { display: grid; align-items: start; }
	.footer-cta__actions { min-width: 0; width: 100%; }
	.rdp-form__grid { grid-template-columns: 1fr; }
	.rdp-form__field--full { grid-column: auto; }
	.rdp-area-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer { padding-top: 4rem; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
	.site-footer__brand { grid-column: 1 / -1; }
	.site-footer__grid > div:last-child { grid-column: auto; }
	.site-footer__bottom { display: grid; }
	.whatsapp-float { display: none; }
	.mobile-action-bar {
		position: fixed;
		z-index: 120;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: 1fr 1.15fr 1fr;
		min-height: 4rem;
		background: var(--white);
		border-top: 1px solid var(--line);
		box-shadow: 0 -10px 30px rgba(8,42,51,.12);
	}
	.mobile-action-bar a {
		display: flex;
		gap: .3rem;
		justify-content: center;
		align-items: center;
		color: var(--ink-deep);
		font-size: .75rem;
		font-weight: 850;
		text-decoration: none;
	}
	.mobile-action-bar a.mobile-action-bar__whatsapp { color: var(--white); background: #167b45; }
	.mobile-action-bar a:last-child { color: var(--white); background: var(--teal); }
	.mobile-action-bar svg { width: 1.05rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
	.services-hero { min-height: auto; }
	.services-hero__inner { padding-block: 4.5rem; }
	.services-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
	.services-hero__layers { inset: 42% -20% -15% 20%; opacity: .52; }
	.services-hero__aside { padding: 1.15rem; }
	.services-hero__actions { display: grid; }
	.services-hero__actions .button { width: 100%; }
	.services-jump__label { display: none; }
	.services-jump a { min-width: 135px; padding-inline: .7rem; }
	.services-list__intro { margin-bottom: 2.5rem; }
	.service-band { grid-template-columns: 1fr; }
	.service-band__rail { min-height: 8rem; padding: 1.3rem 1.5rem; flex-direction: row; align-items: center; }
	.service-band__number { font-size: 4rem; }
	.service-band__rail p { max-width: 150px; margin: 0; text-align: right; }
	.service-band__body { padding: 1.6rem 1.35rem 1.8rem; }
	.service-band__body h2 { overflow-wrap: anywhere; }
	.service-band__actions { display: grid; }
	.service-band__actions .button,
	.service-band__whatsapp { width: 100%; }
	.service-band__phone { justify-self: center; padding: .45rem; }
	.services-help__inner { gap: 2.3rem; }
}

@media (max-width: 420px) {
	.rdp-area-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.rdp-article-cta {
	margin: 3rem 0 1rem;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	color: var(--white);
	background: var(--ink-deep);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.rdp-article-cta h2,
.rdp-article-cta p { color: inherit; }

.rdp-article-cta a {
	display: inline-flex;
	margin-top: .5rem;
	padding: .85rem 1.15rem;
	color: var(--ink-deep);
	background: var(--yellow);
	border-radius: 999px;
	font-weight: 850;
	text-decoration: none;
}

@media print {
	.notice-bar,
	.site-header,
	.footer-cta,
	.site-footer,
	.mobile-action-bar,
	.whatsapp-float { display: none !important; }
	body { color: #000; padding: 0; }
	.page-hero,
	.article__header { padding: 1rem 0; background: none; }
}
