/* ============================================
   SEO Framework - Styles globaux
   ============================================ */

:root {
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --radius: 18px;
    --radius-sm: 12px;
    --transition: 0.25s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Background dots pattern */
body {
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 14px 14px;
}

/* ============ SCROLL REVEAL ============ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============ CARDS ============ */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

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

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.9;
    box-shadow: var(--shadow);
}

/* ============ SECTION SPACING ============ */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #f5f5f5;
}

/* ============ FAQ ============ */
.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

/* ============ TESTIMONIAL ============ */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    opacity: 0.1;
    font-family: Georgia, serif;
}

/* ============ PRICING CARD ============ */
.pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary, #1a8a34);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    font-size: 0.8rem;
    color: #64748b;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: #0f172a;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
    .section {
        padding: 2.5rem 0;
    }

    .card {
        padding: 1.25rem;
    }
}
