.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}
.roadmap-container h1 {
    font-family: 'Raleway Black', sans-serif;
    color: #991b1b;
    font-size: 42px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.roadmap-container .subtitle {
    color: #8a92a6;
    font-size: 18px;
    margin-bottom: 40px;
    border-left: 3px solid #991b1b;
    padding-left: 20px;
}
.priority-section {
    margin-bottom: 50px;
}
.priority-section h2 {
    font-family: 'Raleway Black', sans-serif;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.priority-section h2 .badge {
    background: #991b1b;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.roadmap-card {
    background: #0d0f13;
    border: 1px solid #1f242e;
    padding: 25px 20px;
    border-radius: 6px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.roadmap-card:hover {
    transform: translateY(-4px);
    border-color: #991b1b;
}
.roadmap-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.roadmap-card .card-header .icon {
    font-size: 28px;
    line-height: 1;
}
.roadmap-card .card-header .priority-tag {
    font-size: 11px;
    text-transform: uppercase;
    background: #1f242e;
    padding: 3px 12px;
    border-radius: 12px;
    color: #8a92a6;
    letter-spacing: 0.5px;
    border: 1px solid #2a303a;
}
.roadmap-card h3 {
    font-family: 'Raleway Black', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.roadmap-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #8a92a6;
    margin-bottom: 15px;
}
.roadmap-card .meta {
    font-size: 12px;
    color: #4b5563;
    border-top: 1px solid #1a1e26;
    padding-top: 12px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.roadmap-card .meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.security-block {
    background: #0d0f13;
    border: 1px solid #1f242e;
    border-left: 4px solid #991b1b;
    padding: 25px 30px;
    margin-top: 20px;
    border-radius: 6px;
}
.security-block h3 {
    font-family: 'Raleway Black', sans-serif;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}
.security-block ul {
    list-style: none;
    padding: 0;
    color: #8a92a6;
    font-size: 15px;
    line-height: 1.7;
}
.security-block ul li::before {
    content: "▸ ";
    color: #991b1b;
    font-weight: bold;
}
.timeline {
    margin-top: 40px;
    border-top: 1px solid #1f242e;
    padding-top: 30px;
}
.timeline h2 {
    font-family: 'Raleway Black', sans-serif;
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
}
.timeline-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.timeline-step {
    flex: 1 1 200px;
    background: #0d0f13;
    border: 1px solid #1f242e;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}
.timeline-step .step-number {
    font-family: 'Raleway Black', sans-serif;
    font-size: 28px;
    color: #991b1b;
    margin-bottom: 5px;
}
.timeline-step .step-label {
    font-size: 14px;
    color: #8a92a6;
    font-weight: bold;
}
.timeline-step .step-desc {
    font-size: 13px;
    color: #4b5563;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    .timeline-steps {
        flex-direction: column;
    }
    .timeline-step {
        flex: 1 1 auto;
    }
    .roadmap-container h1 {
        font-size: 30px;
    }
    .priority-section h2 {
        font-size: 22px;
    }
}