/*
Theme Name: flexx-dev
Theme URI: https://flexx-dev.com
Author: Bastian Ranft, flexxDEV
Author URI: https://flexx-dev.com
Description: WordPress Security Plugins by flexxDEV — Product-Showcase und Plugin-Landingpages.
Version: 3.6
Tags: security, plugins, developer
*/
@charset "UTF-8";

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
	--white: rgba(255,255,255,1);
	--white95: rgba(255,255,255,.95);
	--white90: rgba(255,255,255,.9);
	--white80: rgba(255,255,255,.8);
	--white70: rgba(255,255,255,.7);
	--white60: rgba(255,255,255,.6);
	--white50: rgba(255,255,255,.5);
	--white40: rgba(255,255,255,.4);
	--white30: rgba(255,255,255,.3);
	--white20: rgba(255,255,255,.2);
	--white10: rgba(255,255,255,.1);
	--trans: rgba(255,255,255,0);
	--black: rgba(0,0,0,1);
	--black95: rgba(0,0,0,.95);
	--black90: rgba(0,0,0,.9);
	--black85: rgba(0,0,0,.85);
	--black80: rgba(0,0,0,.8);
	--black70: rgba(0,0,0,.7);
	--black60: rgba(0,0,0,.6);
	--black50: rgba(0,0,0,.5);
	--black40: rgba(0,0,0,.4);
	--black30: rgba(0,0,0,.3);
	--black20: rgba(0,0,0,.2);
	--black10: rgba(0,0,0,.1);
	--purple: rgba(45,27,105,1);
	--purple95: rgba(45,27,105,.95);
	--purple90: rgba(45,27,105,.9);
	--purple80: rgba(45,27,105,.8);
	--purple70: rgba(45,27,105,.7);
	--purple60: rgba(45,27,105,.6);
	--purple50: rgba(45,27,105,.5);
	--purple40: rgba(45,27,105,.4);
	--purple30: rgba(45,27,105,.3);
	--purple20: rgba(45,27,105,.2);
	--purple10: rgba(45,27,105,.1);
	--pink: rgba(233,30,156,1);
	--pink95: rgba(233,30,156,.95);
	--pink90: rgba(233,30,156,.9);
	--pink80: rgba(233,30,156,.8);
	--pink70: rgba(233,30,156,.7);
	--pink60: rgba(233,30,156,.6);
	--pink50: rgba(233,30,156,.5);
	--pink40: rgba(233,30,156,.4);
	--pink30: rgba(233,30,156,.3);
	--pink20: rgba(233,30,156,.2);
	--pink10: rgba(233,30,156,.1);
	--teal: #16a08b;
	--teal80: rgba(22,160,139,.8);
	--teal50: rgba(22,160,139,.5);
	--teal20: rgba(22,160,139,.2);
	--teal10: rgba(22,160,139,.1);
	--brand: #16a08b;
	--brand-dark: #107e73;
	--brand-light: #1ab89e;
	--brand-80: rgba(22,160,139,.8);
	--brand-50: rgba(22,160,139,.5);
	--brand-20: rgba(22,160,139,.2);
	--brand-10: rgba(22,160,139,.1);
	--cyan: rgba(34,211,238,1);
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
	--text-font-size: 1.1rem;
	--text-font-line-height: 1.9rem;
	--text-font-size-sm: 0.95rem;
	--text-font-line-height-sm: 1.7rem;
	--text-font-size-xs: 0.85rem;
	--text-font-line-height-xs: 1.5rem;
	--font-size-headline-xlarge: 3.2rem;
	--line-height-headline-xlarge: 3.8rem;
	--font-size-headline-large: 2.4rem;
	--line-height-headline-large: 3.0rem;
	--font-size-headline-medium: 1.5rem;
	--line-height-headline-medium: 2.2rem;
	--font-size-headline-small: 1.1rem;
	--line-height-headline-small: 1.8rem;
	--padding-small: 33px;
	--padding-medium: 66px;
	--padding-large: 100px;
}

/* =============================================
   RESET / GLOBAL
   ============================================= */
*,
*:before,
*:after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	font-size: var(--text-font-size);
	line-height: var(--text-font-line-height);
	color: var(--gray-800);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
	color: var(--purple);
	text-decoration: none;
	transition: color 0.2s ease;
}
a:hover {
	color: var(--pink);
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: 0;
}
.transition {
	transition: all 0.2s ease;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
	text-decoration: none;
	border: none;
	padding: 0;
	margin: 0 0 0.5em 0;
	display: block;
	font-weight: 700;
	color: var(--purple);
	letter-spacing: -0.02em;
}
h1 {
	font-size: var(--font-size-headline-large);
	line-height: var(--line-height-headline-large);
}
h2 {
	font-size: var(--font-size-headline-medium);
	line-height: var(--line-height-headline-medium);
}
h3 {
	font-size: var(--font-size-headline-small);
	line-height: var(--line-height-headline-small);
	font-weight: 600;
}
h4 {
	font-size: 1rem;
	line-height: 1.6rem;
	font-weight: 600;
}
p {
	margin: 0 0 1em 0;
}
.eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--pink);
	margin-bottom: 0.5em;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white); }
.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.text-gray { color: var(--gray-500); }

/* =============================================
   GRID SYSTEM (flexxluthor-kompatibel)
   ============================================= */
.equal {
	display: flex;
	flex-wrap: wrap;
}
.equal > [class^="col-"] {
	display: flex;
	flex-direction: column;
}
.equal .inner {
	height: 100%;
}
.row {
	margin-left: -10px;
	margin-right: -10px;
}
.row:after {
	content: "";
	display: table;
	clear: both;
}
.row > [class^="col-"],
.row > [class*=" col-"] {
	position: relative;
	min-height: 1px;
	padding: 10px;
	float: left;
}
.row.no-padding > [class^="col-"],
.row.no-padding > [class*=" col-"] {
	padding: 0;
}
.col-xs-1  { width: 8.33333333%; }
.col-xs-2  { width: 16.66666667%; }
.col-xs-3  { width: 25%; }
.col-xs-4  { width: 33.33333333%; }
.col-xs-5  { width: 41.66666667%; }
.col-xs-6  { width: 50%; }
.col-xs-7  { width: 58.33333333%; }
.col-xs-8  { width: 66.66666667%; }
.col-xs-9  { width: 75%; }
.col-xs-10 { width: 83.33333333%; }
.col-xs-11 { width: 91.66666667%; }
.col-xs-12 { width: 100%; }
.col-xs-offset-0  { margin-left: 0; }
.col-xs-offset-1  { margin-left: 8.33333333%; }
.col-xs-offset-2  { margin-left: 16.66666667%; }
.col-xs-offset-3  { margin-left: 25%; }
.col-xs-offset-4  { margin-left: 33.33333333%; }
.col-xs-offset-5  { margin-left: 41.66666667%; }
.col-xs-offset-6  { margin-left: 50%; }
@media (min-width: 768px) {
	.col-sm-1  { width: 8.33333333%; }
	.col-sm-2  { width: 16.66666667%; }
	.col-sm-3  { width: 25%; }
	.col-sm-4  { width: 33.33333333%; }
	.col-sm-5  { width: 41.66666667%; }
	.col-sm-6  { width: 50%; }
	.col-sm-7  { width: 58.33333333%; }
	.col-sm-8  { width: 66.66666667%; }
	.col-sm-9  { width: 75%; }
	.col-sm-10 { width: 83.33333333%; }
	.col-sm-11 { width: 91.66666667%; }
	.col-sm-12 { width: 100%; }
	.col-sm-offset-0  { margin-left: 0; }
	.col-sm-offset-1  { margin-left: 8.33333333%; }
	.col-sm-offset-2  { margin-left: 16.66666667%; }
	.col-sm-offset-3  { margin-left: 25%; }
	.col-sm-offset-4  { margin-left: 33.33333333%; }
	.col-sm-offset-5  { margin-left: 41.66666667%; }
	.col-sm-offset-6  { margin-left: 50%; }
	.hidden-sm { display: none !important; }
}
@media (min-width: 992px) {
	.col-md-1  { width: 8.33333333%; }
	.col-md-2  { width: 16.66666667%; }
	.col-md-3  { width: 25%; }
	.col-md-4  { width: 33.33333333%; }
	.col-md-5  { width: 41.66666667%; }
	.col-md-6  { width: 50%; }
	.col-md-7  { width: 58.33333333%; }
	.col-md-8  { width: 66.66666667%; }
	.col-md-9  { width: 75%; }
	.col-md-10 { width: 83.33333333%; }
	.col-md-11 { width: 91.66666667%; }
	.col-md-12 { width: 100%; }
	.col-md-offset-0  { margin-left: 0; }
	.col-md-offset-1  { margin-left: 8.33333333%; }
	.col-md-offset-2  { margin-left: 16.66666667%; }
	.col-md-offset-3  { margin-left: 25%; }
	.col-md-offset-4  { margin-left: 33.33333333%; }
	.col-md-offset-5  { margin-left: 41.66666667%; }
	.col-md-offset-6  { margin-left: 50%; }
	.hidden-md { display: none !important; }
}
@media (min-width: 1200px) {
	.col-lg-1  { width: 8.33333333%; }
	.col-lg-2  { width: 16.66666667%; }
	.col-lg-3  { width: 25%; }
	.col-lg-4  { width: 33.33333333%; }
	.col-lg-5  { width: 41.66666667%; }
	.col-lg-6  { width: 50%; }
	.col-lg-7  { width: 58.33333333%; }
	.col-lg-8  { width: 66.66666667%; }
	.col-lg-9  { width: 75%; }
	.col-lg-10 { width: 83.33333333%; }
	.col-lg-11 { width: 91.66666667%; }
	.col-lg-12 { width: 100%; }
	.col-lg-offset-0  { margin-left: 0; }
	.col-lg-offset-1  { margin-left: 8.33333333%; }
	.col-lg-offset-2  { margin-left: 16.66666667%; }
	.col-lg-offset-3  { margin-left: 25%; }
	.col-lg-offset-4  { margin-left: 33.33333333%; }
	.col-lg-offset-5  { margin-left: 41.66666667%; }
	.col-lg-offset-6  { margin-left: 50%; }
	.hidden-lg { display: none !important; }
}
@media (max-width: 767px) {
	.hidden-xs { display: none !important; }
}

/* =============================================
   CONTAINER SYSTEM
   ============================================= */
.container-fluid-outer {
	width: 100%;
	min-height: auto;
}
.container-fluid-inner {
	max-width: 1400px;
	height: auto;
	display: block;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
main .inner {
	padding: 10px;
}

/* =============================================
   VERTICAL ALIGNMENT
   ============================================= */
.vertical-align-middle {
	display: flex;
}
.vertical-align-middle span,
.vertical-align-middle div.align {
	margin: auto;
}

/* =============================================
   VERTICAL LINE DECORATION
   ============================================= */
.vertical-line {
	border-left: 4px solid var(--gray-300);
	padding-left: 20px;
}
.vertical-line.purple {
	border-left-color: var(--purple);
}
.vertical-line.pink {
	border-left-color: var(--pink);
}
.vertical-line.teal {
	border-left-color: var(--teal);
}
.vertical-line.white {
	border-left-color: var(--white);
}

/* =============================================
   BACKGROUND CLASSES
   ============================================= */
.bg_white {
	background: none var(--white);
}
.bg_black {
	background: none var(--gray-900);
	color: var(--white);
}
.bg_purple {
	background: none var(--purple);
	color: var(--white);
}
.bg_purple h1,
.bg_purple h2,
.bg_purple h3,
.bg_black h1,
.bg_black h2,
.bg_black h3 {
	color: var(--white);
}
.bg_gray {
	background: none var(--gray-50);
}
.bg_gradient {
	background: linear-gradient(135deg, var(--purple) 0%, #4c1d95 50%, var(--pink) 100%);
	color: var(--white);
}
.bg_gradient h1,
.bg_gradient h2,
.bg_gradient h3 {
	color: var(--white);
}
.bg_dark {
	background: #0f172a;
	color: var(--white);
}
.bg_dark h1,
.bg_dark h2,
.bg_dark h3 {
	color: var(--white);
}
.bg_teal {
	background: var(--teal);
	color: var(--white);
}
.bg_teal h1,
.bg_teal h2,
.bg_teal h3 {
	color: var(--white);
}
.bg_teal-dark {
	background: linear-gradient(135deg, #004d40 0%, #00695c 50%, #00796b 100%);
	color: var(--white);
}
.bg_teal-dark h1,
.bg_teal-dark h2,
.bg_teal-dark h3 {
	color: var(--white);
}

/* =============================================
   PADDING CLASSES
   ============================================= */
.padding-color-container-sm {
	padding: var(--padding-small) 0;
}
.padding-color-container-md {
	padding: var(--padding-medium) 0;
}
.padding-color-container-lg {
	padding: var(--padding-large) 0;
}
@media (max-width: 767px) {
	.padding-color-container-lg {
		padding: var(--padding-medium) 0;
	}
	.padding-color-container-md {
		padding: var(--padding-small) 0;
	}
}

/* =============================================
   HEADER
   ============================================= */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gray-200);
}
header .container-fluid-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	height: 70px;
}
header .logo a {
	display: flex;
	align-items: center;
}
header .logo img {
	height: 32px;
	width: auto;
}
header nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
}
header nav ul li a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--gray-700);
	letter-spacing: 0.01em;
	padding: 8px 0;
	position: relative;
}
header nav ul li a:hover,
header nav ul li a.active {
	color: var(--purple);
}
header nav ul li a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--pink);
}
header .header-cta {
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	background: var(--purple);
	color: var(--white);
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.2s ease;
}
header .header-cta:hover {
	background: var(--pink);
	color: var(--white);
}
.mobile-toggle {
	display: none;
	width: 28px;
	height: 20px;
	position: relative;
	cursor: pointer;
}
.mobile-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--gray-800);
	position: absolute;
	transition: all 0.3s ease;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }
@media (max-width: 767px) {
	.mobile-toggle {
		display: block;
	}
	header nav {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--white);
		border-bottom: 1px solid var(--gray-200);
		padding: 20px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	}
	header nav.open {
		display: block;
	}
	header nav ul {
		flex-direction: column;
		gap: 0;
	}
	header nav ul li a {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid var(--gray-100);
	}
	header .header-cta {
		display: none;
	}
}

/* =============================================
   MAIN
   ============================================= */
main {
	padding-top: 70px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
	background: var(--gray-900);
	color: var(--gray-400);
	font-size: 0.9rem;
}
footer a {
	color: var(--gray-400);
	transition: color 0.2s ease;
}
footer a:hover {
	color: var(--white);
}
footer h4 {
	color: var(--white);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}
footer .footer-logo img {
	height: 28px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}
footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
footer .footer-links li {
	margin-bottom: 8px;
}
footer .footer-bottom {
	border-top: 1px solid var(--gray-700);
	padding: 20px 0;
	text-align: center;
	font-size: 0.8rem;
	color: var(--gray-500);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
	gap: 8px;
}
.btn-primary {
	background: var(--purple);
	color: var(--white);
}
.btn-primary:hover {
	background: #3d2b7a;
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(45,27,105,0.3);
}
.btn-secondary {
	background: transparent;
	color: var(--purple);
	border: 2px solid var(--purple);
}
.btn-secondary:hover {
	background: var(--purple);
	color: var(--white);
}
.btn-pink {
	background: var(--pink);
	color: var(--white);
}
.btn-pink:hover {
	background: #c4187d;
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(233,30,156,0.3);
}
.btn-white {
	background: var(--white);
	color: var(--purple);
}
.btn-white:hover {
	background: var(--gray-100);
	color: var(--purple);
	transform: translateY(-1px);
}
.btn-teal {
	background: var(--teal);
	color: var(--white);
}
.btn-teal:hover {
	background: #00796b;
	color: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0,150,136,0.3);
}
.btn-outline-light {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white40);
}
.btn-outline-light:hover {
	background: var(--white10);
	color: var(--white);
	border-color: var(--white70);
}
.btn-lg {
	padding: 16px 36px;
	font-size: 1.05rem;
}
.btn-sm {
	padding: 8px 18px;
	font-size: 0.85rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
	min-height: 70vh;
	display: flex;
	align-items: center;
}
.hero h1 {
	font-size: var(--font-size-headline-xlarge);
	line-height: var(--line-height-headline-xlarge);
	margin-bottom: 0.6em;
}
.hero p.lead {
	font-size: 1.25rem;
	line-height: 2rem;
	color: var(--gray-600);
	max-width: 560px;
}
.hero .hero-buttons {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	flex-wrap: wrap;
}
@media (max-width: 767px) {
	.hero h1 {
		font-size: var(--font-size-headline-large);
		line-height: var(--line-height-headline-large);
	}
	.hero p.lead {
		font-size: 1.05rem;
		line-height: 1.7rem;
	}
}

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 32px;
}
@media (max-width: 1100px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}
}
.pricing-cards {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
}
.pricing-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 36px 28px;
	padding-top: 44px;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.pricing-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--brand);
}
.pricing-card:hover {
	border-color: var(--purple30);
	box-shadow: 0 12px 40px rgba(45,27,105,0.1);
	transform: translateY(-4px);
}
.pricing-card.featured {
	border-color: var(--purple);
	box-shadow: 0 12px 40px rgba(45,27,105,0.15);
}
.pricing-card.featured::after {
	height: 5px;
	background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 100%);
}
.pricing-card.featured::before {
	content: 'Empfohlen';
	position: absolute;
	top: 14px;
	right: -30px;
	background: var(--purple);
	color: var(--white);
	padding: 4px 40px;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transform: rotate(45deg);
	z-index: 1;
}
.pricing-card .plan-name {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--purple60);
	margin-bottom: 12px;
}
.pricing-card.featured .plan-name {
	color: var(--pink);
}
.pricing-card .price {
	font-size: 3rem;
	font-weight: 800;
	color: var(--purple);
	line-height: 1;
	margin-bottom: 4px;
}
.pricing-card .price-period {
	font-size: 0.85rem;
	color: var(--gray-500);
	margin-bottom: 24px;
}
.pricing-card .plan-subtitle {
	font-size: 0.9rem;
	color: var(--gray-500);
	margin-bottom: 16px;
}
.pricing-card .price-per-site {
	font-size: 0.8rem;
	color: var(--gray-400);
}
.pricing-card .features-list {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}
.pricing-card .features-list li {
	padding: 6px 0;
	font-size: 0.9rem;
	color: var(--gray-700);
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.pricing-card .features-list li::before {
	content: '\2713';
	color: var(--teal);
	font-weight: 700;
	flex-shrink: 0;
}
.pricing-card .features-list li.highlight {
	font-weight: 600;
}
.pricing-card .btn {
	width: 100%;
}

/* =============================================
   FEATURE COMPARISON TABLE
   ============================================= */
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	overflow-x: auto;
}
.comparison-table-wrap {
	overflow-x: auto;
}
.comparison-table th,
.comparison-table td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--gray-200);
}
.comparison-table thead th {
	background: var(--gray-50);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gray-600);
}
.comparison-table thead th.featured-col {
	background: var(--purple10);
	color: var(--purple);
}
.comparison-table tbody td {
	color: var(--gray-700);
}
.comparison-table tbody td.featured-col {
	background: var(--purple10);
	font-weight: 600;
}
.comparison-table .check {
	color: var(--teal);
	font-weight: 700;
}
.comparison-table .cross {
	color: var(--gray-300);
}
.comparison-table .category-row td {
	background: var(--gray-50);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--purple);
	border-bottom: 2px solid var(--gray-200);
}
.comparison-table thead th.pro-col {
	background: rgba(233,30,99,0.08);
	color: var(--pink);
}
.comparison-table tbody td.pro-col {
	background: rgba(233,30,99,0.04);
	font-weight: 600;
}
.comparison-3col th, .comparison-3col td {
	font-size: 0.8rem;
	padding: 10px 8px;
}

.pricing-tier-label {
	text-align: center;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gray-500);
	margin: 48px 0 16px;
	padding-top: 48px;
	border-top: 1px solid var(--gray-200);
}
.pricing-tier-label:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 32px;
}
.savings-hint {
	color: var(--teal);
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}
.pricing-grid-single {
	max-width: 380px;
	margin: 0 auto;
	display: block;
}
.savings-badge {
	display: inline-block;
	background: var(--teal10);
	color: var(--teal);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 12px;
}

/* =============================================
   FEATURE SECTION
   ============================================= */
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 1.4rem;
}
.feature-icon.purple {
	background: var(--purple10);
	color: var(--purple);
}
.feature-icon.pink {
	background: var(--pink10);
	color: var(--pink);
}
.feature-icon.teal {
	background: var(--teal10);
	color: var(--teal);
}

/* =============================================
   PLUGIN CARD (Homepage)
   ============================================= */
.plugin-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 32px;
	transition: all 0.2s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.plugin-card:hover {
	border-color: var(--purple30);
	box-shadow: 0 8px 32px rgba(45,27,105,0.08);
	transform: translateY(-2px);
}
.plugin-card .plugin-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
}
.plugin-card .plugin-tag {
	display: inline-block;
	padding: 4px 12px;
	background: var(--purple10);
	color: var(--purple);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 16px;
}
.plugin-card p {
	color: var(--gray-600);
	flex-grow: 1;
}
.plugin-card .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* =============================================
   USP BAR
   ============================================= */
.usp-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
.usp-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--white80);
}
.usp-item .usp-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--white10);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */
.privacy-content .last-updated {
	font-size: 0.85rem;
	color: var(--gray-400);
	margin-bottom: 2em;
}
.privacy-content h2 {
	margin-top: 2em;
}
.privacy-content h3 {
	margin-top: 1.5em;
}
.privacy-content ul {
	padding-left: 1.5em;
	margin-bottom: 1em;
}
.privacy-content ul li {
	margin-bottom: 0.5em;
}

/* =============================================
   SPACER
   ============================================= */
.spacer-sm { height: var(--padding-small); }
.spacer-md { height: var(--padding-medium); }
.spacer-lg { height: var(--padding-large); }

/* =============================================
   RESPONSIVE IMAGES
   ============================================= */
.img-responsive {
	width: 100%;
	height: auto;
	display: block;
}

/* =============================================
   PRINT
   ============================================= */
/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 40px;
}
.stat-item {
	text-align: center;
	padding: 24px 16px;
}
.stat-number {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--teal);
	line-height: 1.1;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}
.stat-label {
	font-size: 0.85rem;
	color: var(--gray-500);
	line-height: 1.4;
}
@media (max-width: 767px) {
	.stats-bar {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.stat-number {
		font-size: 1.8rem;
	}
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.feature-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 10px;
	padding: 28px 24px;
	height: 100%;
	transition: all 0.2s ease;
}
.feature-card:hover {
	border-color: var(--teal20);
	box-shadow: 0 4px 20px rgba(0,150,136,0.06);
}
.feature-card h3 {
	font-size: 1rem;
	margin-bottom: 8px;
}
.feature-card p {
	color: var(--gray-600);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}
.bg_gray .feature-card {
	background: var(--white);
}

/* =============================================
   FEATURE ICON (purple variant)
   ============================================= */
.feature-icon.purple {
	background: rgba(45,27,105,0.08);
	color: var(--purple);
}

/* =============================================
   STEPS ROW
   ============================================= */
.steps-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-top: 48px;
}
.step-item {
	flex: 1;
	max-width: 320px;
	text-align: center;
	padding: 0 24px;
}
.step-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.step-item h3 {
	text-align: center;
}
.step-item p {
	color: var(--gray-600);
	font-size: 0.9rem;
	line-height: 1.6;
}
.step-divider {
	width: 60px;
	height: 2px;
	background: var(--gray-200);
	margin-top: 24px;
	flex-shrink: 0;
}
@media (max-width: 767px) {
	.steps-row {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	.step-divider {
		width: 2px;
		height: 40px;
		margin-top: 0;
	}
}

/* =============================================
   FREE OPTION BAR
   ============================================= */
.free-option {
	margin-bottom: 8px;
}
.free-option-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--white);
	border: 2px solid var(--teal20);
	border-radius: 10px;
	padding: 16px 24px;
	gap: 16px;
	flex-wrap: wrap;
}
.free-option-text {
	font-size: 0.95rem;
	color: var(--gray-700);
}
.free-option-text strong {
	color: var(--teal);
}

/* =============================================
   INFO BOX
   ============================================= */
.info-box {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-left: 4px solid var(--teal);
	border-radius: 0 8px 8px 0;
	padding: 20px 24px;
}

/* =============================================
   HIGHLIGHT ROW (competitor table)
   ============================================= */
.comparison-table .highlight-row td {
	background: rgba(0,150,136,0.06);
	font-weight: 600;
}
.comparison-table .highlight-row td:first-child {
	color: var(--teal);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-item {
	padding: 24px 0;
	border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
	border-top: 1px solid var(--gray-200);
}
.faq-item h3 {
	color: var(--gray-800);
	font-size: 1.05rem;
	margin-bottom: 8px;
}
.faq-item p {
	color: var(--gray-600);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}
.faq-item a {
	color: var(--teal);
}
.faq-item a:hover {
	color: #00796b;
}

/* =============================================
   LANGUAGE TOGGLE
   ============================================= */
.lang-en { display: none; }
html[lang="en"] .lang-en { display: revert; }
html[lang="en"] .lang-de { display: none; }
html[lang="en"] .lang-en.block { display: block; }
html[lang="en"] .lang-en.inline { display: inline; }
html[lang="en"] .lang-en.flex { display: flex; }
.lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--gray-200);
	border-radius: 6px;
	overflow: hidden;
	margin-left: 16px;
}
.lang-toggle button {
	background: none;
	border: none;
	padding: 6px 12px;
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
	color: var(--gray-500);
	transition: all 0.2s ease;
	letter-spacing: 0.03em;
}
.lang-toggle button.active {
	background: var(--brand);
	color: var(--white);
}
html[lang="en"] .pricing-card.featured::before { content: 'Recommended'; }

/* =============================================
   USP BADGES (replaces emoji trust bar)
   ============================================= */
.usp-badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.usp-badge {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 24px;
	background: var(--white);
	border: 2px solid var(--brand-20);
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--gray-800);
	transition: all 0.2s ease;
}
.usp-badge:hover {
	border-color: var(--brand-50);
	box-shadow: 0 4px 16px rgba(22,160,139,0.1);
	transform: translateY(-2px);
}
.usp-badge svg {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	background: var(--brand-10);
	padding: 4px;
	border-radius: 50%;
}
.usp-badge svg.check { color: var(--brand); }
@media (max-width: 991px) {
	.usp-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
	.usp-badges { grid-template-columns: 1fr; }
}

/* =============================================
   HIGHLIGHT BANNER (VP Free / DSGVO)
   ============================================= */
.highlight-banner {
	background: linear-gradient(135deg, #f0fdf9 0%, #e6f9f4 100%);
	border: 2px solid var(--brand-20);
	border-radius: 16px;
	padding: 48px;
	position: relative;
	overflow: hidden;
}
.highlight-banner::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--brand-10);
}
.highlight-banner .highlight-label {
	display: inline-block;
	padding: 4px 14px;
	background: var(--brand);
	color: var(--white);
	border-radius: 100px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}
.highlight-banner h2 {
	color: var(--brand-dark);
	margin-bottom: 16px;
}
.highlight-banner p {
	color: var(--gray-600);
	font-size: 1.05rem;
	line-height: 1.8;
	max-width: 640px;
}
.highlight-banner .for-layperson,
.dsgvo-banner .for-layperson {
	background: rgba(255,255,255,0.6);
	border-radius: 8px;
	padding: 16px 20px;
	margin-top: 16px;
	font-size: 0.9rem;
	line-height: 1.7;
	border-left: 3px solid var(--brand);
}
.highlight-banner .for-layperson strong,
.dsgvo-banner .for-layperson strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand-dark);
}
.dsgvo-banner .for-layperson {
	border-left-color: var(--purple);
}
.dsgvo-banner .for-layperson strong {
	color: var(--purple);
}
@media (max-width: 767px) {
	.highlight-banner { padding: 32px 24px; }
}

/* =============================================
   DSGVO BADGE
   ============================================= */
.dsgvo-banner {
	background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
	border: 2px solid var(--purple20);
	border-radius: 16px;
	padding: 48px;
	position: relative;
	overflow: hidden;
}
.dsgvo-banner::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--purple10);
}
.dsgvo-banner .highlight-label {
	display: inline-block;
	padding: 4px 14px;
	background: var(--purple);
	color: var(--white);
	border-radius: 100px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}
.dsgvo-banner h2 {
	color: var(--purple);
	margin-bottom: 16px;
}
.dsgvo-banner p {
	color: var(--gray-600);
	font-size: 1.05rem;
	line-height: 1.8;
	max-width: 640px;
}
@media (max-width: 767px) {
	.dsgvo-banner { padding: 32px 24px; }
}

/* =============================================
   FOOTER LOGO FIX
   ============================================= */
footer .footer-logo img {
	height: 28px;
	width: auto;
}
.footer-logo-text {
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--white);
	line-height: 1;
}
.footer-logo-text em {
	font-style: normal;
	color: var(--brand-light);
}

/* =============================================
   DETAIL ACCORDION
   ============================================= */
.detail-block {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 32px;
	margin-bottom: 24px;
}
.detail-block h3 {
	color: var(--purple);
	margin-bottom: 12px;
}
.detail-block p {
	color: var(--gray-600);
	line-height: 1.8;
	margin-bottom: 12px;
}
.detail-block p:last-child {
	margin-bottom: 0;
}
.detail-block .for-layperson {
	background: var(--gray-50);
	border-radius: 8px;
	padding: 16px 20px;
	margin-top: 12px;
	font-size: 0.9rem;
	border-left: 3px solid var(--brand);
}
.detail-block .for-techie {
	background: var(--gray-50);
	border-radius: 8px;
	padding: 16px 20px;
	margin-top: 12px;
	font-size: 0.9rem;
	border-left: 3px solid var(--purple);
}
.detail-block .for-layperson strong,
.detail-block .for-techie strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.detail-block .for-layperson strong { color: var(--brand); }
.detail-block .for-techie strong { color: var(--purple); }

/* =============================================
   HERO LIGHT (inspired by 42 mockup)
   ============================================= */
.hero-light {
	background: var(--white);
	min-height: auto;
	padding-top: 40px;
	padding-bottom: 40px;
}
.hero-light h1 {
	color: var(--purple);
	font-size: 2.8rem;
	line-height: 3.4rem;
	max-width: 700px;
}
.hero-light p.lead {
	color: var(--gray-600);
	font-size: 1.15rem;
	line-height: 1.9rem;
	max-width: 580px;
}
@media (max-width: 767px) {
	.hero-light h1 {
		font-size: 2rem;
		line-height: 2.5rem;
	}
}

/* =============================================
   DECORATIVE BACKGROUND SHAPES
   ============================================= */
.bg-shapes {
	position: relative;
	overflow: hidden;
}
.bg-shapes::before,
.bg-shapes::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}
.bg-shapes::before {
	width: 400px;
	height: 400px;
	background: rgba(45,27,105,0.06);
	top: -100px;
	right: -120px;
}
.bg-shapes::after {
	width: 300px;
	height: 300px;
	background: rgba(22,160,139,0.06);
	bottom: -80px;
	left: -100px;
}
.bg-shapes > * {
	position: relative;
	z-index: 1;
}
.bg-shapes-alt::before {
	background: rgba(233,30,156,0.05);
	top: -60px;
	left: -80px;
	right: auto;
}
.bg-shapes-alt::after {
	background: rgba(45,27,105,0.05);
	bottom: -100px;
	left: auto;
	right: -100px;
}

/* =============================================
   PRICING SECTION DECORATION
   ============================================= */
#pricing {
	position: relative;
	overflow: hidden;
}
#pricing::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(45,27,105,0.04) 0%, transparent 70%);
	top: -150px;
	right: -150px;
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}
#pricing::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(22,160,139,0.05) 0%, transparent 70%);
	bottom: -100px;
	left: -100px;
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}
#pricing > * {
	position: relative;
	z-index: 1;
}

/* =============================================
   PRICING CARD NTH-CHILD COLORS
   ============================================= */
.pricing-grid-single .pricing-card::after { background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%); }
.pricing-grid:not(.pricing-grid-single) .pricing-card:nth-child(1)::after { background: var(--purple); }
.pricing-grid:not(.pricing-grid-single) .pricing-card:nth-child(2)::after { background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 100%); }
.pricing-grid:not(.pricing-grid-single) .pricing-card:nth-child(3)::after { background: var(--pink); }

/* =============================================
   FEATURE CARD HOVER ELEVATION
   ============================================= */
.feature-card {
	position: relative;
	overflow: hidden;
}
.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: transparent;
	transition: background 0.3s ease;
}
.feature-card:hover::before {
	background: var(--brand);
}
.bg_gray .feature-card:hover::before {
	background: var(--purple);
}

/* =============================================
   HERO DECORATION
   ============================================= */
.hero-light {
	position: relative;
	overflow: hidden;
}
.hero-light::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(22,160,139,0.06) 0%, transparent 60%);
	top: -200px;
	right: -200px;
	border-radius: 50%;
	pointer-events: none;
}
.hero-light::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(45,27,105,0.04) 0%, transparent 60%);
	bottom: -150px;
	left: -150px;
	border-radius: 50%;
	pointer-events: none;
}

/* =============================================
   SECTION DIVIDER DECORATION
   ============================================= */
.section-deco {
	position: relative;
}
.section-deco::before {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: rgba(45,27,105,0.03);
	border-radius: 50%;
	top: 20px;
	left: -60px;
	pointer-events: none;
}

/* =============================================
   PRINT
   ============================================= */
@media print {
	header, footer, .btn, .hero-buttons { display: none !important; }
	main { padding-top: 0; }
	body { font-size: 12pt; color: #000; }
	a { color: #000; text-decoration: underline; }
}
