/* OneVizion Brand Colors */
:root {
    --onevizion-blue: #0c22c6;
    --onevizion-green: #3bd491;
    --onevizion-pink: #ff4da9;
    --onevizion-dark: #282829;
    --onevizion-purple: #ce42d7;
    --onevizion-light-blue: #61cdf6;
    --onevizion-gray: #5e5658;
    --onevizion-light-gray: #f1f2f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--onevizion-dark);
    background-color: var(--onevizion-light-gray);
    font-size: 18px;
    line-height: 28px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 4px 20px rgba(12, 34, 198, 0.1);
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--onevizion-light-gray);
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 300px;
}

header h1 {
    color: var(--onevizion-dark);
    margin-bottom: 15px;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
}

.eyebrow {
    color: var(--onevizion-gray);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Bar */
#progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--onevizion-light-gray);
    border-radius: 0;
    margin-bottom: 40px;
    overflow: hidden;
}

#progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--onevizion-green) 0%, var(--onevizion-blue) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

/* Question Container */
#question-container {
    margin-bottom: 40px;
}

.question {
    margin-bottom: 30px;
}

.question h3 {
    color: var(--onevizion-dark);
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.question-number {
    color: var(--onevizion-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Options */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    padding: 20px 24px;
    border: 2px solid var(--onevizion-light-gray);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    position: relative;
}

.option:hover {
    border-color: var(--onevizion-blue);
    background-color: var(--onevizion-light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 34, 198, 0.15);
}

.option.selected {
    border-color: var(--onevizion-blue);
    background: linear-gradient(135deg, var(--onevizion-blue) 0%, var(--onevizion-green) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 34, 198, 0.25);
}

/* Did You Know Section */
.did-you-know {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--onevizion-light-gray) 0%, #ffffff 100%);
    border-left: 4px solid var(--onevizion-green);
    border-radius: 0;
    position: relative;
    animation: slideInUp 0.6s ease-out;
}

.did-you-know::before {
    content: "💡";
    position: absolute;
    top: -15px;
    left: 30px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fact-container h4 {
    color: var(--onevizion-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fact-text {
    color: var(--onevizion-dark);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.fact-source {
    color: var(--onevizion-gray);
    font-size: 14px;
    font-style: italic;
    margin: 0;
    opacity: 0.8;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

/* Button Styles */
button {
    padding: 16px 24px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: none;
    min-height: 56px;
}

#prev-btn {
    background-color: var(--onevizion-gray);
    color: white;
    flex-direction: row-reverse;
}

#prev-btn:hover {
    background-color: var(--onevizion-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 86, 88, 0.3);
}

#next-btn {
    background: linear-gradient(135deg, var(--onevizion-green) 0%, var(--onevizion-blue) 100%);
    color: white;
}

#next-btn:hover {
    background: linear-gradient(135deg, var(--onevizion-light-blue) 0%, var(--onevizion-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 212, 145, 0.3);
}

#next-btn:disabled {
    background-color: var(--onevizion-light-gray);
    color: var(--onevizion-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#restart-btn {
    background: linear-gradient(135deg, var(--onevizion-pink) 0%, var(--onevizion-purple) 100%);
    color: white;
    margin: 30px auto 0;
    justify-content: center;
}

#restart-btn:hover {
    background: linear-gradient(135deg, var(--onevizion-purple) 0%, var(--onevizion-pink) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 169, 0.3);
}

/* Arrow Icon */
.arrow-icon {
    transition: transform 0.3s ease;
}

button:hover .arrow-icon {
    transform: scale(1.1);
}

/* Results Container */
#results-container {
    text-align: center;
}

#results-container h2 {
    color: var(--onevizion-dark);
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
}

#answers-summary {
    text-align: left;
    margin-bottom: 40px;
}

.results-message {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 34, 198, 0.1);
}

.message-content {
    padding: 40px;
    background: linear-gradient(135deg, var(--onevizion-light-gray) 0%, white 100%);
}

.message-content h3 {
    color: var(--onevizion-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.message-content h4 {
    color: var(--onevizion-dark);
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.message-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--onevizion-dark);
}

.benefits-section, .roi-section {
    margin: 30px 0;
}

.benefits-section ul, .roi-section ul {
    list-style: none;
    padding: 0;
}

.benefits-section li, .roi-section li {
    padding: 12px 0;
    border-bottom: 1px solid var(--onevizion-light-gray);
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.benefits-section li:before, .roi-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--onevizion-green);
    font-weight: bold;
    font-size: 18px;
}

.benefits-section li:last-child, .roi-section li:last-child {
    border-bottom: none;
}

.contact-section {
    background: linear-gradient(135deg, var(--onevizion-blue) 0%, var(--onevizion-green) 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.contact-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.answer-item {
    padding: 24px;
    margin-bottom: 20px;
    background-color: var(--onevizion-light-gray);
    border-left: 4px solid var(--onevizion-blue);
    border-radius: 0;
}

.answer-item h4 {
    color: var(--onevizion-blue);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.answer-item p {
    color: var(--onevizion-dark);
    font-weight: 400;
    margin-bottom: 8px;
}

.answer-item .answer-text {
    color: var(--onevizion-gray);
    font-weight: 600;
    background-color: white;
    padding: 8px 12px;
    border-radius: 0;
    display: inline-block;
    margin-top: 8px;
}

/* Focus States for Accessibility */
button:focus,
.option:focus {
    outline: 3px solid var(--onevizion-pink);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    header h1 {
        font-size: 40px;
    }
    
    .eyebrow {
        font-size: 18px;
    }
    
    .question h3 {
        font-size: 22px;
    }
    
    .option {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    button {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    #prev-btn, #next-btn {
        width: 100%;
        justify-content: center;
    }
    
    .message-content {
        padding: 25px 20px;
    }
    
    .message-content h3 {
        font-size: 24px;
    }
    
    .message-content h4 {
        font-size: 20px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-section h3 {
        font-size: 20px;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .did-you-know {
        margin-top: 30px;
        padding: 20px;
    }
    
    .fact-container h4 {
        font-size: 20px;
    }
    
    .fact-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 32px;
    }
    
    .logo {
        height: 40px;
    }
    
    .question h3 {
        font-size: 20px;
    }
    
    .option {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .did-you-know {
        padding: 15px;
    }
    
    .fact-container h4 {
        font-size: 18px;
    }
    
    .fact-text {
        font-size: 14px;
    }
} 