/* ===================================================================
   DESIGN 1: MINIMALIST YELLOW-ORANGE
   Clean, Light, Modern - Focus on Typography
   =================================================================== */

:root {
	--primary: #f6a32d;
	--primary-light: #ffb84d;
	--primary-dark: #e08b1a;
	--secondary: #66cc33;
	--text: #333;
	--text-light: #666;
	--text-lighter: #999;
	--bg: #fafafa;
	--border: #e8e8e8;
	--white: #fff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text-light);
	background: var(--white);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* Global paragraph styling */
p {
	margin-bottom: 1.2rem;
	line-height: 1.8;
	color: var(--text-light);
	font-size: 1rem;
	display: block;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 1.5rem;
}

/* ===================================================================
   HEADER (Unified Modern)
   =================================================================== */

.unified-header {
	background: linear-gradient(180deg, #ffd699 0%, var(--primary) 100%); /* Orange Gradient */
	padding: 0;
	position: relative;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.unified-header .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px; /* Fixed height for consistency */
}

/* Logo */
.logo-wrapper {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	z-index: 1001; /* Above mobile menu */
}

.logo-wrapper a {
	display: block;
	transition: transform 0.3s ease;
}

.logo-wrapper a:hover {
	transform: scale(1.05);
}

.logo-wrapper img {
	height: 48px;
	width: auto;
	display: block;
}

/* Navigation */
.nav-menu {
	/* Styles set in media queries below */
}

.nav-menu ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.nav-menu ul li {
	display: block;
}

.nav-menu ul li a {
	color: white; /* White text on orange background */
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
	padding: 8px 0;
	position: relative;
	transition: all 0.3s ease;
	text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-menu ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: white; /* White underline on hover */
	transition: width 0.3s ease;
	opacity: 0.8;
}

.nav-menu ul li a:hover {
	opacity: 1;
}

.nav-menu ul li a:hover::after {
	width: 100%;
}

/* Header Actions (Right Side) */
.header-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}

.ekomi-badge img {
	height: 42px;
	width: auto;
	display: block;
	filter: brightness(1.1); /* Make it slightly brighter on orange */
}

/* Mobile Toggle */
.mobile-toggle-wrapper {
	display: none;
}

.menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background: white; /* White burger lines */
	border-radius: 2px;
	transition: all 0.3s ease;
}

.header-languages-mobile {
	display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
	.nav-menu ul {
		gap: 1rem;
	}
	
	.nav-menu ul li a {
		font-size: 0.95rem;
	}
}

@media (max-width: 850px) {
	/* Switch to Mobile Menu */
	.mobile-toggle-wrapper {
		display: block;
		z-index: 1002; /* Ensure toggle is clickable */
	}

	.unified-header .container {
		padding: 0 1rem;
	}

	.header-inner {
		height: 60px;
	}

	.logo-wrapper img {
		height: 30px;
	}

	.header-actions {
		gap: 0.75rem;
	}

	.ekomi-badge img {
		height: 28px;
	}

	.nav-menu {
		position: fixed;
		top: 60px; /* Start below the 60px high header */
		left: 0;
		right: 0;
		width: 100%;
		height: calc(100vh - 60px); /* Full height */
		background: white;
		display: flex;
		flex: none; /* Override desktop flex: 1 */
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding-top: 10px; /* Small buffer, actual content starts below */
		padding-bottom: 2rem;
		padding-left: 0;
		padding-right: 0;
		margin: 0;
		box-shadow: 0 10px 30px rgba(0,0,0,0.15);
		
		/* Hidden State */
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		pointer-events: none;
		
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
		z-index: 9999; /* Ensure menu is above everything else */
		overflow-y: auto;
	}

	.nav-menu.active {
		/* Active State */
		opacity: 1 !important;
		visibility: visible !important;
		transform: translateY(0) !important;
		pointer-events: auto !important;
	}

	.nav-menu ul {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 0;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.nav-menu ul li {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-menu ul li a {
		color: #333 !important; /* Force dark text color on white mobile menu */
		display: block;
		padding: 0.85rem 1.5rem; /* Compact mobile links */
		font-size: 1rem;
		text-shadow: none;
		text-align: left;
	}

	.nav-menu ul li a::after {
		display: none;
	}

	.nav-menu ul li a:hover {
		background: #f9f9f9;
		color: var(--primary) !important; /* Force orange on hover */
	}
	
	.header-languages-mobile {
		display: block;
		padding: 1rem 1.5rem;
		text-align: center;
	}
	
	/* Burger Menu Animation */
	.menu-toggle.active span:nth-of-type(1) {
		transform: rotate(45deg) translateY(13px);
	}

	.menu-toggle.active span:nth-of-type(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-of-type(3) {
		transform: rotate(-45deg) translateY(-13px);
	}
}

/* Mobile Menu Active State - MUST be OUTSIDE media query to always work */
.nav-menu.active {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

/* Desktop Navigation Styles (min-width: 851px) */
@media (min-width: 851px) {
	.nav-menu {
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

/* ===================================================================
   HERO
   =================================================================== */

.hero {
	background: transparent;
	color: var(--text);
	padding: 1rem 2rem;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: none;
	border-radius: 0;
	z-index: 0;
}

.hero h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0.3rem;
	position: relative;
	z-index: 1;
	letter-spacing: 0;
	color: var(--text);
}

.hero p {
	font-size: 0.9rem;
	color: var(--text-light);
	max-width: none;
	margin: 0;
	position: relative;
	z-index: 1;
}

/* ===================================================================
   CARDS SECTION
   =================================================================== */

.cards-section {
	padding: 0rem 1.5rem;
	background: var(--white);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

/* ===================================================================
   CARD
   =================================================================== */

.card {
	background: var(--white);
	background-color: rgba(255, 255, 255, 0.85);
	background-blend-mode: screen;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	position: relative;
}

.card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
	border-color: var(--primary);
}

/* Extra Opacity für Featured Card */
.card--featured {
	border: 2px solid var(--primary);
	background-color: rgba(255, 255, 255, 0.85);
	background-blend-mode: screen;
}

.card--phones {
	background: var(--white);
	background-color: rgba(255, 255, 255, 0.85);
	background-blend-mode: screen;
	background-position: 95% center;
	background-size: 65% auto;
	background-repeat: no-repeat;
	color: var(--text);
	border: 1px solid var(--border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	padding-right: 1rem;
}

.card--phones h3 {
	color: var(--text);
}

.card--phones .price {
	color: var(--primary);
}

.card--phones .features li {
	color: var(--text-light);
}

.card--phones .features li::before {
	color: var(--secondary);
}

.card--phones .desc {
	color: var(--text-light);
}

/* Badge */
.badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 6px 12px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	border-radius: 20px;
	margin-bottom: 1rem;
	width: fit-content;
}

.card .badge {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
}

.card--featured .badge {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
}

/* Title */
.card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

/* Price */
.price {
	font-family: 'Poppins', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.75rem;
	line-height: 1;
}


/* Description */
.desc {
	font-size: 0.95rem;
	color: var(--text-light);
	margin: 0 0 0.5rem 0;
}


/* Features */
.features {
	list-style: none;
	padding: 0;
	margin: 0 0 auto 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.features li {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.5;
	text-align: left;
	padding-left: 1.75rem;
	position: relative;
}

.features li::before {
	content: '✓';
	color: var(--secondary);
	font-weight: 900;
	font-size: 1.1rem;
	position: absolute;
	left: 0;
	top: 0;
}

.features strong {
	color: var(--text);
	font-weight: 600;
}

/* Promo - Premium Alert */
.promo {
	background: linear-gradient(135deg, #fff9f0 0%, #fffbf5 100%);
	border-left: 4px solid var(--primary);
	border-right: 1px solid var(--border);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	color: var(--text);
	padding: 0.85rem 1.25rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
	display: block;
	line-height: 1.4;
	box-shadow: 0 2px 8px rgba(246, 163, 45, 0.08);
	position: relative;
	transition: all 0.3s ease;
}

.promo::before {
	content: '⚡ ';
	font-size: 1.1rem;
	opacity: 0.6;
}

.card--phones .promo {
	background: rgba(255, 255, 255, 0.25);
	color: white;
	margin-bottom: 1.5rem;
}

/* Button */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	margin: 2rem 0;
	border: none;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.95rem;
	font-family: 'Sora', sans-serif;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	width: 100%;
	text-align: center;
}

.btn--primary {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 12px rgba(246, 163, 45, 0.25);
}

.btn--primary:hover {
	background: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(246, 163, 45, 0.35);
}

.btn--secondary {
	background: var(--secondary);
	color: white;
	box-shadow: 0 4px 12px rgba(102, 204, 51, 0.25);
}

.btn--secondary:hover {
	background: #5ab825;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 204, 51, 0.35);
}

.btn--accent {
	background: white;
	color: var(--primary);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn--accent:hover {
	background: var(--primary-light);
	color: white;
	transform: translateY(-2px);
}

/* Cards CTA */
.cards-cta {
	display: flex;
	justify-content: center;
	padding: 2rem 0 2rem 0;
	max-width: 1100px;
	margin: 0 auto;
}

.cards-cta .btn {
	width: auto;
	padding: 14px 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

@media (max-width: 768px) {
	.cards-cta {
		padding: 1.5rem 1.5rem 0 1.5rem;
	}

	.cards-cta .btn {
		width: 100%;
	}
}

/* ===================================================================
   INFO SECTION
   =================================================================== */

.info {
	padding: 3rem 1.5rem;
	background: var(--bg);
	border-top: 1px solid var(--border);
}

.info .container {
	max-width: 900px;
}

.info h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.info h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text);
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.info p {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.info a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.info a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

/* ===================================================================
   FOOTER
   =================================================================== */

footer {
	background: white;
	color: var(--text);
	margin-top: auto;
	border-top: 1px solid var(--border);
	padding: 2rem 0;
}

.footer-wrapper {
	padding: 1.5rem 0;
}

.policy-wrapp {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	width: 100%;
}

.policy {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text-lighter);
	text-decoration: none;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s;
	font-size: 0.85rem;
	white-space: normal;
}

.policy:hover {
	color: var(--primary-dark);
}

.policy img {
	width: 16px;
	height: auto;
	transition: transform 0.3s;
}

/* Footer bottom navigation */
.footer-bottom {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding: 2rem 1.5rem;
	border-top: 1px solid var(--border);
	margin-top: 2rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.footer-bottom .left-block {
	display: flex;
	flex-direction: column;
	gap: 0;
	order: 1;
	width: 100%;
}

.footer-bottom-bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3rem;
	align-items: center;
	order: 2;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
	width: 100%;
}

.footer-bottom .right-block {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.footer-bottom .social {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-left: 2rem;
	border-left: 1px solid var(--border);
}

.footer-bottom p {
	color: var(--text-light);
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.6;
}

/* Links Section */
.footer-bottom .left-block ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.5rem 1.5rem;
}

.footer-bottom li {
	display: inline-block;
}

.footer-bottom .left-block a {
	color: var(--primary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s;
	display: inline-block;
	font-weight: 500;
}

.footer-bottom .left-block a:hover {
	color: var(--primary-dark);
	transform: translateX(2px);
}

.footer-bottom .left-block p {
	margin-top: 1rem;
	order: 2;
}

.footer-bottom .right-block p {
	margin: 0;
}

/* Social Icons */
.footer-bottom .social ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
	justify-content: center;
}

.footer-bottom .social li {
	display: inline-block;
}

.footer-bottom .social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom .social a:hover {
	transform: translateY(-3px) scale(1.15);
}

.footer-bottom .social a:hover img {
	filter: brightness(1.2);
}

.footer-bottom .social img {
	display: block;
	transition: all 0.3s;
	max-width: 100%;
	height: auto;
}

/* Clear element */
.clear_0 {
	display: none;
}

/* Footer Responsive */
@media (max-width: 1024px) {
	.footer-bottom .left-block ul {
		justify-content: center;
	}

	.footer-bottom .left-block p {
		text-align: center;
	}

	.footer-bottom .right-block {
		text-align: center;
	}
}

@media (max-width: 640px) {
	.footer-bottom {
		padding: 1.5rem 0;
		gap: 1.5rem;
	}

	.footer-bottom .left-block ul {
		gap: 0.5rem 1rem;
		justify-content: center;
	}

	.footer-bottom .social ul {
		gap: 1rem;
	}
}

.policy.active img {
	transform: rotate(180deg);
}

.policynote {
	display: none;
	margin-top: 1rem;
	padding: 1rem;
	background: var(--bg);
	border-radius: 6px;
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--text-light);
	border: 1px solid var(--border);
}

.policynote.active {
	display: block;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===================================================================
   ENHANCEMENTS & REFINEMENTS
   =================================================================== */

/* Subtle animations on page load */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero {
	animation: fadeInUp 0.6s ease-out;
}

.card {
	animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Card shadows & depth */
.card {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Footer policy links responsive */
@media (max-width: 640px) {
	.policy-wrapp {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.policynote {
		width: 100%;
	}
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 1024px) {
	.hero h1 {
		font-size: 2rem;
	}

	.card h3 {
		font-size: 1.45rem;
	}

	.price {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 1rem;
	}

	.hero h1 {
		font-size: 1.75rem;
	}

	.hero p {
		font-size: 0.85rem;
	}

	.cards-section {
		padding: 0 0.5rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.card {
		padding: 1.5rem;
	}

	.card h3 {
		font-size: 1.3rem;
	}

	.price {
		font-size: 1.75rem;
	}

	.info {
		padding: 2rem 1.5rem;
	}

	.info h2 {
		font-size: 1.75rem;
	}

	.info h3 {
		font-size: 1.1rem;
	}

	.container {
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 1.3rem;
		margin-bottom: 0.3rem;
	}

	.hero p {
		font-size: 0.85rem;
	}

	.cards-grid {
		gap: 1rem;
	}

	.card {
		padding: 1.25rem;
	}

	.card h3 {
		font-size: 1.1rem;
	}

	.price {
		font-size: 1.5rem;
	}

	.badge {
		font-size: 0.7rem;
	}

	.features {
		gap: 0.3rem;
	}

	.features li {
		font-size: 0.9rem;
	}

	.btn {
		padding: 10px 16px;
		font-size: 0.9rem;
	}

	.info h2 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.info h3 {
		font-size: 1rem;
		margin-top: 1rem;
	}

	.info p {
		font-size: 0.95rem;
	}
}

/* ===================================================================
   TARIFFE PAGE SPECIFIC STYLES
   =================================================================== */

.tariffe {
	background: var(--white);
	padding: 2rem 1.5rem;
}

.tariffe .container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Tariffe Tabs Navigation */
.tariffe-tabs {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid var(--border);
	flex-wrap: wrap;
	align-items: center;
}

.tariffe-tabs button {
	background: transparent;
	border: none;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-light);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	font-family: 'Poppins', sans-serif;
}

.tariffe-tabs button:hover {
	color: var(--primary);
}

.tariffe-tabs button.active {
	color: var(--primary);
	border-bottom-color: var(--primary);
}

/* Contract Toggle (Monthly vs 24-Month) */
.contract-toggle {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	background: var(--bg);
	padding: 1rem;
	border-radius: 8px;
	width: fit-content;
}

.contract-toggle label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--text);
	user-select: none;
}

.contract-toggle input[type="radio"] {
	cursor: pointer;
	width: 18px;
	height: 18px;
	accent-color: var(--primary);
}

/* Tariffe Cards Grid */
.tariffe-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.tariffe-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tariffe-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
	border-color: var(--primary);
}

.tariffe-card--featured {
	border: 2px solid var(--primary);
	box-shadow: 0 4px 16px rgba(246, 163, 45, 0.15);
}

.tariffe-card--featured:hover {
	box-shadow: 0 8px 32px rgba(246, 163, 45, 0.25);
}

/* Card Header */
.tariffe-card__header {
	margin-bottom: 1.5rem;
}

.tariffe-card__badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.75rem;
}

.tariffe-card__title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 0.5rem 0;
	line-height: 1.2;
}

.tariffe-card__subtitle {
	font-size: 0.9rem;
	color: var(--text-light);
	margin: 0;
}

/* Card Price */
.tariffe-card__price {
	font-family: 'Poppins', sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--primary);
	margin: 1rem 0;
	line-height: 1;
}

.tariffe-card__price-label {
	font-size: 0.85rem;
	color: var(--text-light);
	font-weight: 500;
	font-family: 'Sora', sans-serif;
}

/* Card Description */
.tariffe-card__desc {
	font-size: 0.95rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	line-height: 1.6;
}

/* Features List */
.tariffe-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 auto 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.tariffe-card__features li {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.5;
	text-align: left;
	padding-left: 1.75rem;
	position: relative;
}

.tariffe-card__features li::before {
	content: '✓';
	color: var(--secondary);
	font-weight: 900;
	font-size: 1.1rem;
	position: absolute;
	left: 0;
	top: 0;
}

.tariffe-card__features strong {
	color: var(--text);
	font-weight: 600;
}

/* Action Section */
.tariffe-card__action {
	background: linear-gradient(135deg, #fff9f0 0%, #fffbf5 100%);
	border-left: 4px solid var(--primary);
	border-right: 1px solid var(--border);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 0.85rem 1.25rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	margin: 1rem 0;
	text-align: center;
	color: var(--text);
	box-shadow: 0 2px 8px rgba(246, 163, 45, 0.08);
}

.tariffe-card__action::before {
	content: '⚡ ';
	opacity: 0.6;
}

/* Card Footer */
.tariffe-card__footer {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.tariffe-card__links {
	display: flex;
	gap: 0.5rem;
	flex: 1;
}

.tariffe-card__link {
	flex: 1;
	padding: 10px 14px;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	border-radius: 6px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.tariffe-card__link--order {
	background: var(--secondary);
	color: white;
	box-shadow: 0 4px 12px rgba(102, 204, 51, 0.25);
	min-width: 120px;
}

.tariffe-card__link--order:hover {
	background: #5ab825;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 204, 51, 0.35);
}

.tariffe-card__link--pdf {
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--border);
	box-shadow: none;
	min-width: auto;
}

.tariffe-card__link--pdf:hover {
	background: var(--bg);
	border-color: var(--primary);
	transform: translateY(-1px);
}

.tariffe-card__link svg {
	width: 16px;
	height: 16px;
}

/* Card Info Box */
.tariffe-card__info {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1rem;
	margin: 1rem 0;
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.6;
}

.tariffe-card__info strong {
	color: var(--text);
	font-weight: 600;
}

/* Footnotes Section */
.tariffe-footnotes {
	background: var(--bg);
	border-top: 1px solid var(--border);
	padding: 2rem 1.5rem;
	margin-top: 2rem;
}

.tariffe-footnotes .container {
	max-width: 1200px;
	margin: 0 auto;
}

.tariffe-footnote {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.tariffe-footnote sup {
	color: var(--primary);
	font-weight: 700;
}

.tariffe-note {
	display: inline-block;
	background: white;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1rem;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Responsive Tariffe */
@media (max-width: 1024px) {
	.tariffe-cards {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 1.5rem;
	}

	.tariffe-card {
		padding: 1.5rem;
	}

	.tariffe-card__title {
		font-size: 1.45rem;
	}

	.tariffe-card__price {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.tariffe {
		padding: 1.5rem 0.5rem;
	}

	.tariffe-tabs {
		gap: 0.5rem;
		margin-bottom: 1.5rem;
	}

	.tariffe-tabs button {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
	}

	.contract-toggle {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.tariffe-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.tariffe-card {
		padding: 1.25rem;
	}

	.tariffe-card__title {
		font-size: 1.3rem;
	}

	.tariffe-card__price {
		font-size: 1.75rem;
	}

	.tariffe-card__footer {
		flex-direction: column;
		gap: 0.75rem;
	}

	.tariffe-card__links {
		flex-direction: column;
	}

	.tariffe-card__pdf-link-inline {
		display: none;
	}

	.tariffe-card__link {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.tariffe-card__title {
		font-size: 1.15rem;
	}

	.tariffe-card__price {
		font-size: 1.5rem;
	}

	.tariffe-card__features li {
		font-size: 0.9rem;
	}

	.tariffe-card__action {
		font-size: 0.75rem;
		padding: 0.7rem 1rem;
	}

	.tariffe-card__link {
		padding: 8px 12px;
		font-size: 0.8rem;
	}

	.tariffe-card__pdf-link-inline {
		display: none;
	}

	.tariffe-footnotes {
		padding: 1.5rem 1rem;
	}

	.tariffe-footnote {
		font-size: 0.8rem;
	}
}

/* Toggle visibility utilities */
.monthly {
	display: block;
}

.month24 {
	display: none;
}

.month24-active .monthly {
	display: none;
}

.month24-active .month24 {
	display: block;
}

/* Old CSS Classes Mapping for backward compatibility */
.items {
	background-color: var(--white);
	position: relative;
	padding: 2rem 1rem;
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}

.col-80 {
	width: 80%;
	float: left;
	flex: 1;
}

.col-20 {
	width: 20%;
	float: left;
	position: relative;
}

.li-wrapper {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}

.green-link {
	background-color: var(--secondary);
	color: white;
	font-weight: 600;
	padding: 12px 28px;
	display: inline-block;
	margin: 1rem 0;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 0.95rem;
	font-family: 'Sora', sans-serif;
}

.green-link:hover {
	background-color: #5ab825;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 204, 51, 0.25);
}

.green-link img {
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
	width: 16px;
	height: auto;
}

.sim {
	display: inline-block;
	vertical-align: top;
	position: absolute;
	bottom: 0;
	right: 0;
	height: 150px;
	width: 240px;
	background-size: cover;
}

.sim p {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	line-height: 1.5;
	font-size: 0.95rem;
	width: 90%;
	margin: 0 auto;
	font-family: 'Sora', sans-serif;
}

.middle-section {
	vertical-align: top;
	display: inline-block;
	width: 100%;
	position: relative;
}

.sec-orange {
	background: linear-gradient(135deg, #fff9f0 0%, #fffbf5 100%);
	border-left: 4px solid var(--primary);
	border-right: 1px solid var(--border);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	width: 100%;
	position: relative;
	background-size: cover;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-radius: 8px;
}

.sec-orange p {
	background-color: var(--white);
	color: var(--text-light);
	font-family: 'Sora', sans-serif;
	margin: 0.75rem;
	float: none;
	width: 100%;
	font-size: 0.85rem;
	padding: 1rem;
}

.sec-orange p i {
	width: 16px;
	height: 16px;
	background-color: var(--primary);
	color: white;
	font-size: 12px;
	display: inline-block;
	border-radius: 50%;
	line-height: 14px;
	padding: 2px 5px;
	margin-right: 0.5rem;
}

.orange-outer {
	float: right;
	margin-right: 0;
	margin-top: 1rem;
}

.orange-outer a {
	background-color: var(--secondary);
	display: block;
	text-align: center;
	font-size: 0.95rem;
	color: white;
	padding: 10px 0;
	font-family: 'Sora', sans-serif;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

.orange-outer a:hover {
	background-color: #5ab825;
	transform: translateY(-2px);
}

.orange-outer a.pdf {
	background-color: var(--primary);
	margin-top: 0.5rem;
	padding: 10px 12px;
	font-size: 0.85rem;
}

.orange-outer a.pdf:hover {
	background-color: var(--primary-dark);
}

.orange-outer a img {
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
	width: 16px;
	height: auto;
}

.home-section2 {
	margin-bottom: 2rem;
	padding: 2rem 0;
	border-top: 1px solid var(--border);
}

.home-section2 h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 1rem;
}

.home-section2 p {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.changing {
	display: none !important;
}

.monthly .changing.monthly {
	display: inline-block !important;
}

.month24 .changing.month24 {
	display: inline-block !important;
}

.checkbox-wrapper {
	margin: 1.5rem 0;
	padding: 1rem;
	background: var(--bg);
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.checkbox-wrapper label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--text);
	user-select: none;
}

.checkbox-wrapper input[type="checkbox"],
.checkbox-wrapper input[type="radio"] {
	cursor: pointer;
	width: 18px;
	height: 18px;
	accent-color: var(--primary);
}

.policy-wrapp {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	width: 100%;
}

.policynote {
	display: none;
	margin-top: 1rem;
	padding: 1rem;
	background: var(--bg);
	border-radius: 6px;
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--text-light);
	border: 1px solid var(--border);
	width: 100%;
}

.policynote.active {
	display: block;
	animation: slideDown 0.3s ease;
}

/* Responsive for old layouts */
@media (max-width: 768px) {
	.col-80,
	.col-20 {
		width: 100%;
		float: none;
	}

	.middle-section {
		width: 100%;
	}

	.sim {
		position: static;
		display: block;
		margin: 1rem auto;
		height: 120px;
		width: 180px;
	}

	.items {
		padding: 1.25rem 1rem;
	}

	.orange-outer {
		float: none;
		margin-right: 0;
		margin-top: 1rem;
	}

	.checkbox-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}

	.policy-wrapp {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
}

/* ============================================================================
   TARIFFE TWO-LEVEL TAB STRUCTURE - Design 1 Minimal
   ============================================================================ */

/* PRIMARY TABS: Category switcher (Aktions-Tarife | weitere Tarife) */
.tariffe-tabs-primary {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--bg);
	padding-bottom: 0.5rem;
	flex-wrap: wrap;
}

.tariffe-tabs-primary button {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: transparent;
	color: var(--primary);
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.tariffe-tabs-primary button:hover {
	background-color: rgba(246, 163, 45, 0.1);
	transform: translateY(-2px);
}

.tariffe-tabs-primary button.active {
	background-color: var(--primary);
	color: white;
	box-shadow: 0 2px 8px rgba(246, 163, 45, 0.3);
}

/* SECONDARY TABS: Tariff option switcher (10GB | 20GB | 30GB | unlimited) */
.tariffe-tabs-secondary {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.tariffe-tabs-secondary button {
	padding: 0.6rem 1.2rem;
	font-size: 0.95rem;
	font-weight: 500;
	border: 2px solid var(--primary);
	background-color: white;
	color: var(--primary);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Sora', sans-serif;
}

.tariffe-tabs-secondary button:hover {
	background-color: rgba(246, 163, 45, 0.05);
	transform: translateY(-2px);
}

.tariffe-tabs-secondary button.active {
	background-color: var(--primary);
	color: white;
	border-color: var(--primary);
	box-shadow: 0 2px 8px rgba(246, 163, 45, 0.3);
}

/* TARIFF PANELS: Individual tariff card containers */
.tariff-panel {
	display: none;
	animation: fadeIn 0.4s ease;
}

.tariff-panel.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* TARIFFE CATEGORY: Wrapper for category content */
.tariffe-category {
	animation: fadeIn 0.4s ease;
}

/* CONTRACT TOGGLE BUTTONS: Modern button-based toggle */
.contract-toggle-buttons {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.contract-button {
	flex: 1;
	min-width: 140px;
	position: relative;
	cursor: pointer;
	user-select: none;
}

.contract-button input[type="radio"] {
	display: none;
}

.contract-button__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	padding: 0.5rem 0.75rem;
	min-height: 60px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	background-color: #f9f9f9;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
}

.contract-button__primary {
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text);
	display: block;
	letter-spacing: 0.2px;
	line-height: 1.2;
}

.contract-button__benefit {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--text-light);
	display: block;
	line-height: 1.1;
	white-space: normal; /* Allow text to wrap */
}

/* Hover State */
.contract-button:hover .contract-button__content {
	border-color: var(--primary);
	background-color: rgba(246, 163, 45, 0.05);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(246, 163, 45, 0.15);
}

/* Active State via Radio Input */
.contract-button input[type="radio"]:checked ~ .contract-button__content {
	border-color: var(--primary);
	background: linear-gradient(135deg, rgba(246, 163, 45, 0.1) 0%, rgba(102, 204, 51, 0.05) 100%);
	box-shadow: 0 4px 16px rgba(246, 163, 45, 0.25);
}

.contract-button input[type="radio"]:checked ~ .contract-button__content .contract-button__primary {
	color: var(--primary);
}

.contract-button input[type="radio"]:checked ~ .contract-button__content .contract-button__benefit {
	color: var(--primary);
	font-weight: 700;
}

/* Active State via Class (JavaScript) */
.contract-button.active .contract-button__content {
	border-color: var(--primary);
	background: linear-gradient(135deg, rgba(246, 163, 45, 0.1) 0%, rgba(102, 204, 51, 0.05) 100%);
	box-shadow: 0 4px 16px rgba(246, 163, 45, 0.25);
}

.contract-button.active .contract-button__content .contract-button__primary {
	color: var(--primary);
}

.contract-button.active .contract-button__content .contract-button__benefit {
	color: var(--primary);
	font-weight: 700;
}

/* SAVINGS HINT BADGE: Modern badge next to toggle */
.savings-hint-badge {
	display: flex;
	align-items: center;
	margin-left: 0.5rem;
}

.savings-badge {
	background: linear-gradient(135deg, var(--primary) 0%, #ff9800 100%);
	color: white;
	padding: 0.5rem 0.85rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	box-shadow: 0 2px 8px rgba(246, 163, 45, 0.3);
	animation: savingsPulse 2s ease-in-out infinite;
	white-space: nowrap;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.3px;
}

@keyframes savingsPulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(246, 163, 45, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 4px 12px rgba(246, 163, 45, 0.5);
	}
}

/* TARIFF VERSION: Show/hide containers for monthly and 24-month versions */
.tariff-version {
	transition: opacity 0.3s ease;
}

/* TARIFFE CARD: Main card styling (already exists but expanded) */
.tariffe-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1.25rem;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	margin-bottom: 0;
}

.tariffe-card:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(246, 163, 45, 0.15);
	transform: translateY(-2px);
}

/* Card Header */
.tariffe-card__header {
	margin-bottom: 0.75rem;
	position: relative;
}

/* Title and Price Side-by-Side */
.tariffe-card__title-price {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
}

/* Savings Hint */
.tariffe-card__savings {
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 600;
	margin-top: 0.4rem;
	white-space: nowrap;
	text-align: right;
}

.tariffe-card__badge {
	display: inline-block;
	background-color: var(--primary);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
	font-family: 'Poppins', sans-serif;
}

.tariffe-card__title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text);
	margin: 0;
	margin-top: 0.5rem;
}

/* Price Display */
.tariffe-card__price {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0;
	line-height: 1.1;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Removed to avoid duplicate month display when "mtl." is already in data */
.tariffe-card__price::after {
	content: "";
}

/* Action Box: Special promotion/note */
.tariffe-card__action {
	background-color: #fff3e0;
	border-left: 4px solid var(--primary);
	padding: 0.75rem;
	margin: 1rem 0;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--text);
	border-radius: 2px;
}

.tariffe-card__action strong {
	color: var(--primary);
	font-weight: 700;
}

/* Features List */
.tariffe-card__features {
	list-style: none;
	margin: 1.25rem 0;
	padding: 0;
}

.tariffe-card__features li {
	padding-left: 1.5rem;
	margin-bottom: 0.6rem;
	position: relative;
	font-size: 0.95rem;
	line-height: 1.4;
	color: var(--text);
}

.tariffe-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: 700;
	font-size: 1.1rem;
}

/* Info Section */
.tariffe-card__info {
	background-color: #f0f7ff;
	border-radius: 4px;
	padding: 0.75rem;
	margin: 1rem 0;
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.5;
}

/* Card Footer & Links */
.tariffe-card__footer {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
}

.tariffe-card__links {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	align-items: center;
}

.tariffe-card__link {
	display: inline-block;
	padding: 0.7rem 1.2rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: 'Poppins', sans-serif;
	border: 2px solid transparent;
	cursor: pointer;
}

.tariffe-card__link--order {
	background-color: var(--secondary);
	color: white;
	flex: 1;
	min-width: 150px;
	text-align: center;
}

.tariffe-card__link--order:hover {
	background-color: #5ab320;
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(102, 204, 51, 0.3);
}

/* PDF Footer - Icon-only discreet link at bottom of card */
.tariffe-card__pdf-footer {
	display: none;
	margin-top: 1rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--bg);
	text-align: center;
}

.tariffe-card__pdf-link {
	color: var(--text-light);
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
	padding: 0.4rem 0;
	font-size: 1rem;
	line-height: 1.2;
}

.tariffe-card__pdf-link span {
	display: block;
	font-size: 0.7rem;
	font-weight: 500;
	text-align: left;
	line-height: 1.1;
}

.tariffe-card__pdf-link:hover {
	color: var(--primary);
}

/* PDF Link Inline (in header, right side) */
.tariffe-card__pdf-link-inline {
	color: var(--text-light);
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: flex-start;
	gap: 0.3rem;
	font-size: 1rem;
	line-height: 1.2;
}

.tariffe-card__pdf-link-inline span {
	display: block;
	font-size: 0.65rem;
	font-weight: 500;
	text-align: right;
	line-height: 1.1;
}

.tariffe-card__pdf-link-inline:hover {
	color: var(--primary);
}

/* Info Section below cards */
.info {
	margin-top: 3rem;
	padding: 2rem 0;
	border-top: 1px solid var(--border);
}

.info h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 1rem;
}

.info p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1rem;
}

/* ============================================================================
   RESPONSIVE: Tariffe Sections
   ============================================================================ */

@media (max-width: 1024px) {
	.tariffe-tabs-primary {
		gap: 0.3rem;
		margin-bottom: 1.5rem;
	}

	.tariffe-tabs-primary button {
		padding: 0.65rem 1.2rem;
		font-size: 0.85rem;
	}

	.tariffe-tabs-secondary {
		gap: 0.5rem;
		margin-bottom: 1.5rem;
	}

	.tariffe-tabs-secondary button {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}

	.tariffe-card {
		padding: 1.25rem;
	}

	.tariffe-card__title {
		font-size: 1.2rem;
	}

	.tariffe-card__price {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	/* Hide PDF link in header on tablet/mobile */
	.tariffe-card__header .tariffe-card__pdf-link-inline {
		display: none;
	}

	/* Show PDF link in footer on tablet/mobile */
	.tariffe-card__footer .tariffe-card__pdf-footer {
		display: block;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid #f0f0f0;
	}

	/* Mobile PDF footer: text-only, no icon, no wrapping */
	.tariffe-card__pdf-link {
		display: inline;
		font-size: 0.75rem;
		font-weight: 400;
		color: #999;
		text-decoration: none;
		padding: 0.25rem 0;
	}

	/* Hide PDF icon on mobile */
	.tariffe-card__pdf-link img {
		display: none;
	}

	/* Text display as single line on mobile */
	.tariffe-card__pdf-link span {
		display: inline;
		font-size: 0.75rem;
		font-weight: 400;
		white-space: nowrap;
		line-height: 1.2;
	}

.tariffe-card__pdf-link:hover {
		color: var(--primary);
		text-decoration: underline;
	}

	.tariffe-tabs-primary {
		flex-direction: column;
		gap: 0;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 1.5rem;
	}

	.tariffe-tabs-primary button {
		width: 100%;
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
		text-align: center;
		border-radius: 0;
	}

	.tariffe-tabs-primary button:first-child {
		border-radius: 4px 4px 0 0;
	}

	.tariffe-tabs-primary button:last-child {
		border-radius: 0 0 4px 4px;
	}

	.tariffe-tabs-secondary {
		flex-wrap: nowrap;
		gap: 0.5rem;
		margin-bottom: 1.5rem;
	}

	.tariffe-tabs-secondary button {
		flex: 1 1 auto;
		min-width: 0;
		padding: 0.6rem 0.4rem;
		font-size: 0.8rem;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.contract-toggle-inline {
		flex-direction: column;
		gap: 0.75rem;
		align-items: flex-start;
		padding: 1rem;
	}

	.tariffe-card {
		padding: 1rem;
		margin-bottom: 1.5rem;
	}

	.tariffe-card__title {
		font-size: 1.1rem;
	}

	.tariffe-card__price {
		font-size: 1.4rem;
	}

	.tariffe-card__features li {
		font-size: 0.9rem;
		margin-bottom: 0.5rem;
	}

	.tariffe-card__links {
		flex-direction: column;
	}

	.tariffe-card__link {
		width: 100%;
		text-align: center;
	}

	.tariffe-card__link--order {
		flex: none;
		min-width: none;
	}

	/* Mobile contract buttons - equal height */
	.contract-button__content {
		min-height: 70px;
	}
}

@media (max-width: 480px) {
	.tariffe-tabs-primary button {
		padding: 0.6rem 0.8rem;
		font-size: 0.8rem;
	}

	.tariffe-tabs-secondary button {
		flex: 1 1 auto;
		min-width: 0;
		padding: 0.5rem 0.3rem;
		font-size: 0.7rem;
		height: 55px;
	}

	.tariffe-card {
		padding: 0.75rem;
	}

	.tariffe-card__title {
		font-size: 1rem;
	}

	.tariffe-card__price {
		font-size: 1.25rem;
	}

	.contract-toggle-inline {
		padding: 0.75rem;
		gap: 0.5rem;
	}

	.contract-toggle-inline label {
		font-size: 0.85rem;
	}

	.tariffe-card__action {
		font-size: 0.75rem;
		padding: 0.6rem;
		margin: 0.75rem 0;
	}

	.tariffe-card__features li {
		font-size: 0.85rem;
		padding-left: 1.2rem;
		margin-bottom: 0.4rem;
	}
}

/* ===================================================================
   TARIFFE DESCRIPTION: Dynamic text sections after each card
   =================================================================== */

.tariffe-description {
	margin: 2.5rem 0;
	padding: 2rem 1.5rem;
	background: linear-gradient(135deg, rgba(246, 163, 45, 0.05) 0%, rgba(102, 204, 51, 0.03) 100%);
	border-left: 4px solid var(--primary);
	border-radius: 8px;
	transition: all 0.4s ease;
	animation: fadeInUp 0.6s ease-out;
}

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

.tariffe-description h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
	line-height: 1.3;
}

.tariffe-description > div {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.7;
	word-break: break-word;
}

.tariffe-description > div p {
	margin-bottom: 1rem;
}

.tariffe-description > div p:last-child {
	margin-bottom: 0;
}

.tariffe-description > div ul,
.tariffe-description > div ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.tariffe-description > div li {
	margin-bottom: 0.5rem;
}

.tariffe-description > div strong {
	color: var(--text);
	font-weight: 600;
}

.tariffe-description > div em {
	color: var(--primary);
	font-style: italic;
	font-weight: 500;
}

.tariffe-description > div a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid rgba(246, 163, 45, 0.3);
	transition: all 0.3s ease;
}

.tariffe-description > div a:hover {
	color: var(--primary-dark);
	border-bottom-color: var(--primary-dark);
}

/* Tablet & Desktop Styles */
@media (min-width: 768px) {
	.tariffe-description {
		margin: 3rem 0;
		padding: 2.5rem;
		border-radius: 12px;
	}

	.tariffe-description h2 {
		font-size: 1.75rem;
		margin-bottom: 1.25rem;
	}

	.tariffe-description > div {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.tariffe-description {
		margin: 2rem 0;
		padding: 1.5rem;
		border-left-width: 3px;
	}

	.tariffe-description h2 {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.tariffe-description > div {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

/* ============================================================================ */
/* Tooltip Icons - .tooltipster-icon styling */
/* ============================================================================ */

.tooltipster-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	margin-left: 4px;
	border-radius: 50%;
	background: var(--primary);  /* Orange */
	color: white;
	cursor: help;
	transition: all 0.2s ease;
	vertical-align: middle;
	/* Hide original text, show only ? */
	font-size: 0;
	font-weight: 700;
	line-height: 1;
}

/* Reset inherited font-weight from parent containers for Tippy.js tooltip content */
.tippy-box {
	font-weight: normal !important;
}

.tippy-box strong,
.tippy-box b {
	font-weight: 600;
}

.tooltipster-icon::before {
	content: '?';
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.tooltipster-icon:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(246, 163, 45, 0.3);
}

/* On dark backgrounds */
.tooltipster-icon.dark {
	background: var(--text-light);
	color: var(--white);
}

.tooltipster-icon.dark:hover {
	background: var(--text);
}

/* ===================================================================
   BESTELLUNG (ORDER FORM) - MODERN DESIGN OVERRIDES
   Kills all old styling, implements modern card-based design
   =================================================================== */

/* ===== AGGRESSIVE OVERRIDES FOR OLD STYLES ===== */

/* KILL ALL ORANGE/YELLOW BACKGROUNDS */
body.bestellung-page,
.inner2 {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}

.inner2.home-section1 {
	background: linear-gradient(180deg, rgba(250, 250, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%) !important;
	padding: 2rem 0 !important;
}

/* Remove old section backgrounds */
.inner2-section2 {
	background: linear-gradient(180deg, rgba(250, 250, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%) !important;
	padding: 3rem 0 !important;
	background-image: linear-gradient(180deg, rgba(250, 250, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%) !important;
}

/* Reset form wrapper - no more yellow/orange */
.form-wrapper {
	background: transparent !important;
	padding: 0 !important;
	max-width: 100% !important;
	margin: 0 auto !important;
}

.form-wrapper h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text);
	font-family: 'Poppins', sans-serif;
}

.form-wrapper > strong {
	display: flex;
	align-items: center;
	font-size: 16px;
	margin-bottom: 2rem;
	color: var(--text);
	gap: 0.75rem;
}

/* Kill the old orange sections */
.orange-outer,
.new-orange-sec {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Modern PDF links - style them as badges */
.pdf2 {
	display: inline-flex !important;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: rgba(246, 163, 45, 0.1) !important;
	border: 1px solid var(--primary-light) !important;
	border-radius: 8px;
	color: var(--primary) !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s ease;
	margin-right: 0.75rem;
	margin-bottom: 1rem;
}

.pdf2:hover {
	background: var(--primary) !important;
	color: white !important;
	box-shadow: 0 4px 12px rgba(246, 163, 45, 0.25);
}

.pdf2 img {
	width: 16px;
	height: auto;
}

/* ===== FORM SECTIONS (Cards) - Same style as tariffe-card ===== */
.form-section {
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: 10px !important;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
	margin-bottom: 2rem;
	padding: 0 !important;
}

.form-section:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
	transform: translateY(-3px);
	border-color: var(--primary) !important;
}

/* Form Section Header */
.form-section__header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
	color: var(--white) !important;
	padding: 1.5rem 2rem !important;
	display: flex;
	align-items: center;
	gap: 1rem;
	border: none !important;
}

.form-section__number {
	background: rgba(255, 255, 255, 0.95) !important;
	color: var(--primary) !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
	font-family: 'Poppins', sans-serif;
}

.form-section__title {
	color: var(--white) !important;
	font-size: 16px;
	margin: 0 !important;
	flex-grow: 1;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

/* Form Section Body */
.form-section__body {
	padding: 2rem !important;
	background: var(--white) !important;
}

.form-section__subtitle {
	color: var(--text-light);
	font-size: 14px;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

/* ===== LAYOUT & SPACING ===== */

/* Row layout - modern flexbox */
.infowrap {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-start;
}

.col-30 {
	flex: 0 0 30%;
	min-width: 150px;
}

.col-25 {
	flex: 0 0 25%;
}

.col-60 {
	flex: 0 0 60%;
}

.col-70 {
	flex: 0 0 70%;
}

.col-20 {
	flex: 0 0 20%;
}

/* On tablet and below */
@media (max-width: 768px) {
	.col-30, .col-25, .col-60, .col-70, .col-20 {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.row {
		gap: 0.75rem;
	}
}

/* Kill old styling */
.clear_0 {
	display: none !important;
}

.heading {
	display: none !important;
}

/* Labels styling */
label {
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	display: block;
	margin-bottom: 0.5rem;
}

/* Checkbox styling */
.check {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	cursor: pointer;
}

.check input[type="radio"],
.check input[type="checkbox"] {
	margin-right: 0.75rem;
}

.check label {
	margin-bottom: 0;
	cursor: pointer;
	font-weight: 500;
	font-size: 15px;
}

/* Modern Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	width: 100%;
	height: 44px;
	padding: 0 1rem;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	background: var(--white);
	transition: all 0.2s ease;
	color: var(--text);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
	color: var(--text-lighter);
}

/* Input Focus States */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(246, 163, 45, 0.1);
	background: var(--white);
}

/* Input Error States */
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
	border: 2px solid #e74c3c !important;
	background-color: #fff8f7;
}

input[aria-invalid="true"]:focus,
select[aria-invalid="true"]:focus,
textarea[aria-invalid="true"]:focus {
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Input Valid States */
input.is-valid:not([type="checkbox"]):not([type="radio"]),
select.is-valid,
textarea.is-valid {
	border: 2px solid #27ae60 !important;
	background-color: #f8fff8;
}

/* Select Styling */
select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 18px;
	padding-right: 40px;
	cursor: pointer;
}

select:disabled {
	background-color: var(--bg);
	cursor: not-allowed;
	opacity: 0.6;
}

/* Radio Buttons & Checkboxes */
input[type="radio"],
input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--border);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	background-color: var(--white);
	margin-right: 0.75rem;
	vertical-align: middle;
	flex-shrink: 0;
}

input[type="radio"] {
	border-radius: 50%;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-color: var(--primary);
	border-color: var(--primary);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(246, 163, 45, 0.2);
}

input[type="checkbox"][aria-invalid="true"],
input[type="radio"][aria-invalid="true"] {
	border-color: #e74c3c;
}

/* Checkbox/Radio Labels */
.check {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	cursor: pointer;
}

.check input[type="radio"],
.check input[type="checkbox"] {
	margin-right: 0.75rem;
}

.check label {
	margin-bottom: 0;
	cursor: pointer;
	font-weight: 500;
	font-size: 15px;
	color: var(--text);
}

/* Tooltip Styling */
.tooltip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	cursor: help;
	margin-left: 0.75rem;
	transition: all 0.2s ease;
	vertical-align: middle;
}

.tooltip:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
}

/* Order Summary (Pricing Card) */
.order-summary {
	background: var(--white);
	border: 3px solid var(--primary);
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 4px 16px rgba(246, 163, 45, 0.15);
	margin: 2rem 0;
}

.order-summary .heads {
	display: flex;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--border);
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--text);
}

.order-summary .heads b {
	font-weight: 700;
	font-size: 13px;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.order-summary .rows {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border);
}

.order-summary .rows:last-of-type {
	border-bottom: none;
}

.order-summary .rows p {
	margin: 0;
	font-size: 14px;
	color: var(--text);
}

.order-summary .rows label {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
}

.order-summary .block1 {
	flex: 0 0 25%;
}

.order-summary .block2 {
	flex: 0 0 25%;
	text-align: center;
}

.order-summary .block3 {
	flex: 0 0 25%;
	text-align: center;
}

.order-summary .block4 {
	flex: 0 0 25%;
	text-align: right;
}

.order-summary .rows .cost {
	color: var(--primary);
	font-weight: 600;
}

.order-summary .rows .actualcost {
	color: var(--text);
	font-weight: 600;
}

.order-summary .rows .discnt {
	color: var(--text-light);
	font-weight: 500;
	font-size: 13px;
}

/* Final Price */
.order-summary .heads.finalprice {
	border: none;
	background: linear-gradient(135deg, rgba(102, 204, 51, 0.05) 0%, rgba(246, 163, 45, 0.05) 100%);
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
	font-size: 16px;
}

.order-summary .heads.finalprice b {
	color: var(--text);
	font-size: 16px;
	text-transform: none;
	letter-spacing: 0;
}

.order-summary .heads.finalprice .cost {
	color: var(--primary);
	font-size: 16px;
}

.order-summary .heads.finalprice .actualcost {
	color: var(--secondary);
	font-size: 18px;
	font-weight: 700;
}

/* Submit Button */
.greenbtn {
	background: linear-gradient(135deg, var(--secondary) 0%, #5cb71f 100%);
	color: var(--white);
	border: none;
	padding: 1rem 2rem;
	font-size: 16px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(102, 204, 51, 0.3);
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.greenbtn:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 204, 51, 0.4);
}

.greenbtn:active:not(:disabled) {
	transform: translateY(0);
}

.greenbtn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* PDF Links */
.pdf2 {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: rgba(246, 163, 45, 0.1);
	border: 1px solid var(--primary-light);
	border-radius: 8px;
	color: var(--primary);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	margin-right: 1rem;
	margin-bottom: 1rem;
}

.pdf2:hover {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.pdf2 img {
	width: 16px;
	height: auto;
}

/* MNP Section */
.Rufnummernportierung-checked {
	background: rgba(246, 163, 45, 0.05);
	border-left: 4px solid var(--primary);
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 1rem;
}

.graydiv {
	background: var(--bg);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--text-light);
}

.Angaben-input {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.Angaben-input label {
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.Angaben-input input,
.Angaben-input select {
	width: 100%;
}

/* Error Container */
.error-container {
	min-height: 20px;
	color: #e74c3c;
	font-size: 12px;
	margin-top: 4px;
	display: none;
	font-weight: 500;
	line-height: 1.4;
}

.error-container.show {
	display: block;
}

.error-container li {
	list-style: none;
	padding: 0;
	margin: 2px 0;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
	.form-section__body {
		padding: 1.5rem;
	}

	.form-section__header {
		padding: 1rem 1.5rem;
	}

	.col-30,
	.col-25,
	.col-60,
	.col-70 {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.order-summary .block1,
	.order-summary .block2,
	.order-summary .block3,
	.order-summary .block4 {
		flex: 0 0 100%;
	}

	.order-summary .rows {
		flex-direction: column;
		align-items: flex-start;
	}

	.order-summary .block2,
	.order-summary .block3,
	.order-summary .block4 {
		text-align: left;
	}

	.pdf2 {
		display: flex;
		width: 100%;
		justify-content: center;
		margin-right: 0;
	}

	.greenbtn {
		padding: 1rem 1.5rem;
		font-size: 15px;
	}

	label {
		font-size: 13px;
	}

	.tooltip {
		width: 20px;
		height: 20px;
		font-size: 11px;
	}
}

/* Responsive: Mobile */
@media (max-width: 640px) {
	.form-section {
		margin-bottom: 1.5rem;
		border-radius: 8px;
	}

	.form-section__header {
		padding: 1rem;
		flex-direction: row;
		align-items: center;
		gap: 0.75rem;
	}

	.form-section__number {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}

	.form-section__title {
		font-size: 14px;
	}

	.form-section__body {
		padding: 1rem;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	select,
	textarea {
		height: 40px;
		font-size: 14px;
	}

	.order-summary {
		padding: 1.5rem;
		margin: 1.5rem 0;
		border-width: 2px;
	}

	.order-summary .heads {
		flex-direction: column;
		gap: 0.75rem;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}

	.order-summary .heads.finalprice {
		padding: 1rem;
	}

	.order-summary .rows {
		gap: 0.75rem;
		padding: 0.75rem 0;
	}

	.greenbtn {
		padding: 1rem 1.5rem;
		font-size: 14px;
	}
}

/* ===================================================================
   Tarif Info Card - SIM Image
   Static on desktop, subtle background on mobile
   =================================================================== */

.tarif-info-card {
	position: relative;
	overflow: hidden;
}

.tarif-info-image {
	pointer-events: none;
	animation: none !important;
	transform: translate(0, 0) !important;
}

.sim-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@keyframes fadeInImage {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Desktop: Prominent SIM display */
@media (min-width: 768px) {
	.tarif-info-image {
		position: static !important;
		top: auto !important;
		left: auto !important;
		width: auto;
		height: auto;
		opacity: 1;
		margin-right: 50px;
		z-index: 1;
	}

	.tarif-info-content {
		z-index: auto;
	}

	.sim-image {
		opacity: 1;
		transform: scale(1.3) !important;
		mix-blend-mode: normal;
		filter: none;
		transform-origin: center;
	}
}

/* Mobile: Show subtle background shimmer - full container fill */
@media (max-width: 767px) {
	.tarif-info-card {
		position: relative;
		overflow: hidden;
	}

	.tarif-info-image {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		pointer-events: none;
	}

	.tarif-info-content {
		z-index: 1;
		position: relative;
	}

	.sim-image {
		opacity: 0.05;
		transform: translate(0, 0) !important;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* ===================================================================
   Bestellung Header - Responsive Title Layout
   =================================================================== */

.bestellung-header-title {
	display: flex;
	align-items: center;
	gap: 15px;
	white-space: nowrap;
	margin: 0;
}

.bestellung-header-subtitle {
	font-size: 0.85em;
	font-weight: 500;
	color: #666;
}

.bestellung-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background-color: #ff9933;
	color: #fff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 700;
	flex-shrink: 0;
	padding: 0;
	line-height: 1;
	margin-left: 10px;
}

/* Mobile: Smaller subtitle text */
@media (max-width: 640px) {
	.bestellung-header-title {
		gap: 10px;
	}

	.bestellung-header-subtitle {
		font-size: 0.65em;
	}

	.bestellung-header-icon {
		width: 24px;
		height: 24px;
		font-size: 16px;
		margin-left: 5px;
	}
}
