h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}
h1 .highlight { color: #f97316; }
.lead {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    border-left: 4px solid #f97316;
    padding-left: 20px;
    line-height: 1.7;
}
.type-selector {
    display: flex;
    gap: 16px;
    margin: 24px 0 30px;
    flex-wrap: wrap;
}
.type-btn {
    flex: 1;
    min-width: 140px;
    background: #151515;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 500;
}
.type-btn:hover {
    border-color: #4a4a4a;
}
.type-btn.active {
    border-color: #f97316;
    background: #1f1f1f;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.06);
}
.type-btn .icon { font-size: 1.5rem; display: block; margin-bottom: 4px; }

.brief-form {
    display: none;
    flex-direction: column;
    gap: 16px;
}
.brief-form.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    color: #c0c0c0;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 10px 14px;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
}
.form-group textarea {
    min-height: 70px;
    resize: vertical;
}
.form-group .hint {
    color: #666;
    font-size: 0.75rem;
    margin-top: 2px;
}

.required {
    color: #f97316;
    margin-left: 2px;
}

.submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.btn-submit {
    background: #f97316;
    color: #0c0c0c;
    font-weight: 600;
    padding: 12px 40px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover {
    background: #e85d0e;
}
.submit-note {
    color: #888;
    font-size: 0.8rem;
}

.nav-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.nav-links a {
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-size: 0.9rem;
}
.nav-links a:hover {
    border-bottom-color: #f97316;
    color: #e0e0e0;
}

@media (max-width: 700px) {
    .container { padding: 30px 16px; }
    h1 { font-size: 1.8rem; }
    .type-selector { flex-direction: column; }
    .type-btn { min-width: unset; }
}