/* ============================================
   COMPOSANTS - Boutons, Cards, etc.
   ============================================ */

/* === BOUTONS === */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--neutral-200);
    color: var(--neutral-700);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--neutral-300);
    transform: translateY(-2px);
}

.cta-button {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 18px 36px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button:hover::before {
    left: 100%;
}

/* === CARDS === */
.card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--neutral-100);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card:hover::before {
    transform: scaleX(1);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-family: var(--font-headings);
    /* Desktop: 2.25rem (36px) - Typographie responsive optimisée */
    font-size: clamp(1.375rem, 3.5vw + 0.5rem, 2.25rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.section-line {
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-line.accent {
    background: var(--gradient-secondary);
}

/* === LOGO === */
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-family: var(--font-headings);
    font-weight: 700;
}

.logo-line-1 {
    font-size: 18px;
    line-height: 1;
}

.logo-line-2 {
    font-size: 16px;
    line-height: 1;
    color: var(--neutral-600);
}

.text-primary { color: var(--primary-color); }
.text-accent { color: var(--secondary-color); }
.text-white { color: var(--white); }

/* === PAGINATION DOTS === */
.pagination-dots, .testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot, .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-300);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .pagination-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* === MESSAGES === */
.success-message {
    background: var(--success-color);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.warning-message {
    background: var(--warning-color);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.error-message {
    background: var(--error-color);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
}