/* ============================================
   BELGIQUE SALAIRE - Style Principal
   belgique-salaire.com
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #FAFAF8;
    --color-bg-alt: #F2F0EC;
    --color-surface: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-secondary: #5A5A5A;
    --color-text-light: #8A8A8A;
    --color-primary: #C8A44E;
    --color-primary-dark: #A8863A;
    --color-primary-light: #F5EDD6;
    --color-accent: #2C3E50;
    --color-accent-dark: #1A2530;
    --color-success: #27AE60;
    --color-danger: #E74C3C;
    --color-border: #E5E3DE;
    --color-border-light: #F0EDE8;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.25; color: var(--color-text); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; color: var(--color-text-secondary); }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
main { flex: 1; }

.be-flag-bar {
    height: 4px;
    background: linear-gradient(90deg, #000000 33.33%, #FDDA24 33.33%, #FDDA24 66.66%, #EF3340 66.66%);
}

/* HEADER */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--color-text); }
.logo-icon {
    width: 38px; height: 38px; background: var(--color-accent-dark); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.logo-text span { color: var(--color-primary-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--color-text-secondary); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-primary); transition: var(--transition); }
.nav-links a:hover { color: var(--color-text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--color-accent-dark) !important; color: #fff !important;
    padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 600 !important; font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-primary-dark) !important; color: #fff !important; transform: translateY(-1px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); margin: 5px 0; transition: var(--transition); }

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--color-surface); flex-direction: column; padding: 20px 24px; gap: 16px;
        border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md);
    }
    .nav-links.active { display: flex; }
}

/* HERO */
.hero { padding: 60px 0 50px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; top: -60%; left: -20%; width: 140%; height: 200%;
    background: radial-gradient(ellipse at center top, rgba(200,164,78,0.06) 0%, transparent 60%); pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--color-primary-light); color: var(--color-primary-dark);
    padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 24px; animation: fadeInDown 0.6s ease-out;
}
.hero-badge::before { content: '🇧🇪'; font-size: 1rem; }
.hero h1 { margin-bottom: 16px; animation: fadeInDown 0.6s ease-out 0.1s both; }
.hero h1 .highlight { color: var(--color-primary-dark); position: relative; }
.hero h1 .highlight::after {
    content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px;
    background: var(--color-primary-light); z-index: -1; border-radius: 4px;
}
.hero-subtitle {
    font-size: 1.15rem; color: var(--color-text-secondary); max-width: 560px;
    margin: 0 auto 40px; line-height: 1.8; animation: fadeInDown 0.6s ease-out 0.2s both;
}

/* CALC CARD */
.calc-card {
    background: var(--color-surface); border-radius: var(--radius-lg); padding: 48px 40px;
    box-shadow: var(--shadow-xl); max-width: 580px; margin: 0 auto; position: relative;
    border: 1px solid var(--color-border-light); animation: fadeInUp 0.7s ease-out 0.3s both;
}
.calc-card::before {
    content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark)); border-radius: 0 0 4px 4px;
}
.calc-card h2 { text-align: center; margin-bottom: 8px; font-size: 1.5rem; }
.calc-card .card-subtitle { text-align: center; color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 32px; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--color-text); margin-bottom: 8px; }
.form-group label .label-hint { font-weight: 400; color: var(--color-text-light); font-size: 0.82rem; }

.input-wrapper { position: relative; }
.input-wrapper .currency {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    font-size: 1.1rem; font-weight: 600; color: var(--color-text-light); pointer-events: none;
}
.input-wrapper input[type="number"],
.input-wrapper input[type="text"],
.input-wrapper input[type="email"],
.input-wrapper input[type="tel"],
.input-wrapper select,
.form-input {
    width: 100%; padding: 16px 18px; border: 2px solid var(--color-border); border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 1.05rem; color: var(--color-text);
    background: var(--color-bg); transition: var(--transition); appearance: none; -webkit-appearance: none;
}
.input-wrapper input[type="number"] {
    padding-left: 40px; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.5px; text-align: center;
}
.input-wrapper input:focus, .form-input:focus {
    outline: none; border-color: var(--color-primary); background: var(--color-surface);
    box-shadow: 0 0 0 4px rgba(200,164,78,0.12);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }

.form-select {
    width: 100%; padding: 14px 18px; border: 2px solid var(--color-border); border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 0.95rem; color: var(--color-text);
    background: var(--color-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    cursor: pointer; transition: var(--transition); appearance: none; -webkit-appearance: none;
}
.form-select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(200,164,78,0.12); }

/* BUTTONS */
.btn-primary {
    display: block; width: 100%; padding: 18px 24px;
    background: linear-gradient(135deg, var(--color-accent-dark), #34495E);
    color: #fff; border: none; border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
    letter-spacing: 0.5px; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent); transition: left 0.5s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,62,80,0.3); }
.btn-primary:hover::before { left: 100%; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-block; padding: 14px 28px; background: var(--color-surface);
    color: var(--color-accent-dark); border: 2px solid var(--color-border); border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none; text-align: center;
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary-dark); transform: translateY(-1px); }

.btn-gold {
    display: block; width: 100%; padding: 18px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff; border: none; border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
    letter-spacing: 0.5px; cursor: pointer; transition: var(--transition);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,78,0.35); color: #fff; }

.form-note { text-align: center; font-size: 0.8rem; color: var(--color-text-light); margin-top: 16px; }
.form-note svg { display: inline; vertical-align: middle; margin-right: 4px; }

/* TRUST BAR */
.trust-bar { display: flex; justify-content: center; gap: 40px; padding: 40px 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--color-text-secondary); font-weight: 500; }
.trust-icon {
    width: 36px; height: 36px; background: var(--color-primary-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}

/* SECTIONS */
.section { padding: 70px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--color-text-secondary); }
.section-label {
    display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--color-primary-dark); margin-bottom: 12px;
}

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
    background: var(--color-surface); border-radius: var(--radius-lg); padding: 36px 28px;
    border: 1px solid var(--color-border-light); transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number {
    width: 44px; height: 44px; background: var(--color-accent-dark); color: var(--color-primary);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step-card p { font-size: 0.92rem; line-height: 1.7; color: var(--color-text-secondary); }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 20px; } }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item {
    display: flex; gap: 16px; padding: 24px; background: var(--color-surface);
    border-radius: var(--radius-md); border: 1px solid var(--color-border-light); transition: var(--transition);
}
.benefit-item:hover { box-shadow: var(--shadow-sm); }
.benefit-icon {
    width: 44px; height: 44px; min-width: 44px; background: var(--color-primary-light);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.benefit-item h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; }
.benefit-item p { font-size: 0.88rem; margin: 0; line-height: 1.6; }
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border-light); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    color: var(--color-text); text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--color-primary-dark); }
.faq-icon { font-size: 1.3rem; color: var(--color-primary-dark); transition: var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.92rem; line-height: 1.8; color: var(--color-text-secondary); }

/* CTA */
.cta-section { padding: 70px 0; text-align: center; }
.cta-box {
    background: var(--color-accent-dark); border-radius: var(--radius-xl); padding: 60px 48px;
    color: #fff; max-width: 700px; margin: 0 auto; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; right: -30%; width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(200,164,78,0.08) 0%, transparent 60%); pointer-events: none;
}
.cta-box h2 { color: #fff; margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 480px; margin: 0 auto 32px; }
.cta-box .btn-gold { max-width: 320px; margin: 0 auto; }

/* RESULTS */
.results-hero { padding: 50px 0 30px; text-align: center; }
.results-card {
    background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-xl); max-width: 620px; margin: 0 auto 40px; border: 1px solid var(--color-border-light);
}
.results-header {
    background: linear-gradient(135deg, var(--color-accent-dark), #34495E);
    color: #fff; padding: 32px; text-align: center;
}
.results-header h2 { color: #fff; font-size: 1.3rem; margin-bottom: 4px; }
.results-header p { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.88rem; }
.results-body { padding: 36px 32px; }
.result-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 1px solid var(--color-border-light);
}
.result-row:last-child { border: none; }
.result-label { font-size: 0.92rem; color: var(--color-text-secondary); }
.result-value { font-weight: 700; font-size: 1.05rem; color: var(--color-text); }
.result-row.highlight {
    background: var(--color-primary-light); margin: 16px -32px 0; padding: 20px 32px;
    border: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.result-row.highlight .result-label { font-weight: 700; color: var(--color-text); font-size: 1rem; }
.result-row.highlight .result-value { font-size: 1.5rem; color: var(--color-primary-dark); font-family: var(--font-display); }

/* LEAD FORM */
.lead-section { padding: 50px 0 70px; }
.lead-card {
    background: var(--color-surface); border-radius: var(--radius-lg); padding: 48px 40px;
    box-shadow: var(--shadow-lg); max-width: 560px; margin: 0 auto;
    border: 1px solid var(--color-border-light); position: relative;
}
.lead-card::before {
    content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 3px;
    background: linear-gradient(90deg, var(--color-success), #2ECC71); border-radius: 0 0 4px 4px;
}
.lead-card h2 { text-align: center; margin-bottom: 8px; font-size: 1.4rem; }
.lead-card .card-subtitle { text-align: center; color: var(--color-text-secondary); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
    .calc-card { padding: 36px 24px; }
    .lead-card { padding: 36px 24px; }
}
.privacy-note {
    display: flex; align-items: flex-start; gap: 10px; background: var(--color-bg);
    border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 20px;
}
.privacy-note .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.privacy-note p { font-size: 0.8rem; color: var(--color-text-light); margin: 0; line-height: 1.5; }

/* PROCESSING PAGE */
.processing-page {
    display: flex; align-items: center; justify-content: center;
    min-height: 60vh; text-align: center; padding: 60px 24px;
}
.processing-content h2 { margin-bottom: 12px; }
.processing-content p { font-size: 1rem; }
.loader {
    width: 48px; height: 48px; border: 4px solid var(--color-border);
    border-top: 4px solid var(--color-primary-dark); border-radius: 50%;
    animation: spin 1s linear infinite; margin: 0 auto 28px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.progress-bar-container {
    width: 280px; height: 6px; background: var(--color-border);
    border-radius: 3px; margin: 24px auto 0; overflow: hidden;
}
.progress-bar-fill {
    height: 100%; width: 0%; background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 3px; animation: progressFill 2.5s ease-in-out forwards;
}
@keyframes progressFill { 0% { width: 0%; } 30% { width: 40%; } 60% { width: 70%; } 80% { width: 85%; } 100% { width: 100%; } }

/* LEGAL PAGES */
.legal-page { padding: 50px 0 70px; }
.legal-page h1 { margin-bottom: 12px; }
.legal-page .page-subtitle { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.2rem; margin-top: 36px; margin-bottom: 12px; padding-top: 24px; border-top: 1px solid var(--color-border-light); }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p { font-size: 0.93rem; line-height: 1.8; }
.legal-content ul { margin: 8px 0 16px 24px; list-style-type: disc; }
.legal-content ul li { font-size: 0.93rem; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 4px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--color-accent-dark); border-radius: var(--radius-lg); padding: 40px 32px; color: #fff; }
.contact-info-card h2 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-detail .icon {
    width: 40px; height: 40px; min-width: 40px; background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-detail .label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 2px; }
.contact-detail .value { font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.contact-form-card {
    background: var(--color-surface); border-radius: var(--radius-lg); padding: 40px 32px;
    box-shadow: var(--shadow-md); border: 1px solid var(--color-border-light);
}
.contact-form-card h2 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-form-card textarea {
    width: 100%; padding: 14px 18px; border: 2px solid var(--color-border); border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 0.95rem; color: var(--color-text);
    background: var(--color-bg); transition: var(--transition); resize: vertical; min-height: 120px;
}
.contact-form-card textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(200,164,78,0.12); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.site-footer { background: var(--color-accent-dark); color: rgba(255,255,255,0.7); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.footer-brand .logo-text span { color: var(--color-primary); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--color-primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--color-primary); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* SEO CONTENT */
.seo-content { padding: 60px 0; }
.seo-content h2 { margin-bottom: 16px; }
.seo-content h3 { font-size: 1.15rem; margin-top: 28px; margin-bottom: 10px; }
.seo-content p { font-size: 0.95rem; line-height: 1.85; }
.seo-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
@media (max-width: 768px) { .seo-two-col { grid-template-columns: 1fr; gap: 32px; } }

/* STATS */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.stat-item { text-align: center; padding: 28px 20px; background: var(--color-surface); border-radius: var(--radius-md); border: 1px solid var(--color-border-light); }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-primary-dark); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.82rem; color: var(--color-text-light); font-weight: 500; }
@media (max-width: 600px) { .stats-bar { grid-template-columns: 1fr; } }

/* ANIMATIONS */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ALERTS */
.alert { padding: 16px 20px; border-radius: var(--radius-md); margin-bottom: 20px; font-size: 0.92rem; }
.alert-success { background: #E8F8EE; color: #1B7A3D; border: 1px solid #C3EDCF; }
.alert-error { background: #FDECEB; color: #C0392B; border: 1px solid #F5C6C0; }
.alert-info { background: var(--color-primary-light); color: var(--color-primary-dark); border: 1px solid #E8D9A8; }

/* UTILITIES */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
