/* CVSuisse Main CSS - Version Complète */
/* Fichier principal : /css/cvsuisse-main.css */

/* ===== VARIABLES CSS ===== */
:root {
    /* Palette couleurs suisses */
    --primary: #DC143C;
    --primary-dark: #B71C1C;
    --primary-light: #E53935;
    --secondary: #F44336;
    --accent: #FFEBEE;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #2196F3;
    
    /* Couleurs neutres raffinées */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Gradients suisses */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #DC143C 0%, #B71C1C 50%, #F44336 100%);
    
    /* Typographie */
    --font-primary: "Aileron", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Playfair Display", serif;
    
    /* Espacements */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Rayons */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Ombres modernes */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(220, 20, 60, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: white;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* ===== LAYOUT GÉNÉRAL ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.metier-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-4xl);
    margin-top: var(--space-2xl);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1020;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    position: relative;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-sm) 0;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-sm);
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-info {
    background: var(--info);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-info:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-hero {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
}

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

.btn-hero-secondary {
    background: rgba(244, 67, 54, 0.9);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(244, 67, 54, 1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(244, 67, 54, 0.4);
}

.btn-widget {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-md);
}

/* ===== HERO SECTION ===== */
.hero-metier {
    background: var(--gradient-hero);
    color: white;
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-metier::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'><circle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.1)'/><circle cx='80' cy='80' r='1' fill='rgba(255,255,255,0.1)'/></pattern></defs><rect width='100' height='100' fill='url(%23grain)'/></svg>");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-accent {
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== INTRO MÉTIER ===== */
.metier-description {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    text-align: justify;
}

.alternatives-box {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border-left: 4px solid var(--primary);
}

.alternatives-box h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
}

.alternatives-box p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== CALCULATEUR DE SALAIRE ===== */
.salary-calculator-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border: 2px solid var(--primary);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.salary-calculator-box h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.salary-calculator-box p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== CTA SECTIONS ===== */
.cta-section-inline {
    padding: 0 0 var(--space-2xl);
}

.cta-card {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.cta-price {
    margin-bottom: var(--space-lg);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
}

.price-detail {
    font-size: 1rem;
    opacity: 0.8;
}

.cta-section-final {
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CV ADVICE ===== */
.cv-format-suisse {
    background: var(--gray-50);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
}

.cv-format-suisse h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    font-size: 1.3rem;
    font-weight: 700;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.format-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.format-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.format-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.format-content h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: 1rem;
}

.format-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.highlight-content h4 {
    color: white;
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
    font-weight: 700;
}

.highlight-content p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.benefit-item {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
}

/* ===== DÉVELOPPEMENT CARRIÈRE ===== */
.career-advice {
    background: white;
    padding: var(--space-3xl) 0;
}

.career-development {
    background: var(--gray-50);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
}

.career-development h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.development-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.development-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.development-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.development-content h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: 1rem;
}

.development-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.salary-negotiation-tips {
    background: var(--accent);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.salary-negotiation-tips h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    font-weight: 700;
}

.salary-negotiation-tips p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== CV EXAMPLES ===== */
.cv-examples-metier {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.cv-example {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    max-width: 320px;
    margin: 0 auto;
}

.cv-example:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.cv-preview {
    position: relative;
    aspect-ratio: 210 / 297;
    overflow: hidden;
    background: #f8f9fa;
}

.cv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cv-example:hover .cv-image {
    transform: scale(1.05);
}

.cv-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: var(--space-lg);
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.cv-example:hover .cv-overlay {
    transform: translateY(0);
}

.cv-category {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.cv-type {
    display: inline-block;
    background: var(--primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cv-info {
    padding: var(--space-lg);
}

.cv-description {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9rem;
}

.examples-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.cta-examples-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}

.cta-examples-card h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
    font-weight: 700;
}

.cta-examples-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.6;
}

.expert-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--success);
    font-weight: 500;
    font-size: 0.9rem;
}

.guarantee-item i {
    color: var(--success);
    font-size: 1rem;
}

/* ===== FAQ ===== */
.faq-metier {
    background: white;
    padding: var(--space-3xl) 0;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.faq-item {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.faq-item h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

.service-cta-faq {
    background: linear-gradient(135deg, var(--success), #20c997);
    color: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.service-cta-faq h4 {
    color: white;
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.service-cta-faq p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

/* ===== LETTRE MOTIVATION ===== */
.lettre-motivation {
    background: white;
    padding: var(--space-3xl) 0;
}

.structure-steps {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.step-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.step-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-content h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lettre-cta {
    background: var(--accent);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.lettre-cta h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    font-weight: 700;
}

.lettre-cta p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: sticky;
    top: var(--space-2xl);
    height: fit-content;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.widget {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.widget-header {
    background: var(--primary);
    color: white;
    padding: var(--space-lg);
}

.widget-header h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.calculator-widget .widget-header {
    background: var(--info);
}

.jobs-widget .widget-header {
    background: var(--success);
}

.widget-content {
    padding: var(--space-lg);
}

.service-summary {
    text-align: center;
}

.price-display {
    margin-bottom: var(--space-lg);
}

.price-display .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.price-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

.service-includes {
    margin-bottom: var(--space-lg);
    text-align: left;
}

.include-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
    font-size: 0.9rem;
}

.include-item i {
    color: var(--success);
    width: 16px;
    flex-shrink: 0;
}

.expert-info {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.expert-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-details h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
    font-weight: 600;
}

.expert-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.expert-credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--gray-600);
}

.credential-item i {
    color: var(--primary);
    width: 12px;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-2xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3 {
    color: white;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .metier-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .sidebar {
        position: static;
        margin-top: var(--space-2xl);
    }
    
    .sidebar-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-xl);
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .format-grid,
    .development-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-guarantee,
    .service-benefits {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        gap: var(--space-md);
    }
    
    .faq-item {
        padding: var(--space-lg);
    }
    
    .cv-example {
        max-width: 100%;
    }
    
    .sidebar-content {
        grid-template-columns: 1fr;
    }
    
    .development-item,
    .step-item,
    .format-item {
        flex-direction: column;
        text-align: center;
    }
    
    .development-icon,
    .step-number,
    .format-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-metier {
        padding: calc(60px + var(--space-lg)) 0 var(--space-lg);
    }
    
    .widget-header,
    .widget-content {
        padding: var(--space-md);
    }
    
    .cv-format-suisse,
    .service-highlight,
    .career-development,
    .salary-negotiation-tips,
    .lettre-cta {
        padding: var(--space-lg);
    }
    
    .salary-calculator-box {
        padding: var(--space-lg);
    }
    
    .salary-calculator-box .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.9rem;
    }
    
    .salary-calculator-box h4 {
        font-size: 1.1rem;
    }
    
    .development-content h4 {
        font-size: 0.95rem;
    }
    
    .development-content p {
        font-size: 0.85rem;
    }
}