/* Quick feel preview — desktop only */

.rf-quickfeel {
	position: relative;
	overflow: hidden;
	padding: 42px 20px;
	color: #fff;
	background:
		radial-gradient(circle at 12% 20%, rgba(168, 85, 247, 0.18), transparent 28%),
		radial-gradient(circle at 88% 20%, rgba(37, 211, 102, 0.08), transparent 24%),
		linear-gradient(180deg, #10001d 0%, #080011 100%);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rf-quickfeel *,
.rf-quickfeel *::before,
.rf-quickfeel *::after {
	box-sizing: border-box;
}

.rf-quickfeel-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: 0.45;
	mask-image: radial-gradient(circle at 50% 50%, black, transparent 76%);
}

.rf-quickfeel-wrap {
	position: relative;
	z-index: 2;
	width: min(1180px, 100%);
	margin: 0 auto;
}

.rf-quickfeel-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.rf-quickfeel-title span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 8px 12px;
	border-radius: 999px;
	color: #d8b4fe;
	background: rgba(168, 85, 247, 0.14);
	border: 1px solid rgba(216, 180, 254, 0.18);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.rf-quickfeel-title i {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #25d366;
	box-shadow: 0 0 16px rgba(37, 211, 102, 0.9);
}

.rf-quickfeel-title h2 {
	margin: 0;
	max-width: 720px;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 0.98;
	letter-spacing: -0.055em;
	text-align: right;
}

.rf-quickfeel-row {
	min-height: 300px;
	display: grid;
	grid-template-columns: 280px 360px 1fr;
	gap: 16px;
	align-items: stretch;
}

.rfq-left,
.rfq-phone-zone,
.rfq-right {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(18px);
	border-radius: 28px;
}

.rfq-left {
	position: relative;
	padding: 18px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 14px;
}

.rfq-left > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.55;
}

.rfq-cta-wrap {
	position: relative;
	width: 100%;
	flex-shrink: 0;
}

.rfq-btn {
	position: relative;
	overflow: visible;
	border: 0;
	cursor: pointer;
	width: 100%;
	padding: 16px 16px 38px;
	border-radius: 22px;
	color: #fff;
	text-align: left;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.86), rgba(37, 211, 102, 0.42));
	box-shadow: 0 18px 42px rgba(168, 85, 247, 0.24);
	font-family: inherit;
	transition: 0.3s ease;
	flex-shrink: 0;
}

.rfq-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 52px rgba(168, 85, 247, 0.32);
}

.rfq-btn:disabled {
	opacity: 0.72;
	cursor: wait;
	transform: none;
}

.rfq-btn-glow {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	overflow: hidden;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 55%);
	animation: rfqGlow 2.2s ease-in-out infinite;
	pointer-events: none;
}

@keyframes rfqGlow {
	0%, 100% { transform: scale(0.75); opacity: 0.5; }
	50% { transform: scale(1.05); opacity: 1; }
}

.rfq-btn strong,
.rfq-btn small {
	position: relative;
	z-index: 2;
	display: block;
}

.rfq-btn strong {
	font-size: 15px;
	margin-bottom: 4px;
}

.rfq-btn small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 11px;
	font-weight: 700;
}

.rfq-progress {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.35s ease, max-height 0.45s ease;
}

.rf-quickfeel.is-setup .rfq-progress,
.rf-quickfeel.is-active .rfq-progress {
	opacity: 1;
	max-height: 280px;
}

.rfq-progress-item {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 10px;
	align-items: start;
	padding: 10px 11px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	opacity: 0.35;
	transform: translateY(6px);
	transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.rfq-progress-item.is-running {
	opacity: 1;
	transform: translateY(0);
	background: rgba(168, 85, 247, 0.12);
	border-color: rgba(216, 180, 254, 0.16);
}

.rfq-progress-item.is-done {
	opacity: 1;
	transform: translateY(0);
	background: rgba(37, 211, 102, 0.1);
	border-color: rgba(37, 211, 102, 0.18);
}

.rfq-progress-mark {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 12px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.5);
	transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.rfq-progress-item.is-running .rfq-progress-mark {
	background: rgba(168, 85, 247, 0.35);
	color: #fff;
	box-shadow: 0 0 18px rgba(168, 85, 247, 0.35);
}

.rfq-progress-item.is-running .rfq-progress-mark::after {
	content: "";
	width: 12px;
	height: 12px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: rfqSpin 0.7s linear infinite;
}

.rfq-progress-item.is-done .rfq-progress-mark {
	background: rgba(37, 211, 102, 0.28);
	color: #86efac;
	box-shadow: 0 0 16px rgba(37, 211, 102, 0.3);
}

.rfq-progress-item.is-done .rfq-progress-mark::after {
	content: "✓";
	font-size: 13px;
	line-height: 1;
}

.rfq-progress-item strong {
	display: block;
	font-size: 12px;
	margin-bottom: 2px;
}

.rfq-progress-item small {
	display: block;
	color: rgba(255, 255, 255, 0.5);
	font-size: 10px;
	line-height: 1.35;
}

@keyframes rfqSpin {
	to { transform: rotate(360deg); }
}

.rfq-click-note {
	position: absolute;
	left: 16px;
	bottom: 11px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	color: #ede9fe;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: lowercase;
	animation: rfqPoint 1.6s ease-in-out infinite;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.rfq-click-note b {
	color: #d8b4fe;
	font-size: 13px;
	line-height: 1;
}

.rf-quickfeel.is-setup .rfq-click-note,
.rf-quickfeel.is-active .rfq-click-note {
	opacity: 0;
}

@keyframes rfqPoint {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

.rfq-wa-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.rfq-phone-zone {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: end center;
	padding: 18px 18px 0;
}

.rfq-phone {
	position: relative;
	width: 260px;
	height: 340px;
	padding: 14px;
	border-radius: 34px 34px 0 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
		rgba(10, 4, 18, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
	transform: translateY(30px);
	overflow: hidden;
	transition: transform 0.5s ease;
}

.rf-quickfeel.is-active .rfq-phone {
	transform: translateY(18px);
}

.rfq-wa-watermark {
	position: absolute;
	left: 50%;
	top: 54%;
	transform: translate(-50%, -50%);
	width: 88px;
	height: 88px;
	color: rgba(37, 211, 102, 0.14);
	opacity: 0.55;
	transition: opacity 0.5s ease, transform 0.5s ease;
	pointer-events: none;
}

.rf-quickfeel.is-active .rfq-wa-watermark {
	opacity: 0.08;
	transform: translate(-50%, -50%) scale(0.92);
}

.rfq-phone-top {
	display: grid;
	grid-template-columns: 38px 1fr auto;
	gap: 10px;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 2;
}

.rfq-avatar {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background:
		radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.35), transparent 20%),
		linear-gradient(135deg, rgba(168, 85, 247, 0.75), rgba(37, 211, 102, 0.25));
	display: grid;
	place-items: center;
}

.rfq-avatar-wa {
	width: 20px;
	height: 20px;
	color: #fff;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.rfq-phone-top strong {
	display: block;
	font-size: 13px;
}

.rfq-phone-top small {
	display: block;
	color: rgba(255, 255, 255, 0.48);
	font-size: 10px;
}

.rfq-unread-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
}

.rfq-unread-wa {
	width: 16px;
	height: 16px;
	color: #86efac;
	opacity: 0.9;
	flex-shrink: 0;
}

.rfq-unread {
	display: grid;
	place-items: center;
	min-width: 31px;
	height: 31px;
	padding: 0 8px;
	border-radius: 999px;
	color: #fff;
	background: #25d366;
	box-shadow: 0 0 20px rgba(37, 211, 102, 0.44);
	font-size: 12px;
	font-weight: 950;
	transition: 0.45s ease;
}

.rfq-message-list {
	display: grid;
	gap: 9px;
	padding-top: 13px;
	transition: 0.55s ease;
	position: relative;
	z-index: 2;
}

.rfq-message {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 9px;
	align-items: center;
	padding: 9px;
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: 0.55s ease;
}

.rfq-msg-avatar {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	display: grid;
	place-items: center;
	padding: 7px;
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

.rfq-message strong {
	display: block;
	margin-bottom: 2px;
	font-size: 11px;
}

.rfq-message p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 10.5px;
	line-height: 1.3;
}

.rfq-done-state {
	position: absolute;
	inset: 82px 16px auto;
	min-height: 150px;
	display: grid;
	place-items: center;
	text-align: center;
	opacity: 0;
	transform: translateY(12px) scale(0.96);
	transition: 0.6s ease;
	z-index: 3;
}

.rfq-check {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 12px;
	border-radius: 20px;
	background: rgba(37, 211, 102, 0.18);
	color: #86efac;
	font-size: 28px;
	font-weight: 900;
	box-shadow: 0 0 35px rgba(37, 211, 102, 0.18);
}

.rfq-done-state strong {
	display: block;
	font-size: 18px;
	margin-bottom: 7px;
}

.rfq-done-state p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 12px;
	line-height: 1.45;
}

.rfq-right {
	position: relative;
	padding: 22px;
	overflow: hidden;
	min-height: 300px;
}

.rfq-before-text,
.rfq-after-text {
	position: absolute;
	inset: 22px;
	opacity: 0;
	transform: translateY(12px);
	transition: 0.55s ease;
	pointer-events: none;
}

.rfq-before-text.active,
.rfq-after-text.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.rfq-right span {
	display: inline-flex;
	margin-bottom: 12px;
	color: #d8b4fe;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rfq-right h3 {
	margin: 0;
	max-width: 420px;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1;
	letter-spacing: -0.052em;
}

.rfq-right p {
	max-width: 460px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 14px;
	line-height: 1.6;
}

.rfq-live-in {
	display: inline-flex;
	margin-top: 12px;
	padding: 8px 12px;
	border-radius: 999px;
	color: #86efac;
	background: rgba(37, 211, 102, 0.14);
	border: 1px solid rgba(37, 211, 102, 0.22);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	opacity: 0;
	transform: translateY(8px);
	transition: 0.45s ease 0.15s;
}

.rf-quickfeel.is-active .rfq-live-in {
	opacity: 1;
	transform: translateY(0);
}

.rfq-results {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 11px;
	margin-top: 18px;
}

.rfq-results div {
	padding: 13px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.rfq-results strong {
	display: block;
	margin-bottom: 4px;
	font-size: 28px;
	line-height: 1;
	letter-spacing: -0.04em;
}

.rfq-results p {
	margin: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 11.5px;
	line-height: 1.35;
}

/* Phone + results active state */
.rf-quickfeel.is-active .rfq-unread-wrap {
	transform: scale(0.92);
}

.rf-quickfeel.is-active .rfq-unread {
	transform: scale(0.1);
	opacity: 0;
}

.rf-quickfeel.is-active .rfq-unread-wa {
	opacity: 0;
}

.rf-quickfeel.is-active .rfq-message-list {
	opacity: 0;
	transform: translateY(-12px);
}

.rf-quickfeel.is-active .rfq-message {
	transform: translateX(18px);
}

.rf-quickfeel.is-active .rfq-done-state {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.rf-quickfeel.is-active .rfq-before-text {
	opacity: 0;
	transform: translateY(-12px);
}

.rf-quickfeel.is-active .rfq-before-text.active {
	opacity: 0;
}

.rf-quickfeel.is-active .rfq-after-text {
	opacity: 1;
	transform: translateY(0);
}

.rf-quickfeel.is-active .rfq-after-text.active {
	opacity: 1;
}

.rf-quickfeel.is-active .rfq-btn {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.78), rgba(16, 185, 129, 0.42));
}

/* Mobile only — hidden on phones, visible on tablet/desktop */
@media (max-width: 767px) {
	.rf-quickfeel {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rf-quickfeel *,
	.rf-quickfeel *::before,
	.rf-quickfeel *::after {
		animation: none !important;
		transition: none !important;
	}
}
