/* ═══════════════════════════════════════════════════════════════
   services/index.php – Page Styles
   Extends the Acticon design system. Do not modify style-*.min.css.
   ═══════════════════════════════════════════════════════════════ */

/* ── Smooth scroll ──────────────────────────────────────────── */
html, body { scroll-behavior: smooth; }
#leistungen { scroll-margin-top: 4rem; }

/* ── Section Label ──────────────────────────────────────────── */
.svc-label {
	display: block;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .2rem;
	text-transform: uppercase;
	color: rgb(23,24,215);
	margin-bottom: .875rem;
}

/* ── Hero: CTA Row & Buttons ────────────────────────────────── */
.svc-cta-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 2rem;
}

.svc-btn {
	display: inline-block;
	background: rgb(23,24,215);
	color: #fff;
	padding: .8rem 2.25rem .75rem;
	font-family: inherit;
	font-size: .875rem;
	font-weight: 800;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: .2rem;
	line-height: 1;
	white-space: nowrap;

	-webkit-transition: background .2s;
	-moz-transition: background .2s;
	-o-transition: background .2s;
	transition: background .2s;
}

.svc-btn:hover,
.svc-btn:focus { background: #000; color: #fff; }

.svc-btn-ghost {
	background: transparent;
	color: rgb(23,24,215);
	border: .125rem solid rgb(23,24,215);
}

.svc-btn-ghost:hover,
.svc-btn-ghost:focus { background: rgb(23,24,215); color: #fff; }

/* ── Hero: Trust Strip ──────────────────────────────────────── */
.svc-trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: .375rem .875rem;
	align-items: center;
	margin-top: 1.5rem;
	padding-top: 1.375rem;
	border-top: .063rem solid rgba(0,0,0,.08);
}

.svc-trust-item {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .04rem;
	color: #555;
	display: flex;
	align-items: center;
	gap: .35rem;
}

.svc-trust-item::before {
	content: "";
	display: inline-block;
	width: .5rem;
	height: .5rem;
	background: rgb(23,24,215);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ── Service Section ────────────────────────────────────────── */
.svc-section {
	background: #eef0f6;
	padding: 4rem 0 5rem;
	position: relative;
	isolation: isolate;
}

/* ── Service Grid ───────────────────────────────────────────── */
.svc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 2.5rem;
}

/* ── Service Card ───────────────────────────────────────────── */
.svc-card {
	background: rgba(255,255,255,.82);
	border: .063rem solid rgba(0,0,0,.06);
	display: flex;
	flex-direction: column;
	min-height: 16rem;
	text-decoration: none;

	-webkit-transition: box-shadow .2s, -webkit-transform .2s, background .2s;
	-moz-transition: box-shadow .2s, -moz-transform .2s, background .2s;
	-o-transition: box-shadow .2s, -o-transform .2s, background .2s;
	transition: box-shadow .2s, transform .2s, background .2s;
}

.svc-card:hover {
	background: #fff;
	box-shadow: 0 .25rem 1.5rem rgba(23,24,215,.1), 0 .063rem .25rem rgba(0,0,0,.06);

	-webkit-transform: translateY(-.125rem);
	-moz-transform: translateY(-.125rem);
	-ms-transform: translateY(-.125rem);
	-o-transform: translateY(-.125rem);
	transform: translateY(-.125rem);
}

.svc-accent {
	height: .25rem;
	background: rgb(23,24,215);
	flex-shrink: 0;

	-webkit-transition: height .2s;
	-moz-transition: height .2s;
	-o-transition: height .2s;
	transition: height .2s;
}

.svc-card:hover .svc-accent { height: .375rem; }

.svc-body {
	padding: 1.5rem 1.625rem 1rem;
	flex: 1;
}

.svc-title {
	display: block;
	font-size: .875rem;
	font-weight: 800;
	letter-spacing: .06rem;
	text-transform: uppercase;
	color: #000;
	margin-bottom: .75rem;
	line-height: 1.3;

	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

.svc-text {
	font-size: .875rem;
	line-height: 1.65;
	color: #404040;
	margin: 0;
}

.svc-footer {
	padding: .875rem 1.625rem 1.375rem;
	border-top: .063rem solid rgba(0,0,0,.06);
	margin-top: auto;
}

.svc-link {
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .07rem;
	text-transform: uppercase;
	color: rgb(23,24,215);
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.svc-link::after {
	content: "";
	position: absolute;
	bottom: -.1rem;
	left: 0;
	right: 0;
	height: .063rem;
	background: rgb(23,24,215);

	-webkit-transition: height .15s;
	-moz-transition: height .15s;
	-o-transition: height .15s;
	transition: height .15s;
}

.svc-link:hover::after,
.svc-card:hover .svc-link::after { height: .18rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 30rem) {
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 54.75rem) {
	.svc-grid { grid-template-columns: repeat(3, 1fr); }
	.svc-section { padding: 5rem 0 5.5rem; }
}

@media (max-width: 37.49rem) {
	.svc-cta-row { flex-direction: column; align-items: flex-start; }
}
