* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    padding: 40px 20px;
    min-height: 100vh;
}

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

.header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.subtitle {
    font-size: 1.1rem;
    color: #c0c0c0;
}

.philosophy {
    background: linear-gradient(135deg, #0a0a1a 0%, #001a3d 100%);
    border: 1px solid #003d7a;
    border-radius: 12px;
    padding: 40px 32px;
    margin-bottom: 60px;
}

.philosophy h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #ffffff;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

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

.philosophy li {
    color: #e0e0e0;
    line-height: 2;
    font-size: 0.95rem;
    padding: 4px 0;
}

.mode-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mode-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mode-card:hover {
    border-color: #007bff;
    transform: translateY(-4px);
}

.mode-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.mode-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.mode-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.mode-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #808080;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Questionnaire */
.progress-bar {
    width: 100%;
    height: 4px;
    background: #1a1a1a;
    border-radius: 4px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #007bff;
    transition: width 0.3s ease;
}

.question-container {
    max-width: 700px;
    margin: 0 auto;
}

.question-number {
    font-size: 0.9rem;
    color: #808080;
    margin-bottom: 12px;
}

.question-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.question-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 32px;
}

.answer-area {
    margin-bottom: 32px;
}

#answer-input {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-family: inherit;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    color: #ffffff;
    resize: vertical;
    min-height: 120px;
}

#answer-input:focus {
    outline: none;
    border-color: #007bff;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.btn {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: transparent;
    color: #c0c0c0;
    border: 1px solid #404040;
}

.btn-secondary:hover {
    border-color: #c0c0c0;
    color: #ffffff;
}

/* Results */
.results-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.results-container h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #ffffff;
}

.results-content {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.results-content h3 {
    color: #007bff;
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.results-content p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 12px;
}

.results-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-inputs input {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-family: inherit;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    color: #ffffff;
}

.contact-inputs input:focus {
    outline: none;
    border-color: #007bff;
}

.contact-inputs input::placeholder {
    color: #606060;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .mode-selector {
        grid-template-columns: 1fr;
    }
    
    .question-text {
        font-size: 1.5rem;
    }
    
    .nav-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
