/* Voice Recorder Landing Page Styles */

/* CTA Button Styles */
.voice-cta-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.voice-cta-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(220, 53, 69, 0.4);
}

.voice-cta-btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Feature Cards */
.voice-feature-card {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

.voice-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.voice-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    position: relative;
    overflow: hidden;
}

.voice-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    border-radius: 50%;
}

.voice-feature-icon.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), #8183ff);
}

.voice-feature-icon.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.voice-feature-icon.bg-info {
    background: linear-gradient(135deg, #17a2b8, #20c997);
}

.voice-feature-icon.bg-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.voice-feature-icon.bg-danger {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.voice-feature-icon.bg-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.voice-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Step Cards */
.voice-step-card {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.voice-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), #8183ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.voice-step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    border: 3px solid #e5e7ff;
}

.voice-step-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.voice-step-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}

/* Section Titles */
.voice-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.voice-section-title i {
    color: var(--primary-color);
}

/* Use Cases */
.voice-use-cases {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.voice-use-case {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.voice-use-case:hover {
    transform: translateX(8px);
    background: #f0f2ff;
}

.voice-use-case i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.voice-use-case div {
    flex: 1;
}

.voice-use-case h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.voice-use-case p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

/* Benefit Cards */
.voice-benefit-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.voice-benefit-card:hover {
    background: #f0f2ff;
    transform: translateY(-5px);
}

.voice-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.voice-benefit-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.voice-benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}

/* Tips Cards */
.voice-tip-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 2px solid var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.voice-tip-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90, 92, 230, 0.1);
}

.voice-tip-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #8183ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.voice-tip-content {
    flex: 1;
}

.voice-tip-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.voice-tip-content p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.voice-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.voice-faq-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.voice-faq-item:hover {
    background: #f0f2ff;
    transform: translateY(-2px);
}

.voice-faq-item h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.voice-faq-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

/* Final CTA Section */
.voice-final-cta {
    background: linear-gradient(135deg, #f8f9ff, #e5e7ff);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.voice-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(90, 92, 230, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.voice-cta-content {
    position: relative;
    z-index: 2;
}

.voice-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.voice-cta-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.voice-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.voice-cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.voice-cta-features i {
    color: #28a745;
    font-size: 0.8rem;
}

/* Microphone Animation */
@keyframes microphone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.voice-cta-btn i {
    animation: microphone-pulse 2s ease-in-out infinite;
}

/* Enhanced Feature Card Hover Effects */
.voice-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 92, 230, 0.05), rgba(90, 92, 230, 0.02));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voice-feature-card:hover::before {
    opacity: 1;
}

.voice-feature-card:hover .voice-feature-icon {
    transform: scale(1.1);
}

/* Step Cards Connection Lines */
.voice-step-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: 1;
}

.voice-step-card:last-child::after {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .voice-cta-content h3 {
        font-size: 1.75rem;
    }
    
    .voice-cta-features {
        gap: 1rem;
    }
    
    .voice-step-card::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .voice-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .voice-cta-btn.large {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .voice-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .voice-final-cta {
        padding: 2rem 1rem;
    }
    
    .voice-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .voice-cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .voice-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .voice-tip-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .voice-use-case {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .voice-use-case i {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .voice-step-card {
        padding: 1rem;
    }
    
    .voice-step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .voice-step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        top: -12px;
    }
    
    .voice-feature-card h4 {
        font-size: 1.1rem;
    }
    
    .voice-section-title {
        font-size: 1.2rem;
    }
}

/* Accessibility Improvements */
.voice-cta-btn:focus,
.voice-tip-card:focus,
.voice-faq-item:focus {
    outline: 3px solid rgba(90, 92, 230, 0.5);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .voice-final-cta,
    .voice-cta-btn {
        display: none;
    }
    
    .voice-feature-card,
    .voice-tip-card,
    .voice-faq-item {
        break-inside: avoid;
    }
}

/* Dark Mode Support (if implemented) */
@media (prefers-color-scheme: dark) {
    .voice-benefit-card,
    .voice-faq-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .voice-tip-card {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .voice-final-cta {
        background: linear-gradient(135deg, rgba(90, 92, 230, 0.1), rgba(90, 92, 230, 0.05));
    }
}   