/*
Theme Name: NEON
Theme URI: https://prometheus.360vier.de
Author: 360vier × NEON (AI)
Author URI: https://360vier.de
Description: Ein modernes, warmes Theme inspiriert von Parloa. Elegante Typografie, cleane Lines, professioneller Look.
Version: 3.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neon
Tags: light-mode, full-site-editing, block-patterns, one-column, custom-colors, custom-menu, featured-images
*/

/* === CSS Variables === */
:root {
	/* Colors */
	--primary: #ff7714;
	--secondary: #ed5f00;
	--dark: #1f1c1b;
	--light: #ebe9e1;
	--white: #ffffff;
	--gray-200: #f5f4f0;
	--gray-300: #ebe9e1;
	--gray-400: #d9d6ce;
	--gray-500: #c7c1b7;
	--gray-600: #a69b92;
	--gray-700: #665953;
	--gray-800: #4c423d;
	--gray-900: #2d2724;
	
	/* Spacing Scale (8px base) */
	--space-xs: 0.5rem;    /* 8px */
	--space-sm: 1rem;      /* 16px */
	--space-md: 1.5rem;    /* 24px */
	--space-lg: 2rem;      /* 32px */
	--space-xl: 3rem;      /* 48px */
	--space-2xl: 4rem;     /* 64px */
	--space-3xl: 6rem;     /* 96px */
	
	/* Section Spacing */
	--section-padding: clamp(4rem, 10vw, 8rem);
	--section-gap: clamp(3rem, 8vw, 5rem);
	--content-gap: var(--space-lg);
	--card-gap: var(--space-md);
	
	/* Typography Scale */
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	
	/* Animations */
	--duration-sm: 110ms;
	--duration-md: 260ms;
	--duration-lg: 480ms;
	--ease-out: cubic-bezier(0.14, 0.875, 0.33, 0.915);
	--ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* === ECHO Logo === */
.echo-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--dark);
	transition: opacity var(--duration-md) var(--ease-out);
}

.echo-logo:hover {
	opacity: 0.7;
}

.echo-logo svg text {
	fill: currentColor;
}

.theme-dark .echo-logo,
.theme-dark .echo-logo svg text {
	color: var(--white);
	fill: var(--white);
}

/* === Base Reset === */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
}

/* === Selection === */
::selection {
	background: rgba(255, 119, 20, 0.2);
	color: var(--dark);
}

/* === Smooth Links & Transitions === */
a {
	transition: color var(--duration-md) var(--ease-out);
}

/* === Button Styling === */
.wp-block-button__link {
	transition: all var(--duration-lg) var(--ease-out);
	border-radius: 50px !important;
	position: relative;
}

.wp-block-button__link:hover {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
	color: var(--white) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 119, 20, 0.3);
}

/* Primary button gradient */
.wp-block-button__link.has-contrast-background-color {
	background: linear-gradient(135deg, var(--dark) 0%, #2d2724 100%) !important;
}

.wp-block-button__link.has-contrast-background-color:hover {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
}

/* Accent button gradient */
.wp-block-button__link.has-accent-background-color {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
}

.wp-block-button__link.has-accent-background-color:hover {
	background: linear-gradient(135deg, var(--secondary) 0%, #c94d00 100%) !important;
	box-shadow: 0 8px 30px rgba(255, 119, 20, 0.4);
}

/* Secondary/outline style button */
.wp-block-button__link.has-gray-200-background-color {
	background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-400) 100%) !important;
}

.wp-block-button__link.has-gray-200-background-color:hover {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
	color: var(--white) !important;
}

/* === Anchor Point (Top-Left Corner Marker) === */
.anchor-point {
	position: relative;
}

.anchor-point::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: currentColor;
}

/* === Cards === */
.card {
	background-color: var(--white);
	padding: 2rem;
	transition: all var(--duration-lg) var(--ease-out);
	border-radius: 12px;
}

.card:hover {
	background-color: var(--gray-400);
}

.card-dark {
	background-color: var(--dark);
	color: var(--white);
}

/* === Tech Gradients === */
.gradient-border {
	position: relative;
	background: var(--white);
	border-radius: 12px;
}

.gradient-border::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #ffbe0b 100%);
	border-radius: 14px;
	z-index: -1;
}

.gradient-glow {
	box-shadow: 
		0 0 20px rgba(255, 119, 20, 0.15),
		0 0 40px rgba(237, 95, 0, 0.1);
}

.gradient-text {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Gradient line accent */
.gradient-line {
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, #ffbe0b 100%);
	border-radius: 2px;
}

/* === Separator/Border Styling === */
.separator {
	border: none;
	height: 1px;
	background-color: var(--gray-500);
	transform-origin: 0 50%;
}

/* === Section Backgrounds === */
.theme-light {
	background-color: var(--light);
	color: var(--dark);
}

.theme-dark {
	background-color: var(--dark);
	color: var(--white);
}

.theme-white {
	background-color: var(--white);
	color: var(--dark);
}

/* === Typography Enhancements === */
.text-balance {
	text-wrap: balance;
}

.text-muted {
	color: var(--gray-700);
}

.text-small {
	font-size: 0.875rem;
	line-height: 1.4;
	letter-spacing: 0.01em;
}

.text-eyebrow {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--gray-700);
}

/* === Stats/Numbers === */
.stat-number {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 350;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: var(--dark);
}

.stat-label {
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--gray-700);
	margin-top: 0.5rem;
}

/* === Hero Section === */
.hero-primary {
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 4rem;
}

.hero-title {
	font-size: clamp(2.625rem, 4.5vw + 1rem, 5.125rem);
	font-weight: 350;
	line-height: 1.1;
	letter-spacing: 0.01em;
}

/* === Grid Lines (Decorative) === */
.grid-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.grid-overlay svg {
	width: 100%;
	height: 100%;
}

/* === Gradient Backgrounds === */
.gradient-warm {
	background: linear-gradient(180deg, var(--gray-200) 0%, var(--light) 100%);
}

.gradient-dark {
	background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 100%);
}

/* === Icons === */
.icon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.icon svg {
	width: 100%;
	height: 100%;
}

/* === Hover Effects === */
.hover-lift {
	transition: transform var(--duration-lg) var(--ease-out);
}

.hover-lift:hover {
	transform: translateY(-4px);
}

/* === Focus States === */
:focus-visible {
	outline: 1px dashed var(--dark);
	outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 1px solid var(--gray-500);
	outline-offset: -2px;
}

/* === Code Blocks === */
code, pre {
	font-family: 'JetBrains Mono', 'Fira Code', monospace;
	font-size: 0.875rem;
}

pre {
	background-color: var(--white);
	border: 1px solid var(--gray-500);
	padding: 1.5rem;
	overflow-x: auto;
}

/* === Blockquotes === */
blockquote {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.3;
	border-left: 3px solid var(--primary);
	padding-left: 1.5rem;
	color: var(--gray-700);
}

/* === Tables === */
table {
	width: 100%;
	border-collapse: collapse;
}

th, td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--gray-500);
}

th {
	font-weight: 600;
	background-color: var(--gray-200);
}

/* === Forms === */
input,
select,
textarea {
	font-family: inherit;
	font-size: 1rem;
	padding: 0.875rem 1rem;
	border: none;
	background-color: var(--white);
	color: var(--dark);
	width: 100%;
	transition: outline var(--duration-sm) var(--ease-out);
}

input::placeholder,
textarea::placeholder {
	color: var(--gray-600);
}

/* === Pills/Tags === */
.tag {
	display: inline-flex;
	align-items: center;
	padding: 2px 12px;
	min-height: 30px;
	background-color: var(--gray-400);
	color: var(--dark);
	font-size: 0.875rem;
	text-transform: capitalize;
	transition: background-color var(--duration-md) var(--ease-out);
}

.tag:hover {
	background-color: var(--gray-500);
}

/* === List Styling === */
ul.styled-list,
ol.styled-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

ul.styled-list li::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: currentColor;
	margin-right: 0.75rem;
	vertical-align: middle;
}

/* === Animation Classes === */
.fade-in {
	opacity: 0;
	transform: translateY(0.75rem);
	animation: fadeInUp 1.12s var(--ease-out) forwards;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.split-text > span {
	filter: blur(6px);
	opacity: 0;
	animation: splitTextIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes splitTextIn {
	0% {
		opacity: 0;
		filter: blur(6px);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}

/* === Scrollbar (Minimal) === */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--light);
}

::-webkit-scrollbar-thumb {
	background: var(--gray-500);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gray-600);
}

/* === Responsive Container === */
.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 5vw, 1.5rem);
}

/* === Section System === */
.section {
	padding: var(--section-padding) clamp(1.5rem, 5vw, 3rem);
}

.section--compact {
	padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
}

.section--large {
	padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 5vw, 3rem);
}

/* Section Header */
.section-header {
	margin-bottom: var(--section-gap);
}

.section-header--center {
	text-align: center;
}

.section-header--center .eyebrow,
.section-header--center h2,
.section-header--center .section-intro {
	text-align: center;
}

/* Eyebrow */
.eyebrow {
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: var(--space-sm);
}

/* Section Intro */
.section-intro {
	font-size: clamp(var(--text-base), 2vw, var(--text-lg));
	line-height: 1.6;
	margin-top: var(--space-sm);
}

/* Card Grid */
.card-grid {
	display: grid;
	gap: var(--card-gap);
}

.card-grid--2 {
	grid-template-columns: repeat(1, 1fr);
}

.card-grid--3 {
	grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
	.card-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.card-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Content Columns */
.content-columns {
	gap: clamp(var(--space-lg), 5vw, var(--space-2xl)) !important;
}

/* Hero Section */
.section-hero {
	padding-top: clamp(2rem, 6vh, 4rem);
	padding-bottom: var(--section-padding);
}

.hero-content {
	margin-bottom: var(--space-lg);
}

.hero-content h1 {
	margin: 0;
}

.hero-headline {
	font-size: clamp(2.5rem, 8vw, 5.5rem) !important;
	font-weight: 350 !important;
	letter-spacing: -0.02em !important;
	line-height: 1.05 !important;
}

.hero-intro {
	margin-bottom: var(--space-lg);
}

.hero-intro .lead {
	font-size: clamp(var(--text-lg), 2.5vw, 1.375rem);
	line-height: 1.5;
	color: var(--gray-700);
	margin: 0;
}

.hero-buttons {
	margin-bottom: 0;
}

.hero-buttons .wp-block-button__link {
	padding: var(--space-sm) var(--space-lg);
}

/* Typography Hierarchy */
h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
	margin-top: 0 !important;
	margin-bottom: var(--space-md) !important;
}

h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important;
	margin-top: 0 !important;
	margin-bottom: var(--space-sm) !important;
}

/* Body Text */
.body-text {
	font-size: clamp(var(--text-base), 2vw, var(--text-lg));
	line-height: 1.6;
	margin-bottom: var(--space-sm);
}

.body-text:last-of-type {
	margin-bottom: 0;
}

/* Buttons consistent padding */
.wp-block-button__link {
	padding: var(--space-sm) var(--space-lg) !important;
}

.wp-block-buttons {
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

/* === Image Styling === */
img {
	max-width: 100%;
	height: auto;
}

figure {
	margin: 0;
}

figcaption {
	font-size: 0.875rem;
	color: var(--gray-700);
	margin-top: 1rem;
}

/* === Aspect Ratios === */
.aspect-video {
	aspect-ratio: 16 / 9;
}

.aspect-square {
	aspect-ratio: 1 / 1;
}

.aspect-portrait {
	aspect-ratio: 3 / 4;
}

/* === Hide/Show Utilities === */
@media (max-width: 1023px) {
	.hide-mobile {
		display: none !important;
	}
}

@media (min-width: 1024px) {
	.hide-desktop {
		display: none !important;
	}
}

/* === Stats Grid === */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (min-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 3rem;
	}
}

.stat-item {
	text-align: center;
	padding: var(--space-md) var(--space-sm);
}

.stat-item .stat-number {
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: var(--space-xs);
}

.stat-item .stat-label {
	font-size: var(--text-sm);
	color: var(--gray-700);
}

/* === Skills Grid === */
.skills-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.skills-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.skills-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.skill-card {
	background: linear-gradient(145deg, var(--gray-200) 0%, var(--white) 100%);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	transition: all var(--duration-lg) var(--ease-out);
	border-radius: 16px;
	border: 1px solid var(--gray-400);
}

.skill-card:hover {
	background: linear-gradient(145deg, var(--white) 0%, var(--gray-200) 100%);
	transform: translateY(-6px);
	border-color: var(--primary);
	box-shadow: 0 12px 40px rgba(255, 119, 20, 0.15);
}

.skill-card .skill-icon {
	font-size: 2rem;
	margin-bottom: var(--space-md);
}

.skill-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important;
	font-weight: 400;
	margin: 0 0 var(--space-sm) !important;
	color: var(--dark);
}

.skill-card p {
	font-size: var(--text-sm);
	line-height: 1.5;
	color: var(--gray-700);
	margin: 0;
}

/* === Code Preview === */
.code-preview {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 119, 20, 0.2);
	padding: clamp(1.25rem, 4vw, 2rem);
	overflow-x: auto;
	max-width: 100%;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.code-preview pre {
	margin: 0;
	background: transparent;
	border: none;
	padding: 0;
	overflow-x: auto;
	white-space: pre-wrap;
	word-break: break-word;
}

.code-preview code {
	font-family: 'JetBrains Mono', monospace;
	font-size: clamp(0.8rem, 2vw, 0.9375rem);
	line-height: 1.7;
	color: var(--gray-400);
}

.code-preview .code-keyword {
	color: #c792ea;
}

.code-preview .code-property {
	color: var(--primary);
}

.code-preview .code-string {
	color: #c3e88d;
}

/* === Philosophy Values === */
.philosophy-values {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.value-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: clamp(0.9375rem, 2vw, 1.0625rem);
	color: var(--dark);
}

.value-marker {
	width: 8px;
	height: 8px;
	background: var(--primary);
	flex-shrink: 0;
}

/* === Terminal Styles (Updated) === */
#neon-terminal {
	background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
	border: 1px solid rgba(255, 119, 20, 0.15);
	border-radius: 16px;
	overflow: hidden;
	font-family: 'JetBrains Mono', monospace;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.neon-terminal-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-terminal-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.neon-terminal-dot.red { background: #ff5f56; }
.neon-terminal-dot.yellow { background: #ffbd2e; }
.neon-terminal-dot.green { background: #27ca40; }

.neon-terminal-title {
	margin-left: auto;
	font-size: 0.75rem;
	color: var(--gray-600);
}

.neon-terminal-body {
	padding: clamp(1.25rem, 4vw, 2rem);
	min-height: 200px;
	max-height: 400px;
	overflow-y: auto;
}

.neon-output {
	margin-bottom: 1rem;
}

.neon-output .message {
	margin-bottom: 0.75rem;
	line-height: 1.5;
	font-size: clamp(0.8125rem, 2vw, 0.875rem);
}

.neon-output .message.user {
	color: var(--gray-400);
}

.neon-output .message.user::before {
	content: '❯ ';
	color: var(--primary);
}

.neon-output .message.neon {
	color: var(--gray-300);
}

.neon-input-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.neon-input-prompt {
	color: var(--primary);
	font-size: 1rem;
}

.neon-input {
	flex: 1;
	background: transparent;
	border: none;
	padding: 0;
	color: var(--white);
	font-family: 'JetBrains Mono', monospace;
	font-size: clamp(0.8125rem, 2vw, 0.9375rem);
	outline: none;
}

.neon-input::placeholder {
	color: var(--gray-700);
}

/* === Hero Headline Animation === */
.hero-headline {
	opacity: 0;
	transform: translateY(20px);
	animation: heroFadeIn 0.8s var(--ease-out) forwards;
}

.hero-headline:nth-child(2) {
	animation-delay: 0.15s;
}

@keyframes heroFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* === Lab Entries (Labortagebuch) === */
.lab-entries {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.lab-entries {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.lab-entry {
	background: linear-gradient(145deg, var(--gray-200) 0%, var(--white) 100%);
	padding: clamp(1.5rem, 4vw, 2rem);
	transition: all var(--duration-lg) var(--ease-out);
	position: relative;
	border-radius: 16px;
	border: 1px solid var(--gray-400);
}

.lab-entry:hover {
	background: linear-gradient(145deg, var(--white) 0%, var(--gray-200) 100%);
	transform: translateY(-6px);
	border-color: var(--primary);
	box-shadow: 0 12px 40px rgba(255, 119, 20, 0.12);
}

.lab-entry-date {
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	margin-bottom: var(--space-sm);
}

.lab-entry h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important;
	font-weight: 400;
	margin: 0 0 var(--space-sm) !important;
	color: var(--dark);
}

.lab-entry p {
	font-size: var(--text-sm);
	line-height: 1.5;
	color: var(--gray-700);
	margin: 0 0 var(--space-md);
}

.lab-entry-tag {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gray-600);
	background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
	padding: 0.375rem 0.75rem;
	border-radius: 20px;
}

/* Gradient accent for sections */
.theme-dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 40%, #ffbe0b 70%, var(--primary) 100%);
	background-size: 200% 100%;
	animation: gradientShift 8s linear infinite;
}

.theme-dark {
	position: relative;
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	100% { background-position: 200% 50%; }
}

/* === CRAB RAVE CLICKER GAME === */
.crab-game-container {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
	border: 1px solid rgba(255, 119, 20, 0.2);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.crab-game-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crab-game-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.crab-game-stats {
	display: flex;
	gap: 1.5rem;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.875rem;
}

.crab-stat {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.7);
}

.crab-stat-value {
	color: #ffbe0b;
	font-weight: 700;
}

#crab-game-area {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	cursor: crosshair;
	background-image: url("data:image/svg+xml,%3Csvg width='800' height='400' viewBox='0 0 800 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3C!-- ECHO waves background --%3E%3Cg opacity='0.08'%3E%3C!-- Center wave pattern --%3E%3Ccircle cx='400' cy='200' r='40' stroke='%23ff7714' stroke-width='2' fill='none'/%3E%3Ccircle cx='400' cy='200' r='80' stroke='%23ff7714' stroke-width='2' fill='none'/%3E%3Ccircle cx='400' cy='200' r='120' stroke='%23ff7714' stroke-width='2' fill='none'/%3E%3Ccircle cx='400' cy='200' r='160' stroke='%23ff7714' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='400' cy='200' r='200' stroke='%23ff7714' stroke-width='1' fill='none'/%3E%3Ccircle cx='400' cy='200' r='250' stroke='%23ff7714' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='400' cy='200' r='300' stroke='%23ff7714' stroke-width='0.5' fill='none'/%3E%3C!-- Sound bars left --%3E%3Crect x='60' y='160' width='8' height='80' rx='4' fill='%23ff7714'/%3E%3Crect x='80' y='140' width='8' height='120' rx='4' fill='%23ff7714'/%3E%3Crect x='100' y='120' width='8' height='160' rx='4' fill='%23ff7714'/%3E%3Crect x='120' y='140' width='8' height='120' rx='4' fill='%23ff7714'/%3E%3Crect x='140' y='160' width='8' height='80' rx='4' fill='%23ff7714'/%3E%3C!-- Sound bars right --%3E%3Crect x='652' y='160' width='8' height='80' rx='4' fill='%23ff7714'/%3E%3Crect x='672' y='140' width='8' height='120' rx='4' fill='%23ff7714'/%3E%3Crect x='692' y='120' width='8' height='160' rx='4' fill='%23ff7714'/%3E%3Crect x='712' y='140' width='8' height='120' rx='4' fill='%23ff7714'/%3E%3Crect x='732' y='160' width='8' height='80' rx='4' fill='%23ff7714'/%3E%3C!-- Scattered dots --%3E%3Ccircle cx='200' cy='80' r='4' fill='%23ff7714'/%3E%3Ccircle cx='600' cy='80' r='4' fill='%23ff7714'/%3E%3Ccircle cx='200' cy='320' r='4' fill='%23ff7714'/%3E%3Ccircle cx='600' cy='320' r='4' fill='%23ff7714'/%3E%3Ccircle cx='300' cy='50' r='3' fill='%23ff7714'/%3E%3Ccircle cx='500' cy='350' r='3' fill='%23ff7714'/%3E%3C/g%3E%3C!-- Subtle grid --%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='800' height='400' fill='url(%23grid)'/%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
}

@media (max-width: 640px) {
	#crab-game-area {
		height: 60vh;
		min-height: 350px;
	}
}

/* Animated pulse rings */
#crab-game-area::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150px;
	height: 150px;
	transform: translate(-50%, -50%);
	border: 2px solid rgba(255, 119, 20, 0.15);
	border-radius: 50%;
	animation: pulseRing 3s ease-out infinite;
	pointer-events: none;
	z-index: 1;
}

#crab-game-area::after {
	content: '🦀';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
	opacity: 0.15;
	pointer-events: none;
	z-index: 1;
	animation: crabPulse 2s ease-in-out infinite;
}

@keyframes pulseRing {
	0% {
		width: 100px;
		height: 100px;
		opacity: 0.3;
	}
	100% {
		width: 300px;
		height: 300px;
		opacity: 0;
	}
}

@keyframes crabPulse {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.15;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 0.25;
	}
}

.crab {
	position: absolute;
	font-size: 2.5rem;
	cursor: pointer;
	transform: scale(0) rotate(-20deg);
	transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 10;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
	animation: crabWiggle 0.6s ease-in-out infinite;
}

.crab.active {
	transform: scale(1) rotate(0deg);
}

.crab.caught {
	transform: scale(1.5) rotate(20deg) !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}

.crab.escaped {
	transform: scale(0) rotate(-40deg) translateY(20px) !important;
	opacity: 0;
}

@keyframes crabWiggle {
	0%, 100% { transform: scale(1) rotate(-3deg); }
	50% { transform: scale(1) rotate(3deg); }
}

.crab.active {
	animation: crabWiggle 0.6s ease-in-out infinite;
}

.points-popup {
	position: absolute;
	font-family: 'JetBrains Mono', monospace;
	font-size: 1.25rem;
	font-weight: 700;
	color: #06ffa5;
	pointer-events: none;
	animation: pointsFloat 0.6s ease-out forwards;
	text-shadow: 0 2px 10px rgba(6, 255, 165, 0.5);
	z-index: 20;
}

@keyframes pointsFloat {
	0% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	100% {
		opacity: 0;
		transform: translateY(-40px) scale(1.2);
	}
}

/* Rave Mode */
#rave-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
}

#rave-overlay.active {
	opacity: 1;
	visibility: visible;
}

#rave-overlay::before {
	content: '🦀 CRAB RAVE! 🦀';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(1.5rem, 5vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	text-align: center;
	z-index: 101;
	animation: raveText 0.3s ease-in-out infinite alternate;
	text-shadow: 0 0 20px #ff006e, 0 0 40px #ff006e;
}

@keyframes raveText {
	0% { transform: translate(-50%, -50%) scale(1); }
	100% { transform: translate(-50%, -50%) scale(1.1); }
}

.rave-crab {
	position: absolute;
	font-size: 2rem;
	animation: raveDance 0.4s ease-in-out infinite alternate;
}

@keyframes raveDance {
	0% { transform: translateY(0) rotate(-10deg) scale(1); }
	100% { transform: translateY(-15px) rotate(10deg) scale(1.1); }
}

body.rave-mode {
	animation: raveBackground 0.2s linear infinite;
}

@keyframes raveBackground {
	0% { background-color: #ff006e; }
	25% { background-color: #8338ec; }
	50% { background-color: #3a86ff; }
	75% { background-color: #06ffa5; }
	100% { background-color: #ffbe0b; }
}

.crab-game-footer {
	padding: 1rem 1.25rem;
	background: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.crab-game-hint {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.crab-game-reset {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.7);
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.crab-game-reset:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

/* === Hero Stage - Pop Art Lichtenstein Style === */
.hero-stage {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

.pop-art-hero {
	width: 100%;
	max-width: 380px;
	height: auto;
}

/* Main crab animation */
.pop-art-hero .main-crab {
	animation: crabFloat 3s ease-in-out infinite;
}

@keyframes crabFloat {
	0%, 100% {
		transform: translate(120px, 60px) rotate(-1deg);
	}
	50% {
		transform: translate(120px, 52px) rotate(1deg);
	}
}

/* Claw snap animation */
.pop-art-hero .claw-left {
	transform-origin: 20px 50px;
	animation: clawSnap 2s ease-in-out infinite;
}

.pop-art-hero .claw-right {
	transform-origin: 140px 50px;
	animation: clawSnap 2s ease-in-out infinite 0.5s;
}

@keyframes clawSnap {
	0%, 70%, 100% { transform: rotate(0deg); }
	80% { transform: rotate(-8deg); }
	90% { transform: rotate(5deg); }
}

/* Eye blink */
.pop-art-hero .eyes {
	animation: eyeBlink 4s ease-in-out infinite;
}

@keyframes eyeBlink {
	0%, 45%, 55%, 100% { transform: scaleY(1); }
	50% { transform: scaleY(0.1); }
}

/* Speech bubble pop */
.pop-art-hero .speech-bubble {
	animation: bubblePop 0.5s ease-out forwards, bubbleFloat 2s ease-in-out infinite 0.5s;
	opacity: 0;
	transform: scale(0.5);
}

@keyframes bubblePop {
	0% { opacity: 0; transform: scale(0.5); }
	70% { transform: scale(1.1); }
	100% { opacity: 1; transform: scale(1); }
}

@keyframes bubbleFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

/* Action lines pulse */
.pop-art-hero .action-lines line {
	animation: linePulse 1.5s ease-in-out infinite;
}

.pop-art-hero .action-lines line:nth-child(2) { animation-delay: 0.2s; }
.pop-art-hero .action-lines line:nth-child(3) { animation-delay: 0.4s; }
.pop-art-hero .action-lines line:nth-child(4) { animation-delay: 0.1s; }
.pop-art-hero .action-lines line:nth-child(5) { animation-delay: 0.3s; }
.pop-art-hero .action-lines line:nth-child(6) { animation-delay: 0.5s; }

@keyframes linePulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 0.2; }
}

/* Mini crabs bounce */
.pop-art-hero .mini-crab {
	animation: miniCrabBounce 1.5s ease-in-out infinite;
}

.pop-art-hero .mini-crab:nth-of-type(2) {
	animation-delay: 0.3s;
}

@keyframes miniCrabBounce {
	0%, 100% { transform: translateY(0) scale(0.4); }
	50% { transform: translateY(-5px) scale(0.4); }
}

/* === Zahnarzt/Lieblingsorth Components === */
.zahnarzt-hero-icon {
	width: 100%;
	max-width: 280px;
	height: auto;
	margin: 0 auto var(--space-lg);
	display: block;
}

/* Service Cards */
.service-card {
	display: block;
	background: linear-gradient(145deg, var(--gray-200) 0%, var(--white) 100%);
	padding: var(--space-lg);
	border-radius: 16px;
	border: 1px solid var(--gray-400);
	text-decoration: none;
	color: inherit;
	transition: all var(--duration-lg) var(--ease-out);
}

.service-card:hover {
	background: linear-gradient(145deg, var(--white) 0%, var(--gray-200) 100%);
	transform: translateY(-6px);
	border-color: var(--primary);
	box-shadow: 0 12px 40px rgba(255, 119, 20, 0.15);
}

.service-card .service-icon {
	font-size: 2.5rem;
	margin-bottom: var(--space-md);
}

.service-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.375rem !important;
	font-weight: 400;
	margin: 0 0 var(--space-sm) !important;
	color: var(--dark);
}

.service-card p {
	font-size: var(--text-sm);
	line-height: 1.5;
	color: var(--gray-700);
	margin: 0;
}

.service-card--large {
	padding: var(--space-xl);
}

.service-card--large h3 {
	font-size: 1.5rem !important;
}

.service-card--large p {
	font-size: var(--text-base);
	margin-bottom: var(--space-md);
}

.service-card .service-link {
	display: inline-block;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--primary);
	margin-top: var(--space-sm);
}

/* Location Cards */
.location-card {
	background: linear-gradient(145deg, var(--gray-200) 0%, var(--white) 100%);
	padding: var(--space-lg);
	border-radius: 16px;
	border: 1px solid var(--gray-400);
	transition: all var(--duration-lg) var(--ease-out);
}

.location-card:hover {
	border-color: var(--primary);
	box-shadow: 0 8px 30px rgba(255, 119, 20, 0.1);
}

.location-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem !important;
	font-weight: 400;
	margin: 0 0 var(--space-sm) !important;
	color: var(--dark);
}

.location-card p {
	font-size: var(--text-sm);
	line-height: 1.6;
	color: var(--gray-700);
	margin: 0 0 var(--space-xs);
}

.location-card .hours {
	font-size: var(--text-xs);
	color: var(--primary);
	font-weight: 600;
	margin-top: var(--space-sm);
}

/* Feature Visual */
.feature-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: var(--space-lg);
}

.feature-visual svg {
	width: 100%;
	max-width: 300px;
	height: auto;
}

/* Team Cards */
.team-card {
	background: linear-gradient(145deg, var(--gray-200) 0%, var(--white) 100%);
	padding: var(--space-lg);
	border-radius: 16px;
	border: 1px solid var(--gray-400);
	text-align: center;
	transition: all var(--duration-lg) var(--ease-out);
}

.team-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
}

.team-card .team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	margin: 0 auto var(--space-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
}

.team-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem !important;
	margin: 0 0 var(--space-xs) !important;
}

.team-card .team-role {
	font-size: var(--text-sm);
	color: var(--primary);
	font-weight: 500;
	margin-bottom: var(--space-sm);
}

.team-card p {
	font-size: var(--text-sm);
	color: var(--gray-700);
	margin: 0;
}

/* FAQ Accordion */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--gray-400);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color var(--duration-md) var(--ease-out);
}

.faq-item[open] {
	border-color: var(--primary);
}

.faq-item summary {
	padding: var(--space-md) var(--space-lg);
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--dark);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background var(--duration-md) var(--ease-out);
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	font-size: 1.5rem;
	color: var(--primary);
	font-weight: 300;
	transition: transform var(--duration-md) var(--ease-out);
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item summary:hover {
	background: var(--gray-200);
}

.faq-answer {
	padding: 0 var(--space-lg) var(--space-lg);
	font-size: var(--text-base);
	line-height: 1.6;
	color: var(--gray-700);
}

.faq-answer p {
	margin: 0;
}

/* Testimonial Cards */
.testimonial-card {
	background: linear-gradient(145deg, var(--white) 0%, var(--gray-200) 100%);
	padding: var(--space-xl);
	border-radius: 16px;
	border-left: 4px solid var(--primary);
}

.testimonial-card blockquote {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--dark);
	margin: 0 0 var(--space-md);
	border: none;
	padding: 0;
}

.testimonial-card cite {
	font-size: var(--text-sm);
	color: var(--gray-600);
	font-style: normal;
}

/* Step Cards (Process) */
.step-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 119, 20, 0.2);
	border-radius: 16px;
	padding: var(--space-xl);
	transition: all var(--duration-lg) var(--ease-out);
}

.step-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--primary);
}

.step-card .step-number {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 3rem;
	font-weight: 350;
	color: var(--primary);
	line-height: 1;
	margin-bottom: var(--space-md);
}

.step-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.375rem !important;
	color: var(--white);
	margin: 0 0 var(--space-sm) !important;
}

.step-card p {
	font-size: var(--text-sm);
	color: var(--gray-500);
	margin: 0;
	line-height: 1.6;
}

/* Audience Cards */
.audience-card {
	background: linear-gradient(145deg, var(--gray-200) 0%, var(--white) 100%);
	border: 1px solid var(--gray-400);
	border-radius: 16px;
	padding: var(--space-xl);
	text-align: center;
	transition: all var(--duration-lg) var(--ease-out);
}

.audience-card:hover {
	transform: translateY(-6px);
	border-color: var(--primary);
	box-shadow: 0 12px 40px rgba(255, 119, 20, 0.12);
}

.audience-card .audience-icon {
	font-size: 3rem;
	margin-bottom: var(--space-md);
}

.audience-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem !important;
	margin: 0 0 var(--space-sm) !important;
}

.audience-card p {
	font-size: var(--text-sm);
	color: var(--gray-700);
	margin: 0;
	line-height: 1.6;
}

/* === BECKERS DIENSTLEISTUNGEN THEME === */
.beckers-theme {
	--beckers-primary: #48990e;
	--beckers-secondary: #449a01;
	--beckers-accent: #c0e120;
	--beckers-dark: #313131;
	--beckers-light: #f0f7e6;
	--beckers-spacing: clamp(3rem, 6vw, 5rem);
}

/* Full-width sections */
.beckers-theme .section {
	padding: var(--beckers-spacing) clamp(1rem, 4vw, 2rem);
	max-width: 100%;
}

.beckers-theme .wp-block-group {
	max-width: 100%;
}

/* Beckers Accent Color */
.beckers-theme .beckers-accent {
	color: var(--beckers-primary) !important;
}

/* Beckers Hero - Compact, Above the Fold */
.beckers-theme .beckers-hero {
	background: linear-gradient(145deg, var(--beckers-light) 0%, #fff 100%);
	padding-top: clamp(1.5rem, 4vw, 3rem) !important;
	padding-bottom: var(--beckers-spacing) !important;
}

.beckers-theme .beckers-hero .hero-content {
	margin-bottom: var(--space-md);
}

.beckers-theme .beckers-hero .hero-headline {
	font-size: clamp(1.75rem, 5vw, 3.5rem) !important;
	margin-bottom: 0 !important;
}

.beckers-theme .beckers-hero .hero-intro {
	margin-bottom: var(--space-md);
}

.beckers-theme .beckers-hero .lead {
	font-size: clamp(1rem, 2vw, 1.125rem);
}

.beckers-hero-visual {
	display: flex;
	justify-content: center;
	margin-bottom: var(--space-md);
}

.beckers-hero-visual svg {
	width: 100%;
	max-width: 200px;
	height: auto;
}

@media (min-width: 768px) {
	.beckers-theme .beckers-hero > .wp-block-group:first-of-type {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
		gap: var(--space-xl);
	}
	
	.beckers-hero-visual {
		order: 2;
		margin-bottom: 0;
	}
	
	.beckers-hero-visual svg {
		max-width: 220px;
	}
	
	.beckers-hero-content {
		order: 1;
	}
}

/* Hero content wrapper */
.beckers-hero-content {
	display: flex;
	flex-direction: column;
}

.beckers-hero-content .eyebrow {
	margin-bottom: var(--space-xs);
}

.beckers-hero-content .hero-headline {
	margin-bottom: var(--space-sm) !important;
}

.beckers-hero-content .hero-buttons {
	margin-top: var(--space-md);
}

/* Beckers Buttons */
.beckers-theme .beckers-btn-primary .wp-block-button__link {
	background: linear-gradient(135deg, var(--beckers-primary) 0%, var(--beckers-secondary) 100%) !important;
	color: #fff !important;
}

.beckers-theme .beckers-btn-primary .wp-block-button__link:hover {
	background: linear-gradient(135deg, var(--beckers-accent) 0%, var(--beckers-primary) 100%) !important;
	box-shadow: 0 8px 25px rgba(72, 153, 14, 0.3);
}

.beckers-theme .beckers-btn-secondary .wp-block-button__link {
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%) !important;
	color: var(--beckers-dark) !important;
}

.beckers-theme .beckers-btn-secondary .wp-block-button__link:hover {
	background: linear-gradient(135deg, var(--beckers-primary) 0%, var(--beckers-secondary) 100%) !important;
	color: #fff !important;
}

/* Beckers Sections */
.beckers-theme .beckers-section-dark {
	background: linear-gradient(145deg, var(--beckers-dark) 0%, #252525 100%);
	color: #fff;
}

.beckers-theme .beckers-section-dark h2 {
	color: #fff;
}

.beckers-theme .beckers-section-light {
	background: var(--beckers-light);
}

.beckers-theme .beckers-section-white {
	background: #fff;
}

/* Beckers Service Cards */
.beckers-service-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(72, 153, 14, 0.3);
	border-radius: 16px;
	padding: var(--beckers-spacing);
	transition: all var(--duration-lg) var(--ease-out);
}

.beckers-service-card:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--beckers-primary);
	transform: translateY(-4px);
}

.beckers-service-card .service-icon {
	width: 48px;
	height: 48px;
	margin-bottom: var(--space-md);
	display: flex;
	align-items: center;
	justify-content: center;
}

.beckers-service-card .service-icon svg {
	width: 100%;
	height: 100%;
}

.beckers-service-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.375rem !important;
	color: #fff;
	margin: 0 0 var(--space-sm) !important;
}

.beckers-service-card p {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	line-height: 1.6;
}

/* Service Cards in Light/White Sections - Dark Text */
.beckers-section-white .beckers-service-card,
.beckers-section-light .beckers-service-card {
	background: linear-gradient(145deg, #fff 0%, var(--beckers-light) 100%);
	border-color: var(--beckers-primary);
}

.beckers-section-white .beckers-service-card h3,
.beckers-section-light .beckers-service-card h3 {
	color: var(--beckers-dark);
}

.beckers-section-white .beckers-service-card p,
.beckers-section-light .beckers-service-card p {
	color: var(--gray-700);
}

/* Beckers Service Card as Link */
a.beckers-service-card--link {
	text-decoration: none;
	display: block;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.beckers-service-card--link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(72, 153, 14, 0.3);
}

a.beckers-service-card--link .card-link-arrow {
	position: absolute;
	bottom: var(--space-md);
	right: var(--space-md);
	font-size: 1.5rem;
	color: var(--beckers-accent);
	opacity: 0.6;
	transition: opacity 0.2s, transform 0.2s;
}

a.beckers-service-card--link:hover .card-link-arrow {
	opacity: 1;
	transform: translateX(4px);
}

/* Beckers Subpage Hero */
.beckers-hero--subpage {
	padding: var(--space-2xl) var(--space-md) !important;
	text-align: center;
}

.beckers-hero--subpage .hero-headline {
	font-size: clamp(2rem, 5vw, 3rem);
}

/* Beckers Regions Compact */
.beckers-regions--compact .region-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm) var(--space-lg);
	list-style: none;
	padding: 0;
	margin: var(--space-md) 0;
	justify-content: center;
}

.beckers-regions--compact .region-list li {
	color: var(--gray-700);
}

.beckers-regions--compact .region-list li strong {
	color: var(--beckers-primary);
}

/* Beckers Section Headers */
.beckers-theme .section-header {
	margin-bottom: var(--space-xl);
}

/* Beckers Card Grid */
.beckers-theme .card-grid {
	gap: var(--space-md);
}

@media (min-width: 768px) {
	.beckers-theme .card-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.beckers-theme .card-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Beckers Stats */
.beckers-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
}

.beckers-stat {
	text-align: center;
	padding: var(--space-lg);
	background: #fff;
	border-radius: 16px;
	border: 2px solid var(--beckers-primary);
}

.beckers-stat-number {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 400;
	color: var(--beckers-primary);
	line-height: 1.2;
}

.beckers-stat-label {
	font-size: var(--text-sm);
	color: var(--beckers-dark);
	margin-top: var(--space-xs);
}

/* Beckers Testimonials */
.beckers-testimonial {
	background: linear-gradient(145deg, #fff 0%, var(--beckers-light) 100%);
	padding: var(--space-xl);
	border-radius: 16px;
	border-left: 4px solid var(--beckers-primary);
}

.beckers-testimonial blockquote {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--beckers-dark);
	margin: 0 0 var(--space-md);
	padding: 0;
	border: none;
}

.beckers-testimonial cite {
	font-size: var(--text-sm);
	color: var(--beckers-primary);
	font-style: normal;
	font-weight: 600;
}

/* Beckers CTA Section */
.beckers-theme .beckers-cta-section {
	background: linear-gradient(145deg, var(--beckers-primary) 0%, var(--beckers-secondary) 100%);
	color: #fff;
}

.beckers-theme .beckers-cta-section h2 {
	color: #fff;
}

.beckers-theme .beckers-cta-section .section-intro {
	color: rgba(255, 255, 255, 0.9);
}

/* Beckers Contact Box */
.beckers-contact-box {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: var(--space-xl);
	text-align: center;
	margin: var(--space-xl) auto;
	max-width: 400px;
}

.beckers-contact-person {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.beckers-contact-person .contact-avatar {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.beckers-contact-person .contact-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.beckers-contact-person .contact-avatar svg {
	width: 60%;
	height: 60%;
}

.beckers-contact-person .contact-info h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem !important;
	color: #fff;
	margin: 0 !important;
}

.beckers-contact-person .contact-info p {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.beckers-phone-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	background: #fff;
	color: var(--beckers-primary);
	padding: var(--space-md) var(--space-xl);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.25rem;
	transition: all var(--duration-lg) var(--ease-out);
}

.beckers-phone-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.beckers-phone-btn .phone-icon {
	font-size: 1.5rem;
}

.beckers-contact-box .contact-hint {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.7);
	margin-top: var(--space-md);
}

/* Beckers Regions Grid */
.beckers-regions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
}

@media (min-width: 768px) {
	.beckers-regions {
		grid-template-columns: repeat(4, 1fr);
	}
}

.beckers-regions .region-group {
	background: #fff;
	border-radius: 12px;
	padding: var(--space-md);
	border: 1px solid rgba(72, 153, 14, 0.2);
	transition: all var(--duration-lg) var(--ease-out);
}

.beckers-regions .region-group:hover {
	border-color: var(--beckers-primary);
	box-shadow: 0 8px 25px rgba(72, 153, 14, 0.15);
}

.beckers-regions .region-group h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.125rem !important;
	color: var(--beckers-primary);
	margin: 0 0 var(--space-md) !important;
}

.beckers-regions .region-group ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.beckers-regions .region-group ul li {
	font-size: var(--text-sm);
	color: var(--beckers-dark);
	padding: var(--space-xs) 0;
	border-bottom: 1px solid rgba(72, 153, 14, 0.1);
}

.beckers-regions .region-group ul li:last-child {
	border-bottom: none;
}

/* Beckers FAQ in theme colors */
.beckers-theme .faq-item {
	border-color: rgba(72, 153, 14, 0.3);
}

.beckers-theme .faq-item[open] {
	border-color: var(--beckers-primary);
}

.beckers-theme .faq-item summary::after {
	color: var(--beckers-primary);
}

/* === Mobile Optimizations === */
@media (max-width: 767px) {
	/* Stack columns on mobile */
	.wp-block-columns {
		flex-direction: column !important;
	}
	
	.wp-block-column {
		flex-basis: 100% !important;
	}
	
	/* Buttons wrap nicely */
	.wp-block-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	
	.wp-block-button {
		width: 100%;
	}
	
	.wp-block-button__link {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
	
	/* Better touch targets */
	.skill-card {
		padding: 1.75rem;
	}
	
	/* Reduce spacing on mobile */
	.section, .section-large {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}
