/* ============================================================
   Survey Popup
   ============================================================ */

.survey-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.survey-popup--hidden {
	display: none;
}

.survey-popup--visible {
	display: flex;
	animation: survey-popup-fadein 0.25s ease both;
}

@keyframes survey-popup-fadein {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Backdrop */
.survey-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	cursor: pointer;
}

/* Card */
.survey-popup__box {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: row;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	width: 90%;
	max-width: 660px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Close button */
.survey-popup__close {
	position: absolute;
	top: 14px;
	right: 16px;
	z-index: 2;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	color: #7F7F7F;
	padding: 4px 8px;
	transition: color 0.15s ease;
}

.survey-popup__close:hover,
.survey-popup__close:focus {
	color: #000000;
	outline: none;
}

/* Left image column */
.survey-popup__image {
	flex: 0 0 220px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
    padding: 24px 24px 28px;
}

.survey-popup__image img {
	width: 100%;
	height: auto;
	display: block;
    max-width: 250px;
    margin-left: auto; margin-right: auto;
}

/* Right content column */
.survey-popup__content {
	flex: 1;
	padding: 36px 40px 36px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Logo */
.survey-popup__logo {
	max-width: 120px;
	height: auto;
	display: block;
	margin-bottom: 18px;
}

/* Title */
.survey-popup__title {
	font-family: 'Archivo', sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	color: #000000;
	margin: 0 0 14px;
	line-height: 1;
}

.survey-popup__title-highlight {
	color: #3F6EEE;
}

/* Description */
.survey-popup__description {
	font-family: 'Archivo', sans-serif;
	font-size: 1rem;
	color: #000000;
	margin: 0 0 28px;
	line-height: 1.55;
}

/* Actions row */
.survey-popup__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* CTA button */
.survey-popup__cta {
	display: inline-block;
	background: #3F6EEE;
	color: #ffffff;
	font-family: 'Archivo', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	padding: 13px 32px;
	border-radius: 6px;
	transition: background 0.15s ease;
	white-space: nowrap;
}

.survey-popup__cta:hover,
.survey-popup__cta:focus {
	background: #000000;
	color: #ffffff;
	outline: none;
}

/* Dismiss text */
.survey-popup__dismiss {
	background: none;
	border: none;
	cursor: pointer;
	font-family: 'Archivo', sans-serif;
	font-size: 0.95rem;
	color: #B4B4B4;
	padding: 0;
	transition: color 0.15s ease;
	white-space: nowrap;
}

.survey-popup__dismiss:hover,
.survey-popup__dismiss:focus {
	color: #000000;
	outline: none;
}

/* Mobile: stack columns */
@media (max-width: 560px) {
	.survey-popup__box {
		flex-direction: column;
		max-width: 360px;
	}

	.survey-popup__image {
		flex: none;
	}

	.survey-popup__content {
		padding: 24px 24px 28px;
	}

	.survey-popup__title {
		font-size: 1.8rem;
	}
}
