.bpm-progress-track {
    width: 100%;
    height: 12px;
    background: rgba(0,0,0,0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 10px;
}

@keyframes shimmer-custom {
    0% { background-position: 100% 0; }
    100% { background-position: -200% 0; }
}

@keyframes shimmer-hero {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-shimmer {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(90deg, #000 0%, #ce2c2c 25%, #000 50%, #ce2c2c 75%, #000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-hero 8s linear infinite;
    line-height: 1.1;
}

.bpm-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ce2c2c 25%, #ff7676 50%, #ce2c2c 75%);
    background-size: 200% 100%;
    animation: shimmer-custom 1.5s infinite linear;
    transition: width 0.3s ease-out;
}

@keyframes spin-custom { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.bpm-spinner {
    font-size: 3rem;
    color: #ce2c2c;
    animation: spin-custom 1s linear infinite;
    display: inline-block;
}

input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.condensed { font-family: 'Roboto Condensed', sans-serif; }

.faq-section { margin-top: 4rem; }
.seo-text-section { margin-top: 5rem; line-height: 1.8; }
.seo-text-section h2 { margin-top: 3rem; margin-bottom: 1rem; font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; font-weight: 900; font-size: 2rem; }
.seo-text-section p { margin-bottom: 1.5rem; color: rgba(0,0,0,0.7); font-size: 1.1rem; }

.faq-item, .rte details {
    background: rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.faq-question, .rte summary {
    padding: 1.5rem !important;
    font-weight: bold !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    width: 100%;
    list-style: none;
    background: transparent;
    border: none;
}

.faq-question:hover, .rte summary:hover { background: rgba(0, 0, 0, 0.05); }
.rte summary::-webkit-details-marker { display: none; }

.faq-answer, .rte details > div {
    padding: 0 1.5rem 1.5rem 1.5rem !important;
    background: transparent !important;
}

.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.3s; }
