/* ServerSetup – Germany dedicated server landing (Hetzner EX/AX/SX) */

.ss-dg-page .ss-page-hero,
.ss-dg-page .ss-page-content { display: none; }

.ss-dg { --ss-dg-accent: #2563eb; --ss-dg-accent-dark: #1d4ed8; }

.ss-dg-hero {
	position: relative;
	padding: 48px 0 64px;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 42%, #1e40af 100%);
	color: #fff;
	overflow: hidden;
}
.ss-dg-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
}
.ss-dg-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 20px;
}
.ss-dg-breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.ss-dg-hero__badge { margin-bottom: 16px; background: rgba(37, 99, 235, 0.2); color: #bfdbfe; }
.ss-dg-hero__title {
	margin: 0 0 16px;
	font-size: clamp(1.85rem, 4.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.25;
}
.ss-dg-hero__subtitle {
	margin: 0 0 24px;
	max-width: 580px;
	font-size: 16px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.82);
}
.ss-dg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}
.ss-btn--white-outline {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}
.ss-dg-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.ss-dg-stat {
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	text-align: center;
}
.ss-dg-stat strong { display: block; font-size: 1.1rem; color: #bfdbfe; }
.ss-dg-stat span { font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.ss-dg-hero__img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.ss-dg-intro { padding: 56px 0 24px; }
.ss-dg-prose p { line-height: 1.9; color: #475569; }

.ss-dg-list { padding: 24px 0 64px; }
.ss-dg-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.ss-dg-tab {
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #334155;
	border-radius: 999px;
	padding: 10px 18px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ss-dg-tab.is-active,
.ss-dg-tab:hover {
	border-color: var(--ss-dg-accent);
	background: var(--ss-dg-accent);
	color: #fff;
}
.ss-dg-panel.hidden { display: none; }
.ss-dg-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}
.ss-dg-search { flex: 1 1 280px; }
.ss-dg-search input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	font: inherit;
}
.ss-dg-count { margin: 0; color: #64748b; }
.ss-dg-table-wrap {
	overflow-x: auto;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
}
.ss-dg-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 920px;
}
.ss-dg-table th,
.ss-dg-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #eef2f7;
	text-align: right;
	vertical-align: top;
}
.ss-dg-table th {
	background: #f8fafc;
	font-size: 13px;
	color: #475569;
}
.ss-dg-table td small {
	display: block;
	margin-top: 4px;
	color: #64748b;
	font-size: 12px;
}
.ss-dg-limited {
	display: inline-block;
	margin-right: 6px;
	padding: 2px 8px;
	border-radius: 999px;
	background: #fef3c7;
	color: #92400e;
	font-size: 11px;
}
.ss-dg-table__setup span { display: block; }
.ss-dg-empty,
.ss-dg-notes {
	padding: 24px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}
.ss-dg-notes { margin-top: 24px; }
.ss-dg-notes ul { margin: 12px 0 0; padding-right: 20px; color: #475569; }

.ss-dg-support {
	padding: 48px 0 72px;
	background: #f8fafc;
}
.ss-dg-support__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.ss-dg-support__phone {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
}
.ss-dg-support__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

@media (max-width: 960px) {
	.ss-dg-hero__grid { grid-template-columns: 1fr; }
	.ss-dg-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
	.ss-dg-table thead { display: none; }
	.ss-dg-table,
	.ss-dg-table tbody,
	.ss-dg-table tr,
	.ss-dg-table td { display: block; width: 100%; }
	.ss-dg-table tr {
		padding: 16px;
		border-bottom: 1px solid #e2e8f0;
	}
	.ss-dg-table td {
		border: 0;
		padding: 8px 0;
	}
	.ss-dg-table td::before {
		content: attr(data-label) ": ";
		font-weight: 700;
		color: #334155;
	}
}
