/* ROADMAP */
.roadmap-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.roadmap-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem auto;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

.step-connector {
    flex: 0.5;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    top: -30px;
    z-index: 1;
}

@media (max-width: 768px) {
    .roadmap-container {
        flex-direction: column;
    }

    .step-connector {
        display: none;
    }
}

/* PREMIUM TESTIMONIAL CARDS (New Shape) */
.testimonial-card {
    background: rgba(13, 22, 37, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 4rem 2rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 50px;
    /* Space for the overlapping avatar */
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(188, 19, 254, 0.3);
    box-shadow: 0 20px 45px rgba(188, 19, 254, 0.1);
}

.testimonial-avatar {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #020617;
    /* Matches section bg to create spacing effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card p {
    font-style: italic;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 80px;
}

.testimonial-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    position: relative;
}

.testimonial-name {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #64748b;
}

.testimonial-plus {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin-top: 60px;
        padding-top: 4rem;
    }
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.2s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #94a3b8;
    line-height: 1.6;
}

/* TYPEWRITER ANIMATION (Optional) */
.typewriter {
    border-right: 2px solid var(--neon-blue);
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}