/* Unik styling för prissidan */
.pricing-header {
	text-align: center;
	margin-bottom: 3rem;
}

.pricing-header h1 {
	color: #0f172a;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.pricing-header p {
	color: #64748b;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Toggle Månad/År */
.billing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 2rem;
	font-weight: 600;
	color: #334155;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #cbd5e1;
	transition: .4s;
	border-radius: 34px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked+.slider {
	background-color: #ED9B33;
}

input:checked+.slider:before {
	transform: translateX(26px);
}

.save-badge {
	background: #10b981;
	color: white;
	font-size: 0.75rem;
	padding: 3px 8px;
	border-radius: 12px;
	font-weight: bold;
	margin-left: 8px;
	vertical-align: middle;
}

/* Priskorten */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: white;
	border-radius: 16px;
	padding: 40px 30px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
	position: relative;
	display: flex;
	flex-direction: column;
}

.pricing-card.popular {
	border: 2px solid #ED9B33;
	transform: scale(1.03);
	box-shadow: 0 20px 40px rgba(237, 155, 51, 0.15);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #ED9B33;
	color: white;
	font-size: 0.85rem;
	font-weight: bold;
	padding: 4px 15px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 10px;
}

.card-price {
	font-size: 3rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 5px;
}

.price-period {
	font-size: 1rem;
	color: #64748b;
	font-weight: normal;
}

.card-desc {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 30px;
	min-height: 45px;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	flex-grow: 1;
}

.feature-list li {
	margin-bottom: 15px;
	color: #334155;
	display: flex;
	align-items: flex-start;
}

.feature-list i {
	color: #10b981;
	margin-top: 3px;
	margin-right: 12px;
}

.feature-list .fa-times {
	color: #cbd5e1;
}

.pricing-btn {
	display: block;
	text-align: center;
	padding: 14px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	width: 100%;
	box-sizing: border-box;
}

.btn-outline {
	border: 2px solid #cbd5e1;
	color: #475569;
	background: transparent;
}

.btn-outline:hover {
	border-color: #94a3b8;
	color: #0f172a;
}

.btn-primary {
	background: #ED9B33;
	color: white;
	border: 2px solid #ED9B33;
}

.btn-primary:hover {
	background: #d98a2b;
	border-color: #d98a2b;
}

.tax-note {
	text-align: center;
	font-size: 0.85rem;
	color: #94a3b8;
	margin-top: 2rem;
}

/* Responsivitet för det mittersta kortet */
@media (max-width: 768px) {
	.pricing-card.popular {
		transform: scale(1);
	}
}