/* Extracted from assessment\index.blade.php (block 1) */
.assessment-section {
padding: 6rem 0;
background: linear-gradient(135deg, var(--muted) 0%, rgba(212, 115, 63, 0.05) 100%);
min-height: 100vh;
margin-top: 64px;
}

.assessment-container {
max-width: 800px;
margin: 0 auto;
}

.assessment-header {
text-align: center;
margin-bottom: 2rem;
}

.assessment-header h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #1a1a1a;
}

.assessment-header p {
font-size: 1.125rem;
color: var(--muted-foreground);
}

.progress-section {
margin-bottom: 1.5rem;
background: white;
padding: 1.25rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.progress-text-row {
display: flex;
justify-content: space-between;
margin-bottom: 0.75rem;
font-size: 0.9375rem;
font-weight: 600;
color: #1a1a1a;
}

.progress-text-row span:last-child {
color: var(--primary);
}

.progress-bar-bg {
height: 8px;
background: #f0f0f0;
border-radius: 100px;
overflow: hidden;
}

.progress-bar {
height: 100%;
background: linear-gradient(90deg, #d4733f 0%, #e88a5e 100%);
border-radius: 100px;
transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assessment-card {
background: white;
padding: 2rem;
border-radius: 16px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
position: relative;
}

.step-title {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #1a1a1a;
text-align: center;
position: relative;
padding-bottom: 0.75rem;
}

.step-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: linear-gradient(90deg, #d4733f 0%, #e88a5e 100%);
border-radius: 100px;
}

.options-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
margin-bottom: 1.5rem;
}

.options-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 1.5rem;
}

.option-checkbox,
.option-radio {
position: relative;
padding: 1rem;
border: 2px solid #e5e5e5;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
align-items: center;
gap: 0.75rem;
background: white;
}

.option-checkbox:hover,
.option-radio:hover {
border-color: #d4733f;
background: rgba(212, 115, 63, 0.03);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(212, 115, 63, 0.15);
}

.option-checkbox input:checked ~ span,
.option-radio input:checked ~ span,
.option-radio input:checked ~ .option-content {
color: #d4733f;
}

.option-checkbox input:checked,
.option-radio input:checked {
accent-color: #d4733f;
}

.option-checkbox:has(input:checked),
.option-radio:has(input:checked) {
border-color: #d4733f;
background: rgba(212, 115, 63, 0.08);
box-shadow: 0 0 0 4px rgba(212, 115, 63, 0.1);
}

.option-checkbox input,
.option-radio input {
width: 20px;
height: 20px;
cursor: pointer;
}

.option-checkbox span,
.option-radio span {
font-weight: 500;
font-size: 0.9375rem;
color: #1a1a1a;
transition: color 0.3s ease;
}

.option-content {
flex: 1;
}

.option-icon {
font-size: 1.5rem;
margin-bottom: 0.25rem;
}

.option-title {
font-weight: 600;
font-size: 0.9375rem;
margin-bottom: 0.125rem;
}

.option-desc {
font-size: 0.8125rem;
color: var(--muted-foreground);
line-height: 1.3;
}

.type-options {
display: contents;
}

.assessment-actions {
display: flex;
justify-content: space-between;
gap: 1rem;
margin-top: 2rem;
}

.assessment-actions .btn {
flex: 1;
padding: 1rem 2rem;
font-size: 1rem;
font-weight: 700;
border-radius: 12px;
border: none;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}

.assessment-actions .btn-primary {
background: linear-gradient(135deg, #d4733f 0%, #e88a5e 100%);
color: white;
box-shadow: 0 4px 8px rgba(212, 115, 63, 0.2);
}

.assessment-actions .btn-primary:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(212, 115, 63, 0.3);
}

.assessment-actions .btn-primary:active:not(:disabled) {
transform: translateY(0);
}

.assessment-actions .btn-secondary {
background: white;
color: #666;
border: 2px solid #e5e5e5;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.assessment-actions .btn-secondary:hover:not(:disabled) {
border-color: #d4733f;
color: #d4733f;
background: rgba(212, 115, 63, 0.05);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.assessment-actions .btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}

@media (max-width: 768px) {
.assessment-header h1 {
font-size: 2rem;
}

.assessment-header p {
font-size: 1rem;
}

.progress-section {
padding: 1rem;
}

.progress-text-row {
font-size: 0.875rem;
}

.progress-bar-bg {
height: 6px;
}

.assessment-card {
padding: 1.25rem;
}

.step-title {
font-size: 1.5rem;
margin-bottom: 0.875rem;
}

.step-title::after {
width: 50px;
height: 2.5px;
}

.options-grid {
gap: 0.625rem;
margin-bottom: 1.25rem;
}

.options-list {
gap: 0.625rem;
margin-bottom: 1.25rem;
}

.option-checkbox,
.option-radio {
padding: 0.875rem;
}

.option-checkbox span,
.option-radio span {
font-size: 0.875rem;
}

.option-icon {
font-size: 1.375rem;
margin-bottom: 0.125rem;
}

.option-title {
font-size: 0.875rem;
}

.option-desc {
font-size: 0.75rem;
}

.assessment-actions {
gap: 0.75rem;
margin-top: 1.5rem;
}

.assessment-actions .btn {
padding: 0.875rem 1.5rem;
font-size: 0.9375rem;
}
}

@media (max-width: 640px) {
.assessment-header h1 {
font-size: 1.75rem;
}

.assessment-header p {
font-size: 0.9375rem;
}

.progress-section {
padding: 0.875rem;
}

.progress-text-row {
font-size: 0.8125rem;
}

.options-grid {
grid-template-columns: 1fr;
}

.assessment-card {
padding: 1rem;
}

.step-title {
font-size: 1.25rem;
margin-bottom: 0.75rem;
}

.step-title::after {
width: 45px;
height: 2px;
}

.options-grid,
.options-list {
margin-bottom: 1rem;
gap: 0.5rem;
}

.option-checkbox,
.option-radio {
padding: 0.75rem;
gap: 0.625rem;
}

.option-checkbox span,
.option-radio span {
font-size: 0.8125rem;
}

.option-icon {
font-size: 1.25rem;
}

.option-title {
font-size: 0.8125rem;
}

.option-desc {
font-size: 0.6875rem;
}

.assessment-actions {
margin-top: 1.25rem;
gap: 0.625rem;
}

.assessment-actions .btn {
padding: 0.75rem 1.25rem;
font-size: 0.875rem;
}
}

@media (max-width: 428px) {
.assessment-header h1 {
font-size: 1.625rem;
}

.assessment-header p {
font-size: 0.875rem;
}

.progress-text-row {
font-size: 0.75rem;
}

.step-title {
font-size: 1.1875rem;
}

.option-checkbox span,
.option-radio span {
font-size: 0.78125rem;
}

.option-title {
font-size: 0.78125rem;
}

.option-desc {
font-size: 0.65625rem;
}
}

@media (max-width: 375px) {
.assessment-header h1 {
font-size: 1.5rem;
}

.assessment-header p {
font-size: 0.875rem;
}

.progress-section {
padding: 0.75rem;
}

.progress-text-row {
font-size: 0.75rem;
}

.assessment-card {
padding: 0.875rem;
}

.step-title {
font-size: 1.125rem;
}

.step-title::after {
width: 40px;
}

.option-checkbox,
.option-radio {
padding: 0.625rem;
gap: 0.5rem;
}

.option-checkbox span,
.option-radio span {
font-size: 0.75rem;
}

.option-icon {
font-size: 1.125rem;
}

.option-title {
font-size: 0.75rem;
}

.option-desc {
font-size: 0.625rem;
}

.assessment-actions .btn {
padding: 0.625rem 1rem;
font-size: 0.8125rem;
}

.free-input-wrapper {
width: 100%;
margin-bottom: 1.5rem;
}

.free-text-input {
display: block;
width: 100%;
min-width: 100%;
max-width: 100%;
box-sizing: border-box;
padding: 1.125rem 1.25rem;
border: 2px solid #e5e5e5;
border-radius: 12px;
font-size: 1.05rem;
font-family: inherit;
color: #1a1a1a;
background: #fafafa;
outline: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.free-text-input:hover {
border-color: #d0d0d0;
background: #fff;
}

.free-text-input:focus {
border-color: #d4733f;
background: #fff;
box-shadow: 0 0 0 4px rgba(212, 115, 63, 0.12), 0 2px 12px rgba(212, 115, 63, 0.08);
}

.free-text-input::placeholder {
color: #b0b0b0;
font-size: 0.95rem;
}