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

body {
    background: linear-gradient(135deg, #121829 0%, #1a2340 50%, #1E2535 100%);
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.8em;
    font-weight: 900;
    color: #F0F4F8;
    text-shadow: 0 0 20px rgba(76, 195, 180, 0.4);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #4CC3B4;
    font-weight: 600;
}

.selector-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

label {
    display: block;
    color: #4CC3B4;
    font-weight: 700;
    margin-bottom: 10px;
}

select {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border-radius: 10px;
    border: 2px solid rgba(76, 195, 180, 0.3);
    background: rgba(255,255,255,0.1);
    color: #F0F4F8;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #4CC3B4;
    box-shadow: 0 0 15px rgba(76, 195, 180, 0.4);
}

.progress-container {
    margin-bottom: 25px;
    text-align: center;
}

.progress-bar-wrap {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CC3B4, #F97A5A);
    border-radius: 50px;
    transition: width 0.4s ease;
    width: 10%;
}

.progress-label {
    color: #A8B2C1;
    font-size: 0.9em;
}

.question-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(76, 195, 180, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
}

.question-text {
    color: #F0F4F8;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.5;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(76, 195, 180, 0.2);
    border-radius: 10px;
    color: #F0F4F8;
    font-size: 1em;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.option-btn:hover {
    border-color: #4CC3B4;
    background: rgba(76, 195, 180, 0.1);
}

.option-btn.selected {
    border-color: #F97A5A;
    background: rgba(249, 122, 90, 0.15);
    color: #F97A5A;
    font-weight: 700;
}

.next-btn {
    margin-top: 20px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #F97A5A, #e8603a);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 122, 90, 0.4);
}

.start-box {
    text-align: center;
    padding: 20px;
}

.start-desc {
    color: #A8B2C1;
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #F97A5A, #e8603a);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(249, 122, 90, 0.4);
    transition: all 0.3s;
    width: 100%;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 122, 90, 0.6);
}

.secondary-btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1em;
    font-weight: 600;
    color: #A8B2C1;
    background: transparent;
    border: 2px solid rgba(168, 178, 193, 0.3);
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.secondary-btn:hover {
    border-color: #A8B2C1;
    color: #F0F4F8;
}

.result-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(76, 195, 180, 0.3);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 20px;
}

.result-card h2 {
    color: #4CC3B4;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.result-card p {
    color: #A8B2C1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.result-card h3 {
    color: #F0F4F8;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.module-tag {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    background: rgba(76, 195, 180, 0.15);
    border: 1px solid rgba(76, 195, 180, 0.4);
    border-radius: 20px;
    color: #4CC3B4;
    font-size: 0.9em;
    font-weight: 600;
}

.why-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.why-section h3 {
    color: #F97A5A;
    margin-bottom: 12px;
}

.why-item {
    color: #A8B2C1;
    font-size: 0.95em;
    margin-bottom: 8px;
    padding-left: 15px;
    border-left: 3px solid #F97A5A;
    line-height: 1.5;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1E2535;
    border: 2px solid rgba(76, 195, 180, 0.4);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
}

.modal-content h2 {
    color: #F0F4F8;
    margin-bottom: 10px;
}

.modal-content p {
    color: #4CC3B4;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #4CC3B4;
    cursor: pointer;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 2px solid rgba(76, 195, 180, 0.3);
    background: rgba(255,255,255,0.05);
    color: #F0F4F8;
    font-size: 1em;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4CC3B4;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    font-size: 1.1em;
    font-weight: 700;
    background: linear-gradient(135deg, #F97A5A, #e8603a);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.submit-btn:hover {
    box-shadow: 0 5px 20px rgba(249, 122, 90, 0.4);
}

@media (max-width: 600px) {
    h1 { font-size: 2em; }
    .question-text { font-size: 1.1em; }
    .cta-button { font-size: 1em; padding: 15px; }
}
