/* Marketing page styles */

/* Hero gradient */
.hero-gradient {
    background: linear-gradient(135deg, #1B244B 0%, #3146A3 50%, #4766E5 100%);
}

/* Performance bar charts */
.perf-bar {
    height: 2.25rem;
    border-radius: 0.375rem;
    transition: width 0.8s ease-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
}
.perf-bar-primary { background: linear-gradient(90deg, #4766E5, #8299F7); }
.perf-bar-secondary { background: linear-gradient(90deg, #9ca3af, #d1d5db); }

/* Comparison table */
.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}
.comparison-table .highlight-col {
    background-color: #EFF1FE;
    font-weight: 600;
}

/* Transcript sample */
.transcript-container {
    max-height: 500px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}
.transcript-container.expanded {
    max-height: none;
}
.transcript-container:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(transparent, white);
    pointer-events: none;
}
.transcript-line {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
    line-height: 1.5;
}
.transcript-timestamp {
    color: #9ca3af;
    font-family: monospace;
    white-space: nowrap;
    min-width: 3rem;
}
.transcript-speaker {
    color: #4766E5;
    font-weight: 600;
    white-space: nowrap;
}

/* FAQ accordion using details/summary */
.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 600;
    color: #4766E5;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after {
    content: '−';
}

/* Step number circle */
.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4766E5, #8299F7);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}
