/**
 * Koli Lazım Partner - Frontend Styles
 * Modern, clean pricing page design
 */

/* Import Inter & Montserrat (fallback/general UI) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Local Clash Display font family */
@font-face {
	font-family: 'ClashDisplay';
	src: url('../fonts/ClashDisplay-Extralight.otf') format('opentype');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ClashDisplay';
	src: url('../fonts/ClashDisplay-Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ClashDisplay';
	src: url('../fonts/ClashDisplay-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ClashDisplay';
	src: url('../fonts/ClashDisplay-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ClashDisplay';
	src: url('../fonts/ClashDisplay-Semibold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ClashDisplay';
	src: url('../fonts/ClashDisplay-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Root Variables */
:root {
	--klp-navy: #0C304A;
	--klp-green: #16A34A;
	--klp-gray-dark: #6B7280;
	--klp-gray-light: #E5E7EB;
	--klp-green-light: #D1FAE5;
	--klp-green-lighter: #A7F3D0;
	--klp-white: #ffffff;
	--klp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--klp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--klp-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Styles */
.koli-lazim-pricing-page {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	background-color: var(--klp-white);
	color: #1f2937;
}

/* Header */
.klp-header {
	text-align: center;
	margin-bottom: 48px;
	animation: fadeInUp 0.6s ease-out;
}

.klp-title {
	font-size: 72px;
	font-weight: 500;
	color: var(--klp-navy);
	margin: 0 0 16px 0;
	line-height: 1.2;
	font-family: 'ClashDisplay', sans-serif !important;
}

.klp-subtitle {
	font-size: 1.125rem;
	color: var(--klp-navy);
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto;
	font-family: 'ClashDisplay', sans-serif !important;
	font-weight: 500;
}

/* Toggle Container */
.klp-toggle-container {
	display: flex;
	justify-content: center;
	margin-bottom: 48px;
	animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.klp-toggle {
	display: inline-flex;
	background-color: #ffffff;
	border-radius: 20px;
	padding: 6px;
	box-shadow: var(--klp-shadow);
	border: 1px solid #10192B;
}

.klp-toggle-btn {
	padding: 1px 76px;
	border: none;
	background: transparent;
	color: var(--klp-gray-dark);
	font-size: 1rem;
	font-weight: 600;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'ClashDisplay', sans-serif !important;
	font-weight: 500;
}

.klp-toggle-btn.active {
	background-color: #0F1A2B;
	color: #60E181;
	box-shadow: var(--klp-shadow);
}

.klp-toggle-btn:hover:not(.active) {
	color: var(--klp-navy);
}

/* Pricing Cards */
.klp-pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 48px;
	animation: fadeInUp 0.6s ease-out 0.2s backwards;
	position: relative;
	z-index: 1;
}

.klp-card {
	background: var(--klp-white);
	border-radius: 28px;
	box-shadow: var(--klp-shadow);
	overflow: visible;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: auto;
}

.klp-card::before {
	content: '';
	position: absolute;
	left: -80px;
	bottom: 20px;
	width: 110px;
	height: 160px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
	z-index: -1;
}

.klp-card[data-plan="standart"]::before {
	background-image: url('../images/1.svg');
}

.klp-card[data-plan="pro"]::before {
	background-image: url('../images/2.svg');
}

.klp-card[data-plan="elite"]::before {
	background-image: url('../images/3.svg');
}

.klp-card:hover {
	transform: none;
	box-shadow: var(--klp-shadow);
}

.klp-card-highlight {
	border: none;
	box-shadow: var(--klp-shadow-lg);
	transform: scale(1.02);
}

.klp-card-highlight:hover {
	transform: scale(1.02);
}

.klp-card-header {
	padding: 24px;
	text-align: left;
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	background-color: #0B597C;
	color: var(--klp-white);
	font-family: 'ClashDisplay', sans-serif !important;
	font-weight: 300;
	border-radius: 28px 28px 0 0;
	z-index: 10;
}

.klp-card-title {
	font-size: 1.75rem;
	font-weight: 300;
	margin: 0;
	text-align: left;
	font-family: 'ClashDisplay', sans-serif !important;
}

.klp-card-title span {
	color: inherit;
}

.klp-card-header-pro {
	background: linear-gradient(90deg, #0C5475 0%, #06171E 100%);
}

.klp-card-header-pro .klp-card-title span {
	color: #60E181 !important;
	font-weight: 600;
}

.klp-card-header:not(.klp-card-header-pro) .klp-card-title span {
	color: #ffffff !important;
}

.klp-card-star {
	color: #66BE70;
	font-size: 1.6rem;
	line-height: 1;
	display: inline-block;
	margin-left: auto;
}

.klp-card-body {
	padding: 32px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 10;
	background-color: var(--klp-white);
}

.klp-card-description {
	font-size: 15px;
	color: #020202;
	line-height: 1.6;
	margin: 0 0 24px 0;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 500;
}

.klp-card-features {
	list-style: disc;
	padding-left: 20px;
	margin: 0 0 24px 0;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 600;
	color: #1f2937;
}

.klp-card-features li {
	padding: 2px 0;
	margin: 0;
	font-size: 15px;
	font-weight: 900;
}

.klp-card-pricing {
	margin-top: auto;
	margin-bottom: 3px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-family: 'Montserrat', sans-serif !important;
}

.klp-price-line {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.klp-price-label {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--klp-gray-dark);
}

.klp-price-amount {
	font-size: 2rem;
	font-weight: 600;
	color: var(--klp-navy);
	line-height: 1.2;
}

.klp-price-subtext {
	margin-top: 0;
	font-size: 0.875rem;
	color: var(--klp-gray-dark);
}

.klp-card-button {
	width: 100%;
	padding: 16px 32px;
	border: none;
	border-radius: 12px;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'ClashDisplay', sans-serif !important;
	margin-top: 0;
	text-align: center;
	text-decoration: none !important;
}

.klp-button-navy {
	background-color: var(--klp-navy);
	color: var(--klp-white);
}

.klp-button-navy:hover {
	background-color: #0a2538;
	transform: translateY(-2px);
	box-shadow: var(--klp-shadow-lg);
}

.klp-button-green {
	background-color: var(--klp-green);
	color: var(--klp-white);
}

.klp-card[data-plan="pro"] .klp-card-button {
	background-color: #66BE6E !important;
	color: #10192B;
}

.klp-card[data-plan="pro"] .klp-card-button:hover {
	color: #10192B;
	background-color: #58AA62;
	box-shadow: var(--klp-shadow-lg);
}

.klp-button-green:hover {
	background-color: #15803d;
	transform: translateY(-2px);
	box-shadow: var(--klp-shadow-lg);
}

.klp-card-button.is-loading {
	opacity: 0.75;
	cursor: progress;
}

.klp-card-button.is-selected {
	background-color: #60E181;
	color: #0F172A;
}

/* Consent */
.klp-consent {
	margin: 32px auto 48px;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	max-width: 760px;
	animation: fadeInUp 0.6s ease-out 0.3s backwards;
	padding: 0 12px;
}

.klp-consent-label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: #0f172a;
	line-height: 1.4;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 500;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 720px;
}

.klp-consent-label span {
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 500;
	white-space: nowrap;
}

.klp-terms-checkbox {
	width: 24px;
	height: 24px;
	margin-top: 0;
	accent-color: #16A34A;
	border-radius: 6px;
	cursor: pointer;
}

.klp-terms-link {
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 600;
	color: inherit;
	text-decoration: underline;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.klp-consent-warning {
	font-size: 0.875rem;
	color: #DC2626;
	font-family: 'Montserrat', sans-serif !important;
	display: none;
	text-align: center;
}

.klp-consent-warning.show {
	display: block;
}

.klp-card-button.klp-button-disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* Onboarding */
.klp-onboarding {
	margin: 48px auto 32px;
	padding: 36px;
	border-radius: 32px;
	background: linear-gradient(135deg, #FFFFFF 0%, #EAFBF1 100%);
	box-shadow: var(--klp-shadow-lg);
	border: 1px solid rgba(12, 48, 74, 0.08);
	transition: opacity 0.3s ease;
}

.klp-onboarding.is-disabled {
	opacity: 0.6;
	pointer-events: none;
}

.klp-onboarding.is-hidden {
	display: none;
}

.klp-application-flow.is-hidden {
	display: none;
}

.klp-onboarding-header h2 {
	margin: 0 0 8px;
	font-size: 2rem;
	color: var(--klp-navy);
	font-family: 'ClashDisplay', sans-serif !important;
}

.klp-onboarding-header p {
	margin: 0 0 24px;
	color: #1f2937;
	font-size: 1rem;
	line-height: 1.5;
	font-family: 'Montserrat', sans-serif !important;
}

.klp-onboarding-status {
	margin-bottom: 24px;
	padding: 14px 18px;
	border-radius: 14px;
	border: 1px solid rgba(12, 48, 74, 0.15);
	background-color: #FFFFFF;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 600;
	color: #0C304A;
}

.klp-onboarding-status.is-success {
	border-color: rgba(22, 163, 74, 0.3);
	background-color: #ECFDF3;
	color: #166534;
}

.klp-onboarding-status.is-error {
	border-color: rgba(220, 38, 38, 0.3);
	background-color: #FEF2F2;
	color: #B91C1C;
}

.klp-onboarding-status.is-info {
	border-color: rgba(37, 99, 235, 0.3);
	background-color: #EFF6FF;
	color: #1D4ED8;
}

.klp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
	margin-bottom: 28px;
}

.klp-form-field.klp-span-2 {
	grid-column: 1 / -1;
}

.klp-form-field {
	display: flex;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif !important;
	gap: 8px;
}

.klp-form-field span {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #0F172A;
}

.klp-form-field input,
.klp-form-field select,
.klp-form-field textarea {
	border-radius: 14px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	padding: 12px 14px;
	font-size: 0.95rem;
	background-color: #ffffff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	font-family: 'Inter', sans-serif;
}

.klp-form-field input:focus,
.klp-form-field select:focus,
.klp-form-field textarea:focus {
	border-color: #0C304A;
	box-shadow: 0 0 0 3px rgba(96, 225, 129, 0.35);
	outline: none;
}

.klp-form-field input.has-error,
.klp-form-field select.has-error,
.klp-form-field textarea.has-error {
	border-color: #DC2626;
	background-color: #FEF2F2;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.klp-form-field input.has-error:focus,
.klp-form-field select.has-error:focus,
.klp-form-field textarea.has-error:focus {
	border-color: #DC2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}

.klp-form-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

.klp-form-submit {
	background-color: #0C304A;
	color: #ffffff;
	padding: 16px 32px;
	border-radius: 14px;
	border: none;
	font-size: 1rem;
	font-family: 'ClashDisplay', sans-serif !important;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.klp-form-submit:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: var(--klp-shadow);
}

.klp-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.klp-form-submit.is-loading {
	cursor: progress;
}

.klp-meet-container {
	margin-top: 24px;
	padding: 28px;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: var(--klp-shadow);
	border: 1px solid rgba(12, 48, 74, 0.08);
}

.klp-meet-container.is-hidden {
	display: none;
}

.klp-meet-header {
	margin-bottom: 24px;
}

.klp-meet-header h3 {
	margin: 0 0 8px;
	font-size: 1.5rem;
	color: var(--klp-navy);
	font-family: 'ClashDisplay', sans-serif !important;
	font-weight: 500;
}

.klp-meet-header p {
	margin: 0;
	font-size: 0.95rem;
	color: #1f2937;
	font-family: 'Montserrat', sans-serif !important;
	line-height: 1.6;
}

.klp-meet-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 24px;
	align-items: start;
}

.klp-complete-action {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	padding: 0;
}

.klp-complete-action.is-hidden {
	display: none;
}

.klp-meet-iframe-wrapper {
	position: relative;
	padding: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--klp-shadow);
	max-height: 500px;
	overflow-y: auto;
}

.klp-meet-iframe-wrapper iframe {
	display: block;
	width: 100%;
	height: 500px;
	border: 0;
	min-height: 500px;
}

.klp-complete-button {
	width: 100%;
	padding: 16px 32px;
	border-radius: 14px;
	border: 0;
	background: #0C304A;
	color: #fff;
	font-family: 'ClashDisplay', sans-serif !important;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	opacity: 0.55;
	text-align: center;
}

.klp-complete-button.is-active {
	opacity: 1;
	box-shadow: var(--klp-shadow);
}

.klp-complete-button:disabled {
	cursor: not-allowed;
}

.klp-complete-button:not(:disabled):hover {
	transform: translateY(-1px);
	box-shadow: var(--klp-shadow-lg);
}

.klp-payment-button {
	padding: 16px 40px;
	background: #2ecc71;
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
}

.klp-payment-button:hover {
	background: #27ae60;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.klp-thankyou {
	margin: 60px auto;
	padding: 32px 16px;
	background: transparent;
	border-radius: 0;
	color: var(--klp-navy);
	text-align: center;
	box-shadow: none;
	border-top: 1px solid rgba(12, 48, 74, 0.1);
}

.klp-thankyou.is-hidden {
	display: none;
}

.klp-thankyou-card h2 {
	margin: 0 0 16px;
	font-size: 2rem;
	font-family: 'ClashDisplay', sans-serif !important;
	color: var(--klp-navy);
}

.klp-thankyou-card p {
	margin: 0 0 10px;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 1rem;
	color: #1f2937;
}

/* Modal */
.klp-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 999;
}

.klp-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.klp-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 25, 43, 0.65);
}

.klp-modal-dialog {
	position: relative;
	background: #ffffff;
	border-radius: 28px;
	width: min(760px, 92%);
	height: min(620px, 80vh);
	display: flex;
	flex-direction: column;
	box-shadow: var(--klp-shadow-xl);
	overflow: hidden;
	z-index: 1;
}

.klp-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 32px 16px;
	border-bottom: 1px solid var(--klp-gray-light);
}

.klp-modal-title {
	margin: 0;
	font-size: 1.5rem;
	font-family: 'ClashDisplay', sans-serif !important;
	color: #0F172A;
	font-weight: 500;
}

.klp-modal-close {
	border: none;
	background: transparent;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	color: #0F172A;
}

.klp-modal-body {
	padding: 16px 32px 32px;
	overflow-y: auto;
	flex: 1;
}

.klp-modal-body p {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 0.95rem;
	line-height: 1.7;
	color: #1F2937;
	margin: 0 0 16px;
}

body.klp-modal-open {
	overflow: hidden;
}

/* Comparison Section */
.klp-comparison-section {
	animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.klp-comparison-table {
	position: relative;
	background: linear-gradient(90deg, #FFFFFF 0%, #C2FFC4 100%);
	border-radius: 28px;
	padding: 0;
	margin-bottom: 0 !important;
	overflow-x: auto;
	box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.klp-comparison-table::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 28px;
	border: 1px solid #0E1A2A;
	pointer-events: none;
}

.klp-comparison-table table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-family: 'ClashDisplay', sans-serif;
	font-weight: 500;
	color: #0F1A2B;
	margin-bottom: 0 !important;
}

.klp-comparison-table th,
.klp-comparison-table td {
	width: 25%;
	padding: 20px 18px;
	font-size: 0.95rem;
	border-bottom: 1px solid #0E1A2A;
	border-right: 1px solid #0E1A2A;
}

.klp-comparison-table th {
	background: transparent;
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.klp-comparison-table th:first-child,
.klp-comparison-table td:first-child {
	text-align: left;
	border-left: 1px solid #0E1A2A;
}

.klp-comparison-table td {
	background: transparent;
	text-align: center;
}

.klp-comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.klp-check {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url('../images/check.svg') center/cover no-repeat;
}

.klp-comparison-footer {
	text-align: center;
	font-size: 0.95rem;
	color: #0F1A2B;
	line-height: 1.6;
	margin: 20px 0 0;
	font-family: 'ClashDisplay', sans-serif !important;
	font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.klp-pricing-cards {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.klp-card-highlight {
		transform: scale(1);
	}

	.klp-card-highlight:hover {
		transform: translateY(-4px);
	}
}

@media (max-width: 768px) {
	.koli-lazim-pricing-page {
		padding: 0 16px;
	}

	.klp-title {
		font-size: 2rem;
	}

	.klp-subtitle {
		font-size: 1rem;
	}

	.klp-toggle-btn {
		padding: 10px 24px;
		font-size: 0.9375rem;
	}

	.klp-card-title {
		font-size: 1.5rem;
	}

	.klp-price-amount {
		font-size: 2rem;
	}

	.klp-card::before {
		display: none;
	}

	.klp-comparison-table {
		padding: 16px;
	}

	.klp-comparison-table th,
	.klp-comparison-table td {
		padding: 12px 8px;
		font-size: 0.875rem;
	}

	.klp-consent {
		align-items: flex-start;
		padding: 0 8px;
		margin: 24px auto 32px;
	}

	.klp-consent-label {
		font-size: 0.85rem;
		gap: 12px;
		flex-direction: row;
		align-items: center;
	}

	.klp-consent-label span {
		white-space: normal;
	}

	.klp-terms-checkbox {
		min-width: 24px;
	}

	.klp-modal-dialog {
		height: min(560px, 85vh);
		border-radius: 22px;
	}

	.klp-modal-body {
		padding: 12px 20px 20px;
	}

	.klp-onboarding {
		padding: 24px;
	}

	.klp-onboarding-header h2 {
		font-size: 1.5rem;
	}

	.klp-form-grid {
		grid-template-columns: 1fr;
	}

	.klp-meet-container {
		padding: 20px;
		margin-top: 20px;
	}

	.klp-meet-header {
		margin-bottom: 20px;
	}

	.klp-meet-header h3 {
		font-size: 1.25rem;
	}

	.klp-meet-header p {
		font-size: 0.875rem;
		margin-bottom: 0;
	}

	.klp-meet-content-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.klp-complete-action {
		order: 2;
	}

	.klp-meet-iframe-wrapper {
		order: 1;
		max-height: 400px;
	}

	.klp-meet-iframe-wrapper iframe {
		height: 400px;
		min-height: 400px;
	}

	.klp-complete-button {
		width: 100%;
	}

	.klp-thankyou {
		padding: 32px 24px;
		margin: 40px auto;
	}
}

@media (max-width: 480px) {
	.klp-toggle-btn {
		padding: 8px 16px;
		font-size: 0.875rem;
	}

	.klp-card-body {
		padding: 24px 20px;
	}

	.klp-comparison-table th,
	.klp-comparison-table td {
		padding: 10px 6px;
		font-size: 0.8125rem;
	}

	.klp-consent-label {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.klp-terms-checkbox {
		margin-top: 0;
		min-width: 22px;
	}

	.klp-modal-dialog {
		border-radius: 18px;
		height: 80vh;
	}

	.klp-modal-title {
		font-size: 1.25rem;
	}

	.klp-card::before {
		display: none;
	}

	.klp-form-actions {
		align-items: stretch;
	}

	.klp-meet-container {
		padding: 16px;
	}

	.klp-meet-header h3 {
		font-size: 1.125rem;
	}

	.klp-meet-header p {
		font-size: 0.8125rem;
	}

	.klp-meet-content-wrapper {
		gap: 16px;
	}

	.klp-meet-iframe-wrapper {
		max-height: 350px;
	}

	.klp-meet-iframe-wrapper iframe {
		height: 350px;
		min-height: 350px;
	}

	.klp-complete-button {
		width: 100%;
	}

	.klp-thankyou-card h2 {
		font-size: 1.5rem;
	}
}