.timeline-item.visible .timeline-content {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0) scale(1);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px -10px rgba(58, 122, 254, 0.3);
}

/* Remove old connector */
.timeline-content::before {
    display: none;
}

/* Header with Icon */
.timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.timeline-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(58, 122, 254, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--text-heading);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Timeline Mobile Styles Moved to Bottom of File */

/* Devices Section */
.devices-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.devices-section .slider-track img {
    height: 180px;
    width: auto;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-heading);
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0 60px 0; /* Reduced bottom padding */
    background-color: var(--bg-primary);
}

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 auto;
    width: 350px;
    border-radius: 12px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    margin-bottom: 8px;
}

.testimonial-info h4 {
    color: var(--text-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.testimonial-rating {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.slider-nav {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-nav:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* CTA Section */
.cta-section {
    padding: 40px 0 100px 0; /* Reduced top padding */
    background-color: var(--bg-primary);
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, #1F232A 0%, #121417 100%);
    padding: 100px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Decorative Glow */
.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(58, 122, 254, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.cta-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233A7AFE' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.5;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #fff, #3A7AFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    line-height: 1.1;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
