/* =============================================
   AUDIO QUALITY CHECKER - HERO WIDGET STYLES
   Maximale UX, Sicherheit & Responsive Design
   ============================================= */

/* =============================================
   AUDIO CHECKER WIDGET - Main Container
   ============================================= */

.audio-checker-widget {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 1px rgba(255, 255, 255, 0.3) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    max-width: 520px;
    width: 100%;
}

.audio-checker-widget::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.3),
        transparent 30%,
        transparent 70%,
        rgba(212, 175, 55, 0.2)
    );
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audio-checker-widget:hover::before {
    opacity: 1;
}

/* =============================================
   PHASE SYSTEM - Show/Hide Screens
   ============================================= */

.checker-phase {
    display: none;
    animation: fadeInScale 0.4s ease-out;
}

.checker-phase.active {
    display: block;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =============================================
   PHASE 1: UPLOAD SCREEN
   ============================================= */

.checker-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checker-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.checker-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.checker-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Upload Dropzone */
.upload-dropzone {
    background: white;
    border: 3px dashed var(--border);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.upload-dropzone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upload-dropzone:hover {
    border-color: var(--accent);
    background: #fffef9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.upload-dropzone:hover::before {
    opacity: 1;
}

.upload-dropzone.dragging {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.upload-content {
    position: relative;
    z-index: 1;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.upload-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.upload-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
}

.file-formats {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Privacy Badge */
.privacy-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #065f46;
    font-weight: 500;
}

.privacy-icon {
    font-size: 1rem;
}

.privacy-text {
    line-height: 1.3;
}

/* =============================================
   PHASE 2: ANALYZING SCREEN
   ============================================= */

.analyzing-stage {
    background: linear-gradient(135deg, #37474f 0%, #455a64 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.analyzing-stage::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.2) rotate(180deg); 
        opacity: 0.6; 
    }
}

.analyzing-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.analyzing-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Animated Waveform */
.analyzing-waveform {
    width: 100%;
    height: 100px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.wave-bar {
    width: 8px;
    background: linear-gradient(180deg, #d4af37 0%, #f9d77e 100%);
    border-radius: 4px;
    animation: wave-pulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.4s; }
.wave-bar:nth-child(8) { animation-delay: 0.3s; }
.wave-bar:nth-child(9) { animation-delay: 0.2s; }
.wave-bar:nth-child(10) { animation-delay: 0.1s; }

@keyframes wave-pulse {
    0%, 100% { 
        height: 20px; 
        opacity: 0.5; 
    }
    50% { 
        height: 80px; 
        opacity: 1; 
    }
}

/* Progress Bar */
.progress-container {
    max-width: 400px;
    margin: 2rem auto 1rem;
    position: relative;
    z-index: 1;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) inset;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f9d77e 100%);
    border-radius: 20px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.progress-text {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Status Pills */
.status-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.status-pill.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.status-pill.complete {
    background: rgba(16, 185, 129, 0.3);
    border-color: #10b981;
    color: white;
}

.pill-icon {
    font-size: 0.9rem;
}

.pill-text {
    white-space: nowrap;
}

/* =============================================
   PHASE 3: RESULTS SCREEN
   ============================================= */

/* Score Card */
.score-card {
    background: linear-gradient(135deg, #37474f 0%, #455a64 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.score-main {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.score-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.score-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.score-category {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
}

.score-category:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.score-cat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.score-cat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.score-cat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.btn-complete {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: default;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
}

/* Issues Card */
.issues-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.issue-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.issue-icon {
    font-size: 1.3rem;
}

.issue-text {
    font-weight: 600;
    color: #92400e;
    font-size: 1rem;
}

.issue-details {
    margin: 0;
    font-size: 0.85rem;
    color: #92400e;
}

/* Waveform Card */
.waveform-card {
    background: #000;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.waveform-title {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.waveform-canvas {
    width: 100%;
    height: 80px;
    border-radius: 8px;
}

/* Audio Details Card */
.audio-details-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.details-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Email Capture Card */
.email-capture-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.capture-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capture-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.capture-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Email Form */
.email-form {
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* Segmentation Radio Buttons */
.segmentation-radios {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.radio-option:hover {
    border-color: var(--accent);
    background: #fffef9;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--accent);
    font-weight: 600;
}

.radio-label {
    color: var(--text-medium);
    transition: all 0.3s ease;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Report Includes */
.report-includes {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.includes-title {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.check-icon {
    color: #10b981;
    font-size: 0.8rem;
}

/* Reset Button */
.btn-reset {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

/* =============================================
   SUCCESS PHASE
   ============================================= */

.success-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #10b981;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 1.75rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* =============================================
   NEW SECTIONS - Dialog-Based Styles
   ============================================= */

/* Social Proof Section */
.social-proof-section {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.proof-tagline {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* How It Works Section */
.how-works-section {
    padding: 5rem 0;
    background: white;
}

.section-heading {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-featured {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-content {
    color: var(--text-dark);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-left: 0.5rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.security-note {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #065f46;
    margin-top: 1rem;
}

/* Privacy Vault Section */
.privacy-vault-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
}

.vault-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.vault-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.vault-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 1rem;
}

.vault-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.vault-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.vault-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vault-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.vault-check {
    color: #10b981;
    font-size: 1.2rem;
}

.vault-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Use Cases Section */
.use-cases-section {
    padding: 5rem 0;
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.case-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.case-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.case-quote {
    font-style: italic;
    color: var(--text-light);
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.08) translateY(-4px);
}

.pricing-locked {
    opacity: 0.7;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.coming-badge {
    display: inline-block;
    background: var(--text-light);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-body {
    text-align: center;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.pricing-period {
    font-size: 1.5rem;
    color: var(--text-light);
}

.pricing-note {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-medium);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1023px) {
    .audio-checker-widget {
        padding: 2rem;
    }
    
    .steps-grid,
    .cases-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .audio-checker-widget {
        padding: 1.75rem;
        border-radius: 16px;
    }
    
    .upload-dropzone {
        padding: 2rem 1.5rem;
    }
    
    .analyzing-stage {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }
    
    .score-main {
        font-size: 3rem;
    }
    
    .score-categories {
        gap: 0.75rem;
    }
    
    .score-category {
        padding: 0.875rem 0.5rem;
    }
    
    .segmentation-radios {
        flex-direction: column;
    }
    
    .social-proof-section,
    .how-works-section,
    .privacy-vault-section,
    .use-cases-section,
    .pricing-section {
        padding: 3rem 0;
    }
    
    .vault-card {
        padding: 2rem;
    }
}

@media (max-width: 599px) {
    .checker-title {
        font-size: 1.25rem;
    }
    
    .checker-subtitle {
        font-size: 0.9rem;
    }
    
    .upload-text {
        font-size: 1.1rem;
    }
    
    .analyzing-title {
        font-size: 1.25rem;
    }
    
    .score-main {
        font-size: 2.5rem;
    }
    
    .score-categories {
        grid-template-columns: 1fr;
    }
    
    .email-capture-card {
        padding: 1.5rem;
    }
}

/* =============================================
   ACCESSIBILITY & UX ENHANCEMENTS
   ============================================= */

/* Focus States */
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .audio-checker-widget {
        border: 3px solid var(--text-dark);
    }
    
    .upload-dropzone {
        border-width: 4px;
    }
}

/* =============================================
   FINAL CTA SECTION - Buttons & Auth Card
   ============================================= */

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.vh-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.vh-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Status Message Styles (for login/register) */
.status-message {
    margin-top: 1rem;
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.status-message.show {
    display: flex;
}

.status-message.loading {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.status-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.status-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Auth Promo Banner */
.auth-promo-banner {
    display: none;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #92400e;
}

.auth-promo-banner.active {
    display: block;
}

.promo-code-highlight {
    font-weight: 700;
    color: #78350f;
    font-family: 'Courier New', monospace;
}
