:root {
    --color-primary: #fd536f;
    --color-secondary: #f86f64;
	--transition-fast: 0.2s ease;
	--transition-medium: 0.3s ease;
	--transition-slow: 0.5s ease;
}

.transition-colors { transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast); }
.transition-all { transition: all var(--transition-medium); }

html, body {
	padding: 0;
	margin: 0;
	font-family: "Inter";
}

img {
	max-width: 90px;
	padding-bottom: 30px;
}

h1 {
	margin-bottom: 0;
}

#splash,
#question,
.results-container,
.form-container {
	display: flex;
	flex-direction: column;
	border: 4px solid #fa616a;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	border-radius: 24px;
}

#splash {
	height: auto;
	
	& h1 {
		font-size: 1.5rem;
	}
}

#splash .header {
	border-radius: 20px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	
	& p {
		opacity: 0.5;
	}
}

#splash .header div {
	gap: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.header {
	background: linear-gradient(111.02deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 20px 30px;
    text-align: center;
    color: white;
	border-radius: 20px 20px 0 0;
	
	&.full {
		border-radius: 20px;
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	&.full h1 {
		max-width: 600px;
	}
	
	&.full p {
		margin: 0;
		max-width: 450px;
	}
}

.title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
	max-width: 70%;
	margin: 0 auto;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: white;
    border-radius: 3px;
}

.content {
    padding: 30px 30px 0 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}

.content-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.results-container .content,
.form-container .content {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.results-container .content-body,
.form-container .content-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow-y: auto;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
	max-width: 75%;
	margin: 0 auto 30px auto;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin: 0 auto 30px auto;
}

.option {
    flex: 1 1 calc(50% - 10px);
	max-width: calc(50% - 10px);
    position: relative;
}

.option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option label {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.91rem;
    font-weight: 500;
    color: #333;
}

.option label:hover {
    border-color: var(--color-primary);
    background: #fceff0;
}

.option input[type="radio"]:checked + label {
    border-color: var(--color-primary);
    background: #fceff0;
	color: var(--color-primary);
}

.option label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
	flex-shrink: 0;
}

.option input[type="radio"]:checked + label::before {
    border-color: var(--color-primary);
    background: linear-gradient(111.02deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: inset 0 0 0 3px white;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,107,157,0.3);
}

.next-button::after {
    content: '→';
    font-size: 1.2rem;
}

.intro {
	padding-top: 20px;
}

.results-summary-simple,
.results-summary {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.results-summary {
    max-width: 800px;
}

.results-summary .score-section {
    margin-bottom: 3rem;
}

.score-display {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.results-summary .score-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.score-level {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.score-total {
    font-size: 1.5rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.progress-container {
    margin: 0 auto;
    max-width: 400px;
}

.progress-container .progress-bar {
    background-color: #e5e7eb;
    border-radius: 9999px;
    height: 0.75rem;
    overflow: hidden;
    position: relative;
}

.progress-container .progress-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 1s ease-out;
    position: relative;
}

.progress-container .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.description-section {
    margin-bottom: 1.5rem;
}

.score-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    max-width: 600px;
    margin: 0 auto;
}

.results-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.results-box {
	padding: 1.25rem;
    border-radius: 12px;
    text-align: left;
}

.results-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #1f2937;
}

.results-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-box li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    color: #374151;
	font-size: 0.8rem;
}

.results-box li:last-child {
    margin-bottom: 0;
}

.green-box {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
}

.green-box li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.red-box {
    background-color: #fde8e8;
    border: 1px solid #f8b4b4;
}

.red-box li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.options-rating-gradient {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 0 auto;
    max-width: 600px;
}

.cta-section {
	margin-bottom: 1rem;
	display: flex;
    flex-direction: column;
    align-items: center;
	gap: 1.5rem;
	
	& div h3 {
		margin: 0 0 1rem 0;
	}
}
.rating-btn-gradient {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-btn-gradient:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rating-btn-gradient.selected {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

.rating-btn-gradient:active {
    transform: scale(0.95);
}

.rating-labels-gradient {
    display: block;
    width: 100%;
    margin: 0 auto 0 auto;
    max-width: 600px;
    font-size: 0.875rem;
    color: #6b7280;
    position: relative;
    height: 1.5rem;
}

.rating-label-left {
    position: absolute;
    left: 0;
    top: 0;
    text-align: left;
    max-width: 45%;
}

.rating-label-right {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    max-width: 45%;
}

.options-rating {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
}

.options-rating::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, #fca5a5, #fbbf24, #34d399);
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.3;
}

.rating-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.rating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(111.02deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    transition: all var(--transition-medium);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.rating-btn:hover {
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.rating-btn:hover::before {
    width: 100%;
    height: 100%;
}

.rating-btn.selected {
    border-color: var(--color-primary);
    background: linear-gradient(111.02deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    transform: scale(1.05);
}

.rating-btn:active {
    transform: scale(0.95);
}

.primary-btn {
    background: linear-gradient(111.02deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    padding: 0.91rem 3.5rem 0.91rem 1.36rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
	margin-bottom: 20px;
	
	&::before {
	    content: '';
	    position: absolute;
	    top: 0;
	    left: -100%;
	    width: 100%;
	    height: 100%;
	    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	    transition: left 0.5s ease;
	}
	
	&:hover::before {
	  left: 100%;
	}
	
	&::after {
	    content: '';
	    position: absolute;
	    right: 1rem;
	    top: 50%;
	    transform: translateY(-50%);
	    width: 1.75rem;
	    height: 1.75rem;
	    background: rgba(255, 255, 255, 0.3);
	    border-radius: 50%;
	    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	    background-size: 1rem 1rem;
	    background-position: center;
	    background-repeat: no-repeat;
	    transition: all var(--transition-medium);
	}
	
	&:hover:not(:disabled) {
	  transform: translateY(-3px);
	  box-shadow: 0 20px 40px -10px rgba(163, 23, 23, 0.45);
	}

	&:hover:not(:disabled)::after {
	  background-color: rgba(255, 255, 255, 0.4);
	  transform: translateY(-50%) translateX(3px);
	}

	&:active {
	  transform: translateY(-1px);
	}

	&:disabled {
	  opacity: 0.5;
	  cursor: not-allowed;
	  transform: none;
	}
	
	&.hollow {
		background: none;
		border: 1px solid #ffffff;
		color: #ffffff;		
	}
}

.results-container,
.form-container {
	text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.insights-section {
    margin-bottom: 3rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.insight-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
    transition: all 0.2s ease;
}

.insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.insight-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.insight-card p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

.recommendations-section {
    margin-bottom: 3rem;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.recommendation-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
    transition: all 0.2s ease;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.recommendation-item p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-50 {
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-indigo-50 {
    --tw-gradient-to: #eef2ff;
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.to-emerald-50 {
    --tw-gradient-to: #ecfdf5;
}

.from-purple-50 {
    --tw-gradient-from: #faf5ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0));
}

.to-pink-50 {
    --tw-gradient-to: #fdf2f8;
}

.from-gray-50 {
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff;
}

.bg-white {
    background-color: #ffffff;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-green-500 {
    background-color: #10b981;
}

.text-blue-600 {
    color: #2563eb;
}

.text-green-600 {
    color: #16a34a;
}

.text-purple-600 {
    color: #9333ea;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-600 {
    color: #4b5563;
}

.text-yellow-600 {
    color: #d97706;
}

.text-orange-600 {
    color: #ea580c;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.border-green-500 {
    border-color: #10b981;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.flex {
    display: flex;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.leading-relaxed {
    line-height: 1.625;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.results-container .bg-white:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.results-container svg {
    transition: transform 0.2s ease;
}

.results-container .bg-white:hover svg {
    transform: scale(1.1);
}

#hubspot-form-container {
	width: 50%;
	margin: 0 auto;
	text-align: center;
}

@media (max-width: 768px) {
	body {
		font-size: 12px;
	}
	
	#splash h1 {
		font-size: 1.2rem;
	}
	
	.title {
        font-size: 1rem;
		margin-bottom: 15px;
		max-width: 100%;
    }
    
    .question {
        font-size: 0.9rem;
		margin-bottom: 20px;
    }
    
	.options {
		flex-wrap: nowrap;
        flex-direction: column;
        max-width: 100%;
        gap: 10px;
		margin: 0 auto 20px auto;
    }

	.options-rating {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;		
		justify-content: center;
		gap: 0.25rem;
		max-width: 320px;
		margin: 0 auto;
	}
	
	.rating-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
	
    .option {
        min-width: auto;
		max-width: 100%;
    }
    
    .option label {
	    font-size: 0.8rem;
		padding: 10px 15px;
	}
    
    .content {
    	padding: 20px 20px 0 20px;
    }
    
    img {
    	max-width: 60px;
    	padding-bottom: 20px;
    }
        
    #hubspot-form-container {
    	width: 100%;
    }

	.progress-info {
	    margin-bottom: 5px;
	    font-size: 0.7rem;
	}
	
	.primary-btn {
	    font-size: 0.7rem;
	    margin-bottom: 10px;
	}
	
	.results-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .results-box {
        padding: 1.5rem;
    }
    
    .score-level {
        font-size: 1.5rem;
    }
    
    .score-display {
        font-size: 0.9	rem;
    }
    
    .score-number {
        font-size: 3rem;
    }
    
    .score-total {
        font-size: 1.25rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-card,
    .recommendation-item {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .results-container .grid {
        grid-template-columns: 1fr;
    }
    
    .results-container .text-3xl {
        font-size: 1.875rem;
    }
    
    .results-container .text-xl {
        font-size: 1.125rem;
    }
}