/* Hero Redesign Styles */
.hero-badge {
    display: flex;
    align-items: center;
    background-color: #E9E3F8;
    color: #6A36AD;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
    min-width: 100%;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #6A36AD;
    border-radius: 50%;
    margin-right: 1rem;
}

.transcriptie-card {
    background: #F8FAFC;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    max-width: 540px;
    margin-left: auto;
}

.transcriptie-card .header-sub {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    color: #64748B;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.transcriptie-card .red-dot {
    width: 12px;
    height: 12px;
    background-color: #EF4444;
    border-radius: 50%;
    margin-right: 1.25rem;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 120px;
    margin-bottom: 2.5rem;
}

.waveform .bar {
    background: #6A36AD;
    width: 12px;
    border-radius: 99px;
    min-height: 12px;
    transform-origin: center;
    animation: waveform-pulse 2.5s infinite ease-in-out;
}

@keyframes waveform-pulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.15); }
}

.waveform .bar:nth-child(2n) { animation-delay: 0.2s; animation-duration: 2.2s; }
.waveform .bar:nth-child(3n) { animation-delay: 0.4s; animation-duration: 2.8s; }
.waveform .bar:nth-child(4n) { animation-delay: 0.1s; animation-duration: 2.4s; }
.waveform .bar:nth-child(5n) { animation-delay: 0.5s; animation-duration: 3s; }

.color-heading {
    outline: none !important;
}

.transcriptie-quote {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.transcriptie-quote p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: #475569;
    font-style: italic;
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.red-dot {
    animation: pulse 2s infinite ease-in-out;
}
