/**
 * Web Generation - CSS Responsive Ultra pour Pages Métiers
 * Version 4.6 - Tous Breakpoints 2026
 * 
 * Breakpoints :
 * - 320px  : Mobile XS (iPhone SE, petits Android)
 * - 375px  : Mobile S (iPhone 12 mini)
 * - 414px  : Mobile M (iPhone 12/13/14)
 * - 480px  : Mobile L (Galaxy S21+)
 * - 576px  : Mobile XL / Phablet
 * - 768px  : Tablette Portrait
 * - 992px  : Tablette Paysage / Laptop petit
 * - 1200px : Desktop
 * - 1400px : Desktop Large
 * - 1600px : Desktop XL (2K)
 * - 1920px : Desktop XXL (Full HD+)
 */

/* ========== VARIABLES MÉTIER ========== */
:root {
    --metier-hero-height: 85vh;
    --metier-section-padding: 100px;
    --metier-card-radius: 20px;
    --metier-grid-gap: 30px;
    --metier-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== METIER HERO SECTION ========== */
.wg-metier-hero {
    position: relative;
    min-height: var(--metier-hero-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--wg-gradient-dark);
}

.wg-metier-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wg-metier-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: blur(2px);
}

.wg-metier-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.6) 50%, rgba(10,10,15,0.9) 100%);
    z-index: 1;
}

.wg-metier-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 140px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wg-metier-hero-text {
    animation: fadeInUp 0.8s ease forwards;
}

.wg-metier-hero-visual {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.wg-metier-hero-visual img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--metier-card-radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.wg-metier-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 24px;
}

.wg-metier-badge i {
    font-size: 16px;
}

.wg-metier-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.wg-metier-hero-title .wg-gradient-text {
    background: var(--wg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wg-metier-hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 540px;
}

.wg-metier-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.wg-metier-hero-stats {
    display: flex;
    gap: 40px;
}

.wg-metier-stat {
    text-align: center;
}

.wg-metier-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--wg-coral);
}

.wg-metier-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== PAIN POINTS SECTION ========== */
.wg-metier-pain {
    padding: var(--metier-section-padding) 0;
    background: var(--wg-gray-100);
}

.wg-metier-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--metier-grid-gap);
    margin-top: 50px;
}

.wg-metier-pain-card {
    background: #fff;
    border-radius: var(--metier-card-radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--metier-transition);
    border: 1px solid rgba(0,0,0,0.06);
}

.wg-metier-pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.wg-metier-pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--wg-gradient);
}

.wg-metier-pain-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,59,59,0.1);
    border-radius: 16px;
    font-size: 24px;
    color: var(--wg-red);
    margin-bottom: 20px;
}

.wg-metier-pain-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--wg-black);
}

.wg-metier-pain-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--wg-gray-600);
}

/* ========== FEATURES SECTION ========== */
.wg-metier-features {
    padding: var(--metier-section-padding) 0;
}

.wg-metier-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.wg-metier-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--metier-transition);
}

.wg-metier-feature-item:hover {
    border-color: var(--wg-coral);
    box-shadow: 0 10px 30px rgba(255,59,59,0.08);
}

.wg-metier-feature-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,59,59,0.1);
    border-radius: 10px;
    color: var(--wg-red);
    font-size: 14px;
}

.wg-metier-feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--wg-gray-800);
    line-height: 1.5;
}

/* ========== PRICING SECTION ========== */
.wg-metier-pricing {
    padding: var(--metier-section-padding) 0;
    background: var(--wg-gradient-dark);
    color: #fff;
}

.wg-metier-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.wg-metier-price-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--metier-card-radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--metier-transition);
    backdrop-filter: blur(10px);
}

.wg-metier-price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
}

.wg-metier-price-card.popular {
    background: rgba(255,59,59,0.1);
    border-color: var(--wg-coral);
    transform: scale(1.05);
}

.wg-metier-price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.wg-metier-price-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wg-gradient);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.wg-metier-price-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.wg-metier-price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.wg-metier-price-amount .currency {
    font-size: 20px;
    font-weight: 400;
    vertical-align: super;
}

.wg-metier-price-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.wg-metier-price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wg-metier-price-features li i {
    color: var(--wg-coral);
    font-size: 12px;
    min-width: 16px;
}

/* ========== FAQ SECTION ========== */
.wg-metier-faq {
    padding: var(--metier-section-padding) 0;
}

.wg-metier-faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.wg-metier-faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--metier-transition);
}

.wg-metier-faq-item.active {
    border-color: var(--wg-coral);
    box-shadow: 0 10px 30px rgba(255,59,59,0.06);
}

.wg-metier-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--wg-black);
    background: #fff;
    transition: var(--metier-transition);
}

.wg-metier-faq-question:hover {
    color: var(--wg-red);
}

.wg-metier-faq-question i {
    transition: transform 0.3s ease;
    color: var(--wg-gray-400);
}

.wg-metier-faq-item.active .wg-metier-faq-question i {
    transform: rotate(180deg);
    color: var(--wg-coral);
}

.wg-metier-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.wg-metier-faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--wg-gray-600);
}

.wg-metier-faq-item.active .wg-metier-faq-answer {
    max-height: 500px;
}

/* ========== TESTIMONIAL SECTION ========== */
.wg-metier-testimonial {
    padding: var(--metier-section-padding) 0;
    background: var(--wg-gray-100);
}

.wg-metier-testimonial-card {
    max-width: 700px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: var(--metier-card-radius);
    padding: 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    position: relative;
}

.wg-metier-testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 120px;
    color: rgba(255,59,59,0.1);
    position: absolute;
    top: -20px;
    left: 30px;
    line-height: 1;
}

.wg-metier-testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--wg-gray-800);
    font-style: italic;
    margin-bottom: 24px;
}

.wg-metier-testimonial-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 16px;
}

.wg-metier-testimonial-name {
    font-weight: 700;
    color: var(--wg-black);
    margin-bottom: 4px;
}

.wg-metier-testimonial-role {
    font-size: 14px;
    color: var(--wg-gray-600);
}

/* ========== CTA FINAL SECTION ========== */
.wg-metier-cta-final {
    padding: var(--metier-section-padding) 0;
    background: var(--wg-gradient-dark);
    text-align: center;
    color: #fff;
}

.wg-metier-cta-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
}

.wg-metier-cta-final p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.wg-metier-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== MAILLAGE INTERNE - MÉTIERS SIMILAIRES ========== */
.wg-metier-related {
    padding: 80px 0;
    background: #fff;
}

.wg-metier-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.wg-metier-related-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--wg-gray-100);
    border-radius: 16px;
    transition: var(--metier-transition);
    border: 1px solid transparent;
}

.wg-metier-related-card:hover {
    background: #fff;
    border-color: var(--wg-coral);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.wg-metier-related-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    color: #fff;
}

.wg-metier-related-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--wg-black);
    margin-bottom: 4px;
}

.wg-metier-related-info span {
    font-size: 13px;
    color: var(--wg-gray-600);
}

/* ========== BREADCRUMBS ========== */
.wg-breadcrumbs {
    padding: 12px 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.wg-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
}

.wg-breadcrumbs-list a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.wg-breadcrumbs-list a:hover {
    color: var(--wg-coral);
}

.wg-breadcrumbs-separator {
    color: rgba(255,255,255,0.3);
}

.wg-breadcrumbs-current {
    color: var(--wg-coral);
    font-weight: 500;
}

/* ========== HUB MÉTIERS GRID ========== */
.wg-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--metier-grid-gap);
}

.wg-hub-card {
    background: #fff;
    border-radius: var(--metier-card-radius);
    overflow: hidden;
    transition: var(--metier-transition);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.wg-hub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.wg-hub-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.wg-hub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wg-hub-card:hover .wg-hub-card-image img {
    transform: scale(1.1);
}

.wg-hub-card-body {
    padding: 28px;
}

.wg-hub-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    color: #fff;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.wg-hub-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wg-black);
    margin: 16px 0 8px;
}

.wg-hub-card-desc {
    font-size: 14px;
    color: var(--wg-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.wg-hub-card-price {
    font-size: 13px;
    color: var(--wg-coral);
    font-weight: 600;
}

.wg-hub-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wg-red);
    margin-top: 12px;
    transition: var(--metier-transition);
}

.wg-hub-card-link:hover {
    gap: 12px;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ---- Desktop XL (1920px+) ---- */
@media (min-width: 1920px) {
    .wg-metier-hero-content {
        max-width: 1500px;
    }
    .wg-metier-hero-title {
        font-size: 64px;
    }
    .wg-metier-pricing-grid {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---- Desktop Large (1400px - 1599px) ---- */
@media (min-width: 1400px) and (max-width: 1599px) {
    .wg-metier-hero-content {
        max-width: 1300px;
    }
}

/* ---- Desktop (1200px - 1399px) ---- */
@media (min-width: 1200px) and (max-width: 1399px) {
    .wg-metier-hero-content {
        max-width: 1140px;
        gap: 40px;
    }
}

/* ---- Tablette Paysage / Petit Laptop (992px - 1199px) ---- */
@media (max-width: 1199px) {
    :root {
        --metier-section-padding: 80px;
    }
    
    .wg-metier-hero-content {
        gap: 40px;
        padding: 120px 24px 60px;
    }
    
    .wg-metier-hero-title {
        font-size: clamp(28px, 4vw, 44px);
    }
    
    .wg-metier-hero-desc {
        font-size: 16px;
    }
    
    .wg-metier-hero-stats {
        gap: 30px;
    }
    
    .wg-metier-stat-value {
        font-size: 28px;
    }
    
    .wg-metier-pricing-grid {
        gap: 20px;
    }
    
    .wg-metier-price-amount {
        font-size: 40px;
    }
}

/* ---- Tablette Portrait (768px - 991px) ---- */
@media (max-width: 991px) {
    :root {
        --metier-section-padding: 70px;
        --metier-grid-gap: 24px;
    }
    
    .wg-metier-hero {
        min-height: auto;
    }
    
    .wg-metier-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 24px 60px;
        gap: 30px;
    }
    
    .wg-metier-hero-text {
        order: 1;
    }
    
    .wg-metier-hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .wg-metier-hero-visual img {
        max-width: 400px;
    }
    
    .wg-metier-hero-desc {
        max-width: 100%;
        margin: 0 auto 32px;
    }
    
    .wg-metier-hero-cta {
        justify-content: center;
    }
    
    .wg-metier-hero-stats {
        justify-content: center;
    }
    
    .wg-metier-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .wg-metier-price-card.popular {
        transform: none;
        order: -1;
    }
    
    .wg-metier-price-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .wg-metier-pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wg-metier-features-grid {
        grid-template-columns: 1fr;
    }
    
    .wg-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wg-metier-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wg-metier-testimonial-card {
        padding: 36px;
    }
}

/* ---- Mobile XL / Phablet (576px - 767px) ---- */
@media (max-width: 767px) {
    :root {
        --metier-section-padding: 60px;
        --metier-grid-gap: 20px;
        --metier-card-radius: 16px;
    }
    
    .wg-metier-hero-content {
        padding: 100px 20px 50px;
    }
    
    .wg-metier-hero-title {
        font-size: clamp(26px, 7vw, 36px);
        letter-spacing: -0.5px;
    }
    
    .wg-metier-hero-desc {
        font-size: 15px;
    }
    
    .wg-metier-hero-visual img {
        max-width: 320px;
    }
    
    .wg-metier-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .wg-metier-stat-value {
        font-size: 24px;
    }
    
    .wg-metier-pain-grid {
        grid-template-columns: 1fr;
    }
    
    .wg-metier-pain-card {
        padding: 24px;
    }
    
    .wg-metier-feature-item {
        padding: 20px;
    }
    
    .wg-metier-price-card {
        padding: 32px 24px;
    }
    
    .wg-metier-price-amount {
        font-size: 36px;
    }
    
    .wg-metier-faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .wg-metier-faq-answer-inner {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .wg-metier-testimonial-card {
        padding: 28px;
    }
    
    .wg-metier-testimonial-text {
        font-size: 16px;
    }
    
    .wg-hub-grid {
        grid-template-columns: 1fr;
    }
    
    .wg-hub-card-image {
        height: 180px;
    }
    
    .wg-metier-related-grid {
        grid-template-columns: 1fr;
    }
    
    .wg-metier-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wg-metier-cta-buttons .wg-btn {
        width: 100%;
        max-width: 320px;
    }
    
    .wg-breadcrumbs-list {
        font-size: 12px;
    }
}

/* ---- Mobile L (480px - 575px) ---- */
@media (max-width: 575px) {
    .wg-metier-hero-content {
        padding: 90px 16px 40px;
    }
    
    .wg-metier-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .wg-metier-hero-title {
        font-size: clamp(24px, 7vw, 32px);
    }
    
    .wg-metier-hero-desc {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .wg-metier-hero-cta {
        flex-direction: column;
    }
    
    .wg-metier-hero-cta .wg-btn {
        width: 100%;
        justify-content: center;
    }
    
    .wg-metier-hero-stats {
        justify-content: space-around;
        width: 100%;
    }
    
    .wg-metier-stat-value {
        font-size: 22px;
    }
    
    .wg-metier-stat-label {
        font-size: 10px;
    }
    
    .wg-metier-hero-visual img {
        max-width: 280px;
    }
    
    .wg-section-header {
        margin-bottom: 40px;
    }
    
    .wg-title-lg {
        font-size: clamp(22px, 6vw, 30px);
    }
    
    .wg-metier-pain-card {
        padding: 20px;
    }
    
    .wg-metier-pain-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .wg-metier-pain-card h3 {
        font-size: 16px;
    }
    
    .wg-metier-pain-card p {
        font-size: 14px;
    }
    
    .wg-metier-feature-item {
        padding: 16px;
        gap: 12px;
    }
    
    .wg-metier-feature-check {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }
    
    .wg-metier-feature-item span {
        font-size: 14px;
    }
    
    .wg-metier-price-card {
        padding: 28px 20px;
    }
    
    .wg-metier-price-amount {
        font-size: 32px;
    }
    
    .wg-metier-price-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .wg-metier-testimonial-card::before {
        font-size: 80px;
        top: -10px;
        left: 20px;
    }
    
    .wg-hub-card-body {
        padding: 20px;
    }
    
    .wg-hub-card-title {
        font-size: 16px;
    }
}

/* ---- Mobile M (414px - 479px) ---- */
@media (max-width: 479px) {
    .wg-container {
        padding: 0 16px;
    }
    
    .wg-metier-hero-content {
        padding: 85px 16px 36px;
    }
    
    .wg-metier-hero-title {
        font-size: 26px;
    }
    
    .wg-metier-hero-visual img {
        max-width: 240px;
    }
    
    .wg-metier-price-card {
        padding: 24px 16px;
    }
    
    .wg-metier-price-amount {
        font-size: 28px;
    }
    
    .wg-metier-price-amount .currency {
        font-size: 16px;
    }
    
    .wg-metier-faq-question {
        padding: 16px;
        font-size: 14px;
    }
    
    .wg-metier-testimonial-card {
        padding: 24px 20px;
    }
    
    .wg-metier-testimonial-text {
        font-size: 15px;
    }
}

/* ---- Mobile S (375px - 413px) ---- */
@media (max-width: 413px) {
    .wg-metier-hero-title {
        font-size: 24px;
    }
    
    .wg-metier-hero-desc {
        font-size: 13px;
    }
    
    .wg-metier-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    .wg-metier-hero-visual img {
        max-width: 220px;
    }
    
    .wg-btn {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .wg-btn-lg {
        padding: 16px 28px;
        font-size: 14px;
    }
    
    .wg-metier-pain-card {
        padding: 18px;
    }
    
    .wg-metier-price-amount {
        font-size: 26px;
    }
}

/* ---- Mobile XS (320px - 374px) ---- */
@media (max-width: 374px) {
    .wg-container {
        padding: 0 12px;
    }
    
    .wg-metier-hero-content {
        padding: 80px 12px 32px;
    }
    
    .wg-metier-hero-title {
        font-size: 22px;
    }
    
    .wg-metier-hero-desc {
        font-size: 12px;
    }
    
    .wg-metier-hero-visual img {
        max-width: 200px;
    }
    
    .wg-metier-hero-stats {
        gap: 16px;
    }
    
    .wg-metier-stat-value {
        font-size: 20px;
    }
    
    .wg-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .wg-metier-pain-card {
        padding: 16px;
    }
    
    .wg-metier-pain-card h3 {
        font-size: 15px;
    }
    
    .wg-metier-pain-card p {
        font-size: 13px;
    }
    
    .wg-metier-price-card {
        padding: 20px 14px;
    }
    
    .wg-metier-price-amount {
        font-size: 24px;
    }
    
    .wg-metier-price-features li {
        font-size: 12px;
    }
    
    .wg-metier-faq-question {
        padding: 14px;
        font-size: 13px;
    }
    
    .wg-metier-faq-answer-inner {
        padding: 0 14px 14px;
        font-size: 13px;
    }
    
    .wg-metier-testimonial-card {
        padding: 20px 16px;
    }
    
    .wg-metier-testimonial-text {
        font-size: 14px;
    }
    
    .wg-hub-card-body {
        padding: 16px;
    }
    
    .wg-hub-card-title {
        font-size: 15px;
    }
    
    .wg-hub-card-desc {
        font-size: 13px;
    }
}

/* ========== RTL SUPPORT ========== */
[dir="rtl"] .wg-metier-hero-content {
    direction: rtl;
}

[dir="rtl"] .wg-metier-feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .wg-metier-pain-card {
    text-align: right;
}

[dir="rtl"] .wg-metier-price-features li {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .wg-metier-faq-question {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .wg-metier-faq-answer-inner {
    text-align: right;
}

[dir="rtl"] .wg-breadcrumbs-list {
    flex-direction: row-reverse;
}

[dir="rtl"] .wg-metier-related-card {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .wg-hub-card-link {
    flex-direction: row-reverse;
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Scroll animations */
.wg-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wg-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.wg-animate-delay-1 { transition-delay: 0.1s; }
.wg-animate-delay-2 { transition-delay: 0.2s; }
.wg-animate-delay-3 { transition-delay: 0.3s; }
.wg-animate-delay-4 { transition-delay: 0.4s; }
.wg-animate-delay-5 { transition-delay: 0.5s; }

/* ========== PRINT STYLES ========== */
@media print {
    .wg-metier-hero {
        min-height: auto;
        background: #fff !important;
        color: #000 !important;
    }
    
    .wg-metier-hero-overlay,
    .wg-metier-hero-bg,
    .wg-metier-hero-visual {
        display: none !important;
    }
    
    .wg-metier-hero-content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .wg-metier-hero-title,
    .wg-metier-hero-title .wg-gradient-text {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
    
    .wg-metier-pricing,
    .wg-metier-cta-final {
        background: #fff !important;
        color: #000 !important;
    }
    
    .wg-btn {
        border: 1px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    .wg-animate,
    .wg-metier-hero-text,
    .wg-metier-hero-visual,
    .wg-metier-pain-card,
    .wg-metier-price-card,
    .wg-hub-card {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (prefers-contrast: high) {
    .wg-metier-hero-overlay {
        background: rgba(0,0,0,0.9);
    }
    
    .wg-metier-hero-desc {
        color: rgba(255,255,255,0.9);
    }
    
    .wg-metier-pain-card p,
    .wg-metier-feature-item span {
        color: var(--wg-black);
    }
}
