.gfp-quiz-app {
	max-width: 820px;
	margin: 0 auto;
	padding: 24px 16px;
}

.gfp-quiz-shell {
	width: 100%;
}

.gfp-quiz-card {
	background: #ffffff;
	border: 1px solid #e8e8ee;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(20, 20, 43, 0.05);
}

.gfp-eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
}

.gfp-title {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: #111827;
}

.gfp-text {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
}

.gfp-progress-header {
	margin-bottom: 24px;
}

.gfp-progress-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	font-size: 14px;
	color: #4b5563;
}

.gfp-progress-label {
	font-weight: 600;
}

.gfp-progress-count {
	font-weight: 600;
}

.gfp-progress-bar {
	position: relative;
	width: 100%;
	height: 10px;
	background: #eef1f5;
	border-radius: 999px;
	overflow: hidden;
}

.gfp-progress-fill {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #1f2937 0%, #4b5563 100%);
	border-radius: 999px;
	transition: width 0.2s ease;
}

.gfp-question-wrap {
	margin-bottom: 24px;
}

.gfp-question-text {
	margin: 0 0 10px;
	font-size: 26px;
	line-height: 1.3;
	color: #111827;
}

.gfp-question-instruction {
	margin: 0 0 18px;
	font-size: 15px;
	color: #6b7280;
}

.gfp-answers {
	display: grid;
	gap: 14px;
}

.gfp-answer {
	display: block;
	width: 100%;
	text-align: left;
	padding: 16px 18px;
	border: 1px solid #d7dbe3;
	border-radius: 16px;
	background: #ffffff;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.5;
	color: #111827;
	transition: all 0.15s ease;
}

.gfp-answer:hover {
	border-color: #9aa4b2;
	transform: translateY(-1px);
}

.gfp-answer.is-selected {
	border-color: #111827;
	background: #f7f8fa;
	box-shadow: inset 0 0 0 1px #111827;
}

.gfp-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.gfp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	text-decoration: none;
}

.gfp-button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.gfp-button-primary {
	background: #111827;
	color: #ffffff;
}

.gfp-button-primary:hover:not(:disabled) {
	background: #1f2937;
}

.gfp-button-secondary {
	background: #ffffff;
	color: #111827;
	border-color: #d1d5db;
}

.gfp-button-secondary:hover:not(:disabled) {
	background: #f9fafb;
}

.gfp-complete-meta {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #f7f8fa;
	font-size: 14px;
	line-height: 1.6;
	color: #374151;
}

@media (max-width: 640px) {
	.gfp-quiz-app {
		padding: 18px 12px;
	}

	.gfp-quiz-card {
		padding: 20px;
		border-radius: 18px;
	}

	.gfp-title {
		font-size: 24px;
	}

	.gfp-question-text {
		font-size: 21px;
	}

	.gfp-nav {
		flex-direction: column-reverse;
	}

	.gfp-button {
		width: 100%;
	}
}
.gfp-result-card {
	padding-bottom: 24px;
}

.gfp-result-summary {
	margin: 0 0 20px;
	font-size: 17px;
	line-height: 1.7;
	color: #374151;
}

.gfp-result-sections {
	display: grid;
	gap: 18px;
	margin-top: 10px;
}

.gfp-result-section {
	padding: 18px 18px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #fafafa;
}

.gfp-result-section-title {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	color: #111827;
}

.gfp-result-paragraph {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #374151;
}

.gfp-debug-card {
	margin-top: 20px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #f7f8fa;
	font-size: 13px;
	line-height: 1.6;
	color: #4b5563;
}
.gfp-email-capture {
	margin-top: 22px;
	padding: 20px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #ffffff;
}

.gfp-email-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.gfp-email-text {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.6;
	color: #4b5563;
}

.gfp-email-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

.gfp-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
}

.gfp-field input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 12px;
	font-size: 15px;
	line-height: 1.4;
	background: #ffffff;
	color: #111827;
}

.gfp-field input:focus {
	outline: none;
	border-color: #111827;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.gfp-email-message {
	margin-top: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.5;
}

.gfp-email-message.is-success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.gfp-email-message.is-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

@media (max-width: 640px) {
	.gfp-email-grid {
		grid-template-columns: 1fr;
	}
}