/* ==========================================================================
   SoHWAT Theme — Custom Styles
   Dark landing page for Tesla Battery Health Analysis
   ========================================================================== */

/* --- Reset & Base --- */
html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	overflow-x: hidden;
}

::selection {
	background: rgba(0, 212, 170, 0.3);
	color: #fff;
}

/* --- Section Container --- */
.section-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (min-width: 640px) {
	.section-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
	.section-container { padding-left: 2rem; padding-right: 2rem; }
}

/* --- Gradient Text --- */
.gradient-text {
	background: linear-gradient(90deg, #00d4aa, #00eebb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.gradient-text-purple {
	background: linear-gradient(90deg, #6974dd, #8b94e8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* --- Cards --- */
.card-dark {
	background: rgba(17, 24, 39, 0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 1rem;
}
.card-hover {
	transition: all 0.3s ease;
}
.card-hover:hover {
	border-color: rgba(0, 212, 170, 0.2);
	box-shadow: 0 10px 40px rgba(0, 212, 170, 0.05);
	transform: translateY(-4px);
}

/* --- Buttons --- */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: #00d4aa;
	color: #0a0a0f !important;
	font-weight: 700;
	border-radius: 0.75rem;
	transition: all 0.3s ease;
	text-decoration: none !important;
	font-size: 1rem;
	box-sizing: border-box;
}
.btn-primary:hover {
	background: #00eebb;
	box-shadow: 0 10px 30px rgba(0, 212, 170, 0.25);
	transform: translateY(-2px);
}
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: #fff !important;
	font-weight: 600;
	border-radius: 0.75rem;
	transition: all 0.3s ease;
	text-decoration: none !important;
	background: transparent;
	font-size: 1rem;
	box-sizing: border-box;
}
.btn-secondary:hover {
	border-color: rgba(0, 212, 170, 0.5);
	color: #00d4aa !important;
}

/* --- Section Badge --- */
.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(0, 212, 170, 0.1);
	color: #00d4aa;
	border: 1px solid rgba(0, 212, 170, 0.2);
}

/* --- Grid Background Pattern --- */
.grid-bg {
	background-image:
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 60px 60px;
}

/* --- Glow Effects --- */
.glow-teal {
	box-shadow: 0 0 30px rgba(0, 212, 170, 0.15), 0 0 60px rgba(0, 212, 170, 0.05);
}

/* --- Icon Boxes --- */
.icon-box {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.icon-box-lg {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
}
.icon-box svg {
	width: 1.5rem;
	height: 1.5rem;
}
.icon-box-lg svg {
	width: 1.75rem;
	height: 1.75rem;
}

/* --- Risk / Health Labels --- */
.label-risk {
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	background: rgba(248, 113, 113, 0.1);
	color: #f87171;
	font-weight: 700;
}
.label-healthy {
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	background: rgba(0, 212, 170, 0.1);
	color: #00d4aa;
	font-weight: 700;
}

/* --- Scroll-Reveal Animation --- */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Float Animation --- */
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
.animate-float {
	animation: float 6s ease-in-out infinite;
}

/* --- Pulse Animation --- */
@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 20px rgba(0,212,170,0.3); }
	50% { box-shadow: 0 0 40px rgba(0,212,170,0.6); }
}
.animate-pulse-glow {
	animation: pulse-glow 2s ease-in-out infinite;
}

/* --- Gradient Border --- */
@keyframes borderRotate {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* --- Counter --- */
[data-count] {
	font-variant-numeric: tabular-nums;
}

/* --- Countdown Boxes --- */
.countdown-box {
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	background: rgba(17, 24, 39, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 768px) {
	.countdown-box {
		width: 6rem;
		height: 6rem;
	}
}

/* --- Sticky Nav --- */
.sohwhat-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: all 0.3s ease;
	background: linear-gradient(90deg, #5460c9, #6974dd, #8b94e8);
}
.sohwhat-nav.scrolled {
	box-shadow: 0 10px 30px rgba(105, 116, 221, 0.2);
}
.sohwhat-nav a {
	text-decoration: none;
}
.sohwhat-nav .desktop-nav a:not(.btn-primary) {
	color: #fff !important;
	font-weight: 500 !important;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.sohwhat-nav .desktop-nav a:not(.btn-primary):hover {
	color: #e0ffe8 !important;
}

/* --- Comparison Table Grid --- */
.comparison-grid {
	display: grid;
	grid-template-columns: 2fr repeat(4, 1fr);
	gap: 0.125rem;
}
.comparison-grid > div {
	padding: 0.75rem;
	font-size: 0.875rem;
}
@media (max-width: 768px) {
	.comparison-grid {
		overflow-x: auto;
		min-width: 640px;
	}
}

/* --- FAQ Accordion --- */
.sohwhat-faq details {
	background: rgba(17, 24, 39, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 1rem;
	overflow: hidden;
}
.sohwhat-faq details + details {
	margin-top: 0.75rem;
}
.sohwhat-faq summary {
	padding: 1.5rem;
	cursor: pointer;
	font-weight: 600;
	color: #e5e7eb;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}
.sohwhat-faq summary:hover {
	background: rgba(255, 255, 255, 0.02);
}
.sohwhat-faq summary::-webkit-details-marker {
	display: none;
}
.sohwhat-faq summary::after {
	content: '▾';
	color: #6b7280;
	font-size: 1.25rem;
	transition: transform 0.3s;
}
.sohwhat-faq details[open] summary::after {
	transform: rotate(180deg);
}
.sohwhat-faq .faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: #9ca3af;
	font-size: 0.875rem;
	line-height: 1.7;
}

/* --- Pricing Card Highlight --- */
.pricing-highlight {
	border-color: rgba(0, 212, 170, 0.3) !important;
	box-shadow: 0 0 30px rgba(0, 212, 170, 0.15), 0 0 60px rgba(0, 212, 170, 0.05);
}

/* --- THS Circle --- */
.ths-circle-wrap {
	position: relative;
	width: 12rem;
	height: 12rem;
	margin: 0 auto;
}
.ths-circle-wrap svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.ths-circle-center {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.ths-score {
	font-size: 3rem;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

/* --- THS Breakdown Bar --- */
.ths-bar-track {
	flex: 1;
	height: 0.5rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.05);
	overflow: hidden;
}
.ths-bar-fill {
	height: 100%;
	border-radius: 9999px;
	transition: width 1s ease;
}

/* --- Category Number Circle --- */
.cat-number {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	font-weight: 700;
	flex-shrink: 0;
}

/* --- Step Cards --- */
.step-box {
	position: relative;
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	background: #111827;
	border: 1px solid rgba(0, 212, 170, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.step-number {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 9999px;
	background: #00d4aa;
	color: #0a0a0f;
	font-size: 0.75rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* --- Rating Scale Tags --- */
.rating-tag {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
}

/* --- Unique Tag --- */
.unique-tag {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.625rem;
	font-weight: 700;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* --- Trust Quote --- */
.trust-quote {
	position: relative;
}
.trust-quote svg {
	color: rgba(0, 212, 170, 0.2);
}

/* --- Footer --- */
.sohwhat-footer a {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.2s;
}
.sohwhat-footer a:hover {
	color: #00d4aa;
}

/* --- Supported Model Tags --- */
.model-tag {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: rgba(17, 24, 39, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.875rem;
	font-weight: 500;
	color: #d1d5db;
}

/* --- Color Utility Classes --- */
.text-red { color: #f87171; }
.text-amber { color: #fbbf24; }
.text-orange { color: #fb923c; }
.text-green { color: #4ade80; }
.text-blue { color: #60a5fa; }
.text-purple { color: #c084fc; }
.text-teal { color: #00d4aa; }
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }

.bg-red-10 { background: rgba(248, 113, 113, 0.1); }
.bg-amber-10 { background: rgba(251, 191, 36, 0.1); }
.bg-orange-10 { background: rgba(251, 146, 60, 0.1); }
.bg-green-10 { background: rgba(74, 222, 128, 0.1); }
.bg-blue-10 { background: rgba(96, 165, 250, 0.1); }
.bg-purple-10 { background: rgba(192, 132, 252, 0.1); }
.bg-teal-10 { background: rgba(0, 212, 170, 0.1); }
.bg-surface-700 { background: #111827; }
.bg-surface-800 { background: #0d1117; }

/* --- Utility --- */
.text-center { text-align: center; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* --- Mobile Menu --- */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }
@media (max-width: 768px) {
	.desktop-nav { display: none !important; }
	.mobile-toggle { display: flex !important; }
}
@media (min-width: 769px) {
	.mobile-toggle { display: none !important; }
}

/* --- Editor overrides --- */
.editor-styles-wrapper {
	background-color: #0a0a0f !important;
	color: #f3f4f6 !important;
}

/* --- WPForms Dark Theme --- */
.wpforms-container .wpforms-form .wpforms-field-label {
	color: #d1d5db !important;
	font-weight: 600 !important;
	font-size: 0.875rem !important;
}
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form textarea {
	background: rgba(255,255,255,0.05) !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-radius: 0.75rem !important;
	color: #fff !important;
	padding: 0.875rem 1rem !important;
	font-size: 0.9375rem !important;
	transition: border-color 0.2s !important;
}
.wpforms-container .wpforms-form input[type="text"]:focus,
.wpforms-container .wpforms-form input[type="email"]:focus,
.wpforms-container .wpforms-form textarea:focus {
	border-color: #00d4aa !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(0,212,170,0.1) !important;
}
.wpforms-container .wpforms-form textarea {
	min-height: 120px !important;
}
.wpforms-container .wpforms-form .wpforms-submit-container button {
	background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%) !important;
	color: #0a0a0f !important;
	border: none !important;
	border-radius: 0.75rem !important;
	padding: 1rem 2rem !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	width: 100% !important;
	cursor: pointer !important;
	transition: opacity 0.2s !important;
}
.wpforms-container .wpforms-form .wpforms-submit-container button:hover {
	opacity: 0.9 !important;
}
.wpforms-container .wpforms-confirmation-container-full {
	background: rgba(0,212,170,0.1) !important;
	border: 1px solid rgba(0,212,170,0.3) !important;
	border-radius: 0.75rem !important;
	color: #00d4aa !important;
}

/* ==========================================================================
   WPForms Dark Mode Styling
   ========================================================================== */
.wpforms-container {
    background: transparent !important;
}
.wpforms-head-container {
    display: none !important;
}
.wpforms-form .wpforms-field-label {
    color: #d1d5db !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
}
.wpforms-form .wpforms-required-label {
    color: #00d4aa !important;
}
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 0.75rem !important;
    color: #fff !important;
    padding: 0.875rem 1rem !important;
    font-size: 0.95rem !important;
    font-family: 'Inter', sans-serif !important;
    transition: border-color 0.2s !important;
}
.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form textarea:focus {
    border-color: #00d4aa !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0,212,170,0.1) !important;
}
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
    color: #4b5563 !important;
}
.wpforms-form textarea {
    min-height: 140px !important;
    resize: vertical !important;
}
.wpforms-form .wpforms-field {
    margin-bottom: 1.25rem !important;
    padding: 0 !important;
}
.wpforms-submit-container {
    padding: 0 !important;
}
.wpforms-form button.wpforms-submit {
    background: linear-gradient(135deg, #00d4aa, #00b894) !important;
    color: #0f1419 !important;
    border: none !important;
    border-radius: 0.75rem !important;
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.wpforms-form button.wpforms-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,212,170,0.3) !important;
}
.wpforms-confirmation-container-full {
    background: rgba(0,212,170,0.08) !important;
    border: 1px solid rgba(0,212,170,0.2) !important;
    border-radius: 0.75rem !important;
    color: #d1d5db !important;
    padding: 1.5rem !important;
}
.wpforms-confirmation-container-full p {
    color: #d1d5db !important;
    margin: 0 !important;
}

/* ==========================================================================
   Responsive — Mobile & Tablet
   ========================================================================== */

/* --- Hero Layout --- */
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.hero-copy {
	max-width: 38rem;
}
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	min-height: 600px;
}
.hero-phone {
	position: relative;
	z-index: 10;
	flex-shrink: 0;
}
.hero-usp-list {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 200px;
}
.hero-usp-ths {
	padding: 1rem 1.25rem;
	border-color: rgba(0,212,170,0.3);
	border-radius: 1rem;
	text-align: center;
}
.hero-usp-card {
	padding: 0.625rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-radius: 0.75rem;
}
.hero-usp-icon {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hero-usp-label {
	font-size: 0.6rem;
	color: #6b7280;
	text-transform: uppercase;
	font-weight: 600;
}

@media (max-width: 768px) {
	.hero-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
		text-align: center;
	}
	.hero-copy {
		max-width: 100%;
		order: 1;
	}
	.hero-copy h1, .hero-copy p, .hero-copy .section-badge {
		text-align: center;
	}
	.hero-copy > div {
		justify-content: center;
	}
	.hero-visual {
		order: 2;
		flex-direction: column;
		min-height: auto;
		gap: 1.5rem;
	}
	.hero-phone > div {
		width: 220px !important;
		height: 476px !important;
	}
	.hero-usp-list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		max-width: 100%;
		gap: 0.5rem;
	}
	.hero-usp-ths {
		padding: 0.75rem 1rem;
		flex: 0 0 auto;
	}
	.hero-usp-ths div:nth-child(2) {
		font-size: 2rem !important;
	}
	.hero-usp-card {
		flex: 0 1 auto;
		min-width: 0;
	}
}

/* All 2-col and 3-col grids: stack on mobile */
@media (max-width: 768px) {
	.ths-grid,
	.two-col-grid,
	.three-col-grid,
	.pricing-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
	}
	.wp-block-columns {
		flex-direction: column !important;
	}
	.wp-block-column {
		flex-basis: 100% !important;
	}
}

/* Footer: stack columns */
@media (max-width: 768px) {
	.sohwhat-footer div[style*="grid-template-columns:repeat(4"] {
		grid-template-columns: 1fr 1fr !important;
		gap: 1.5rem !important;
	}
}
@media (max-width: 480px) {
	.sohwhat-footer div[style*="grid-template-columns:repeat(4"] {
		grid-template-columns: 1fr !important;
	}
}

/* Contact: stack form and info */
@media (max-width: 768px) {
	#sohwhat-contact-form {
		margin-top: 2rem;
	}
}

/* General padding reduction on mobile */
@media (max-width: 768px) {
	.section-container {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
	section {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
}

/* Pricing card button alignment */
.pricing-grid .card-dark {
	display: flex;
	flex-direction: column;
}
.pricing-grid .card-dark > a:last-child {
	margin-top: auto;
	padding: 1rem 1.5rem;
}
.pricing-grid .card-dark ul {
	flex-grow: 1;
}

/* How-it-works: 4 columns → 2 on tablet → 1 on phone */
@media (max-width: 1024px) {
	.sohwhat-how-it-works .wp-block-columns {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width: 640px) {
	.sohwhat-how-it-works .wp-block-columns {
		grid-template-columns: 1fr !important;
	}
}

/* Comparison table responsive */
.overflow-x-auto {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
	.overflow-x-auto table {
		min-width: 700px;
	}
}

/* Free App card: single column on mobile */
@media (max-width: 640px) {
	#preise ul[style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
	}
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(10, 14, 20, 0.97);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgba(0, 212, 170, 0.2);
	padding: 1.25rem 2rem;
	display: none;
	animation: slideUp 0.4s ease-out;
}
.cookie-banner.show { display: flex; }
@keyframes slideUp {
	from { transform: translateY(100%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.cookie-banner p {
	color: #9ca3af;
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
	flex: 1;
	min-width: 280px;
}
.cookie-banner p a {
	color: #00d4aa;
	text-decoration: underline;
}
.cookie-btn-group {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}
.cookie-btn {
	padding: 0.6rem 1.5rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}
.cookie-btn-accept {
	background: #00d4aa;
	color: #0a0e14;
}
.cookie-btn-accept:hover { background: #00b894; }
.cookie-btn-reject {
	background: transparent;
	color: #9ca3af;
	border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-reject:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
@media (max-width: 640px) {
	.cookie-banner { padding: 1rem; }
	.cookie-banner-inner { flex-direction: column; gap: 1rem; }
	.cookie-btn-group { width: 100%; }
	.cookie-btn { flex: 1; text-align: center; }
}

/* ── SoH Kostenlos Landing Page ────────────────────────── */
#soh-kostenlos-page { --lp-bg: #0a0a0f; --lp-surface: #0d1117; --lp-surface-2: #111827; --lp-accent: #00d4aa; --lp-accent-dim: #00d4aa33; --lp-primary: #6974dd; --lp-text: #f3f4f6; --lp-text-dim: #9ca3af; --lp-red: #f87171; --lp-green: #4ade80; }
#soh-kostenlos-page .lp-section { max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; }
#soh-kostenlos-page .lp-label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 1rem; }
#soh-kostenlos-page .lp-hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 4rem 1.5rem; position: relative; overflow: hidden; }
#soh-kostenlos-page .lp-hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at 30% 50%, var(--lp-accent-dim) 0%, transparent 50%), radial-gradient(ellipse at 70% 30%, #6974dd22 0%, transparent 50%); animation: lp-drift 20s ease-in-out infinite alternate; }
@keyframes lp-drift { 0% { transform: translate(0,0); } 100% { transform: translate(-5%,3%); } }
#soh-kostenlos-page .lp-hero-inner { position: relative; z-index: 1; max-width: 1100px; display: flex; align-items: center; gap: 3rem; }
#soh-kostenlos-page .lp-hero-text { flex: 1; }
#soh-kostenlos-page .lp-hero h1 { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; color: #fff; }
#soh-kostenlos-page .lp-hero h1 .free { color: var(--lp-accent); position: relative; }
#soh-kostenlos-page .lp-hero h1 .free::after { content: ''; position: absolute; bottom: 0.05em; left: 0; width: 100%; height: 0.15em; background: var(--lp-accent); opacity: 0.3; border-radius: 2px; }
#soh-kostenlos-page .lp-hero-sub { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--lp-text-dim); font-weight: 300; margin-bottom: 2.5rem; }
#soh-kostenlos-page .lp-badge { display: inline-block; background: var(--lp-accent-dim); border: 1px solid var(--lp-accent); color: var(--lp-accent); font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 700; padding: 0.4rem 1rem; border-radius: 100px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; }
#soh-kostenlos-page .lp-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--lp-accent); color: var(--lp-bg) !important; font-weight: 600; font-size: 1.1rem; padding: 1rem 2.5rem; border-radius: 12px; text-decoration: none !important; transition: all 0.3s; }
#soh-kostenlos-page .lp-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--lp-accent-dim); }
#soh-kostenlos-page .lp-phone { flex: 0 0 auto; width: 280px; position: relative; }
#soh-kostenlos-page .lp-phone img { width: 100%; border-radius: 24px; border: 2px solid rgba(255,255,255,0.08); box-shadow: 0 20px 60px rgba(0,212,170,0.15); animation: lp-float 4s ease-in-out infinite alternate; }
#soh-kostenlos-page .lp-phone::after { content: 'LIVE'; position: absolute; top: 16px; right: -8px; background: var(--lp-accent); color: var(--lp-bg); font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 6px; letter-spacing: 0.1em; box-shadow: 0 4px 12px rgba(0,212,170,0.4); }
@keyframes lp-float { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
#soh-kostenlos-page .lp-grid4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
#soh-kostenlos-page .lp-card { background: var(--lp-surface); border: 1px solid rgba(255,255,255,0.04); border-radius: 16px; padding: 2rem; transition: border-color 0.3s; }
#soh-kostenlos-page .lp-card:hover { border-color: var(--lp-accent); }
#soh-kostenlos-page .lp-card .icon { font-size: 2rem; margin-bottom: 1rem; }
#soh-kostenlos-page .lp-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
#soh-kostenlos-page .lp-card p { color: var(--lp-text-dim); font-size: 0.95rem; }
#soh-kostenlos-page .lp-comparison { background: var(--lp-surface); border: 1px solid rgba(255,255,255,0.04); border-radius: 20px; overflow: hidden; margin-top: 2.5rem; }
#soh-kostenlos-page .lp-comp-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; padding: 1rem 2rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.03); }
#soh-kostenlos-page .lp-comp-row:last-child { border-bottom: none; }
#soh-kostenlos-page .lp-comp-header { background: linear-gradient(135deg, #5460c9, #6974dd); color: #fff; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
#soh-kostenlos-page .lp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 4rem 0; }
#soh-kostenlos-page .lp-stat { text-align: center; background: var(--lp-surface); border-radius: 16px; padding: 2rem; border: 1px solid rgba(255,255,255,0.04); }
#soh-kostenlos-page .lp-stat .num { font-family: 'JetBrains Mono', monospace; font-size: 2.5rem; font-weight: 700; color: var(--lp-accent); }
#soh-kostenlos-page .lp-stat .label { color: var(--lp-text-dim); font-size: 0.9rem; margin-top: 0.3rem; }
#soh-kostenlos-page .lp-shift { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; }
#soh-kostenlos-page .lp-shift-box { background: var(--lp-surface); border: 1px solid rgba(255,255,255,0.04); border-radius: 16px; padding: 2rem 2.5rem; text-align: center; flex: 1; min-width: 200px; }
#soh-kostenlos-page .lp-shift-box.old { opacity: 0.5; border-color: var(--lp-red); }
#soh-kostenlos-page .lp-shift-box.new { border-color: var(--lp-accent); background: linear-gradient(135deg, var(--lp-surface), rgba(0,212,170,0.05)); }
#soh-kostenlos-page .lp-shift-box .q { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
#soh-kostenlos-page .lp-shift-box .sub { font-size: 0.85rem; color: var(--lp-text-dim); }
#soh-kostenlos-page .lp-cta-section { text-align: center; padding: 4rem 1.5rem 6rem; }
#soh-kostenlos-page .lp-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
#soh-kostenlos-page .lp-btn-secondary { background: var(--lp-surface); color: var(--lp-text) !important; font-weight: 600; font-size: 1.1rem; padding: 1rem 2.5rem; border-radius: 12px; text-decoration: none !important; border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
#soh-kostenlos-page .lp-btn-secondary:hover { border-color: var(--lp-accent); }
#soh-kostenlos-page .lp-screenshots { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
#soh-kostenlos-page .lp-screenshots > div { flex: 0 0 auto; width: 240px; border-radius: 20px; overflow: hidden; border: 2px solid rgba(255,255,255,0.06); box-shadow: 0 12px 40px rgba(0,212,170,0.1); }
#soh-kostenlos-page .lp-screenshots img { width: 100%; display: block; }
@media (max-width: 768px) {
  #soh-kostenlos-page .lp-hero-inner { flex-direction: column; text-align: center; }
  #soh-kostenlos-page .lp-phone { width: 220px; }
  #soh-kostenlos-page .lp-grid4 { grid-template-columns: 1fr; }
  #soh-kostenlos-page .lp-stats { grid-template-columns: 1fr; }
}
