/* Badges */
.badges {
    display: flex;
    gap: var(--gap-little);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.9rem;
}
.badge__item {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--gray);
}
.badge__item--accent {
    background: #fff8ee;
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

/* Badges plus gros */
.big-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-little);
    flex-wrap: wrap;
    margin: 1.2rem 0;
}
.big-badges__item {
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid;
}
.big-badges__item--primary {
    background: #fff8ee;
    border-color: var(--primary);
    color: var(--primary);
}
.big-badges__item--success {
    background: #f0f9f4;
    border-color: #4caf7d;
    color: #2e7d32;
}

/* FAQ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: 0.2s;
}
.faq-item:hover {
    border-color: var(--primary);
}
.faq-item summary {
    font-weight: bold;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    margin-top: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
}
.primary-btn {
    background: var(--primary);
    color: #fff;
}
.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.secondary-btn {
    background: #eee;
    color: var(--dark);
}
.secondary-btn:hover {
    background: #ddd;
}

.big-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.win-btn {
    background: #0078d6;
    color: white;
}
.win-btn:hover {
    background: #005a9e;
}
.lin-btn {
    background: #333;
    color: white;
}
.lin-btn:hover {
    background: #000;
}