/* ============================================
   123CV.LIVE - BLOG CV SUISSE
   Design professionnel - Mobile First
   Optimisé pour conversion vers cvsuisse.com
   ============================================ */

/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fed7aa;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --accent: #10b981;
    --dark: #0f172a;
    --gray-dark: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

a {
    text-decoration: none;
    color: inherit;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark), var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dot {
    color: var(--primary);
}

.tagline {
    font-size: 0.7rem;
    color: var(--gray);
    display: block;
    margin-top: 2px;
}

/* Menu Desktop */
nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

.cta-nav a {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-nav a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Menu Mobile Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='rgba(255,255,255,0.02)' d='M100 0L200 200H0L100 0z'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249,115,22,0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-right: -10px;
}

.trust-count {
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    margin-left: 10px;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

/* Expert Card */
.expert-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    color: var(--dark);
    position: relative;
    box-shadow: var(--shadow-xl);
}

.expert-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 15px;
}

.expert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.expert-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.expert-experience {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.exp-item {
    background: var(--gray-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.expert-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.expert-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* ========== SECTION GENERIQUE ========== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: #fff3e6;
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== METHOD SECTION ========== */
.method-section {
    background: var(--gray-bg);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.method-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.method-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--border);
    margin-bottom: 10px;
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.method-card p {
    color: var(--gray);
    font-size: 0.85rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ========== EXPERT BIO SECTION ========== */
.bio-card {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    background: linear-gradient(135deg, var(--gray-bg), var(--white));
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.bio-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    margin-bottom: 20px;
}

.bio-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.bio-list {
    list-style: none;
    margin: 15px 0;
}

.bio-list li {
    padding: 8px 0;
}

.bio-guarantee {
    background: #ecfdf5;
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 15px;
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-text span {
    font-size: 0.8rem;
    color: #059669;
}

.bio-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bio-quote {
    background: var(--secondary-light);
    border-radius: var(--radius-xl);
    padding: 30px;
    color: var(--white);
    position: relative;
}

.quote-mark {
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    display: flex;
    flex-direction: column;
}

.quote-rating {
    color: #fbbf24;
    margin-top: 10px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--gray-bg);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: var(--shadow-md);
}

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

.step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--gray-light);
}

.steps-cta {
    text-align: center;
}

/* ========== ARTICLES SECTION ========== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.article-image {
    height: 180px;
    background: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

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

.article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
}

.article-body {
    padding: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.7rem;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.article-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-body h3 a {
    color: var(--dark);
    transition: color 0.3s ease;
}

.article-body h3 a:hover {
    color: var(--primary);
}

.article-body p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.articles-footer {
    text-align: center;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    background: var(--gray-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.7rem;
    color: var(--gray);
}

.testimonials-footer {
    text-align: center;
}

.trust-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* ========== COMPARISON SECTION ========== */
.comparison-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
}

.comparison-table td.no {
    color: #ef4444;
}

.comparison-table td.yes {
    color: var(--accent);
    font-weight: 600;
}

.comparison-cta {
    text-align: center;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
    background: var(--secondary);
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-2xl);
    padding: 50px;
    text-align: center;
}

.cta-small {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.cta-card h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-card p {
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.8rem;
}

/* ========== PREFOOTER ========== */
.prefooter {
    background: var(--secondary-light);
    color: var(--white);
    padding: 60px 0;
}

.prefooter-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.prefooter-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.prefooter-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: var(--gray-light);
    padding-top: 60px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ========== ARTICLE PAGE ========== */
.page-header {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.single-article {
    padding: 60px 0;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-cta-banner {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.article-footer {
    text-align: center;
    margin-top: 40px;
}

.back-link {
    color: var(--gray);
    text-decoration: none;
}

/* ========== FAQ PAGE ========== */
.faq-section {
    padding: 60px 0;
}

.faq-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    padding: 60px 0;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.info-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid var(--border);
}

.small {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 10px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    /* Bio Card */
    .bio-card {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    /* Steps */
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    /* Prefooter */
    .prefooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Articles grid */
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA banner */
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.4rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-grid,
.method-card,
.article-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out forwards;
}
/* ============================================
   BLOG.PHP - DESIGN REFONDU
   ============================================ */

/* Breadcrumbs SEO */
.breadcrumbs {
    background: #f8fafc;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.8rem;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs ul li:not(:last-child):after {
    content: "›";
    margin-left: 8px;
    color: #94a3b8;
}

.breadcrumbs a {
    color: #f97316;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 0;
}

.blog-header-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.blog-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f97316;
    margin-bottom: 15px;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-header h1 .highlight {
    color: #f97316;
}

.blog-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
}

/* Blog Search */
.blog-search {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-search input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.blog-search input::placeholder {
    color: rgba(255,255,255,0.6);
}

.blog-search input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

.blog-search button {
    padding: 14px 24px;
    background: #f97316;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-search button:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* Blog Header Stats */
.blog-header-stats {
    display: flex;
    gap: 30px;
}

.stat-box {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px 25px;
    border-radius: 20px;
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    display: block;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Blog Layout */
.blog-main {
    padding: 60px 0;
    background: #f8fafc;
}

.blog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f97316;
    display: inline-block;
}

/* Expert Card Sidebar */
.expert-card-side {
    text-align: center;
}

.expert-avatar-side {
    font-size: 3rem;
    margin-bottom: 10px;
}

.expert-card-side h3 {
    border-bottom: none;
    margin-bottom: 5px;
}

.expert-title-side {
    color: #f97316;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.sidebar-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    transform: scale(1.05);
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #334155;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.category-list li a:hover,
.category-list li a.active {
    color: #f97316;
    padding-left: 10px;
}

.category-list .count {
    color: #94a3b8;
    font-size: 0.7rem;
}

.clear-filter {
    display: inline-block;
    margin-top: 15px;
    color: #ef4444;
    text-decoration: none;
    font-size: 0.8rem;
}

/* Popular List */
.popular-list {
    list-style: none;
}

.popular-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.popular-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-list a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.popular-title {
    color: #0f172a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.popular-title:hover {
    color: #f97316;
}

.popular-date {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* Newsletter Card */
.newsletter-card p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.newsletter-card input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
}

.newsletter-card button {
    width: 100%;
    padding: 12px;
    background: #f97316;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-card .small {
    font-size: 0.65rem;
    margin-top: 10px;
    color: #94a3b8;
}

/* CTA Sidebar */
.cta-sidebar {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    text-align: center;
}

.cta-sidebar .cta-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 15px;
}

.cta-sidebar h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.temp •••
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.cta-price {
    margin: 15px 0;
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.cta-sidebar-btn {
    display: inline-block;
    background: white;
    color: #f97316;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.cta-sidebar-btn:hover {
    transform: scale(1.05);
}

.guarantee {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Articles Masonry Grid */
.articles-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.badge-category {
    background: #f97316;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-date {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
}

.article-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-article-card:hover .article-image-wrapper img {
    transform: scale(1.05);
}

.article-image-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-read-time {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
}

.article-content-wrapper {
    padding: 20px;
}

.article-content-wrapper h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content-wrapper h2 a {
    text-decoration: none;
    color: #0f172a;
    transition: color 0.3s ease;
}

.article-content-wrapper h2 a:hover {
    color: #f97316;
}

.article-excerpt {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.article-footer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
}

.author-avatar-small {
    font-size: 1.2rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: gap 0.3s ease;
}

.read-more-btn:hover {
    gap: 10px;
}

/* Search Info */
.search-info {
    background: #e8f4f8;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.clear-search {
    color: #ef4444;
    text-decoration: none;
    font-size: 0.8rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.no-results h3 {
    margin-bottom: 15px;
}

/* Bottom CTA */
.blog-bottom-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.bottom-cta-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 32px;
    padding: 50px;
    text-align: center;
    border: 1px solid #334155;
}

.bottom-cta-content h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bottom-cta-content p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px;
}

.bottom-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.bottom-cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a {
    padding: 10px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #f97316;
    color: white;
    border-color: #f97316;
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}

.pagination .dots {
    padding: 10px 5px;
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .blog-header p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-search {
        justify-content: center;
    }
    
    .blog-header-stats {
        justify-content: center;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: 2;
    }
    
    .blog-articles {
        order: 1;
    }
    
    .articles-masonry {
        grid-template-columns: 1fr;
    }
    
    .bottom-cta-card {
        padding: 30px 20px;
    }
    
    .bottom-cta-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-box .stat-number {
        font-size: 1.5rem;
    }
}
/* ========== UTILITIES ========== */
.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }