/*
Theme Name: PrestaWeb Theme
Theme URI: https://www.prestaweb.fr/
Author: Antigravity AI
Author URI: https://www.prestaweb.fr/
Description: Thème premium ultra-moderne, réplique exacte de l'esthétique Avrios avec dégradé radial dynamique et optimisation mobile complète.
Version: 1.5.0
Text Domain: prestaweb
*/



:root {
  --color-primary-blue: #0043ce;
  --color-hero-gradient: radial-gradient(circle at 50% 80%, rgb(101, 156, 245), rgb(0, 67, 206) 47%);
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-bg: #f8f9fa;
  --color-text-dark: #000000;
  --color-text-muted: #6d7277;
  --color-brand-blue: #0043ce;
  --font-main: 'Inter', sans-serif;
}

/* Global Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: var(--font-main); 
    color: var(--color-text-dark); 
    background: var(--color-white); /* Fond blanc par défaut pour la propreté */
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden; /* Empêche tout défilement horizontal */
    width: 100%;
}

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

/* Container */
.container-avrios { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Hero Wrapper */
.hero-wrapper-avrios {
    background: var(--color-hero-gradient);
    color: var(--color-white);
    position: relative;
    border-radius: 0 0 32px 32px;
    padding-bottom: 20px;
    overflow: hidden; /* Obligatoire pour couper ce qui dépasse */
    width: 100%;
}


/* Header Sticky Premium with Logo Swap */
.pw-main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 35px 0; /* Plus d'espace pour valoriser le logo */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pw-main-header.is-sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0; /* Plus compact en scrollant */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Header vraiment blanc sur toutes les pages internes (sauf l'accueil) */
body:not(.home) .pw-main-header {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}


.pw-header-container {
    max-width: 1600px; /* Élargi pour que le menu tienne sur une ligne */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pw-header-logo-container {
    flex-shrink: 0;
}

.pw-logo {
    height: 65px; /* Taille valorisante */
    width: auto;
    transition: all 0.3s ease;
}

.is-sticky .pw-logo {
    height: 50px; /* Taille optimisée pour le scroll */
}


/* Logo Swapping Logic */
.pw-logo-color { display: block; }
.pw-logo-white { display: none; }

/* On affiche le logo blanc uniquement sur le Hero de la page d'accueil (avant le scroll) */
.home .pw-main-header:not(.is-sticky) .pw-logo-white { display: block; }
.home .pw-main-header:not(.is-sticky) .pw-logo-color { display: none; }

.pw-main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center; /* Assure l'alignement vertical avec le logo */
}

.pw-nav-list {
    list-style: none;
    display: flex;
    gap: 30px; /* Réduit légèrement pour aider à tenir sur une ligne */
    align-items: center; /* Aligne le texte avec le centre exact du logo */
    margin: 0; /* Supprime la marge par défaut qui décalait le menu vers le haut */
    padding: 0;
}

.pw-nav-list a {
    color: #1a1a1a; /* Sombre par défaut pour la lisibilité sur toutes les pages */
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
    white-space: nowrap; /* Force le texte sur une seule ligne */
}

/* On garde le menu blanc uniquement sur le Hero de la page d'accueil (avant le scroll) */
.home .pw-main-header:not(.is-sticky) .pw-nav-list a {
    color: #fff;
}

.pw-nav-list a:hover {
    color: #FF005C;
}

/* Gestion des Sous-Menus (Dropdown) */
.pw-nav-list li {
    position: relative; /* Nécessaire pour positionner le sous-menu */
}

.pw-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pw-nav-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pw-nav-list .sub-menu li {
    width: 100%;
}

.pw-nav-list .sub-menu a {
    color: #1a1a1a !important;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pw-nav-list .sub-menu a:hover {
    background: rgba(0, 67, 206, 0.05);
    color: #0043ce !important;
    padding-left: 30px;
}

/* --- AL-KHWARIZMI ART & HERO --- */
.hero-wrapper-avrios {
    background: var(--color-hero-gradient);
    color: var(--color-white);
    position: relative;
    border-radius: 0 0 48px 48px;
    padding-bottom: 20px;
    overflow: hidden; /* Sécurité maximale */
    width: 100%;
}

.hero-algorithm-art {
    position: absolute;
    width: 500px;
    height: 500px;
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
}

.hero-algorithm-art.left { left: 5%; top: 15%; }
.hero-algorithm-art.right { right: 5%; bottom: 15%; }

@media (max-width: 768px) {
    .hero-algorithm-art { display: none !important; }
    .hero-math-symbol { display: none !important; }
}

/* MEGA MENU STYLE ARMOR WEB */
.pw-nav-list .pw-has-mega {
    position: relative; /* On revient à un positionnement relatif pour centrer le menu */
}

.pw-nav-list .pw-mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 850px; /* Plus compact */
    background: #ffffff;
    border-radius: 20px; /* Bordures plus douces et compactes */
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); /* Ombre plus subtile */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding: 0; 
}

.pw-nav-list li:hover .pw-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Colonne Gauche (Services - Bleu Sombre) */
.pw-mega-services {
    background: #050b21;
    width: 40%; /* Un peu plus fin pour laisser de la place à droite */
    padding: 25px 30px; /* Padding réduit */
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Écart réduit entre les items */
}

.pw-mega-services h4 { display: none; } /* Pas de titre sur le modèle */

.pw-mega-service-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px; /* Gap plus petit */
    padding: 8px 12px; /* Padding très compact */
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pw-mega-service-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pw-mega-icon {
    width: 32px; /* Icône plus petite */
    height: 32px;
    background: #0047FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; /* Taille icône réduite */
    color: #fff;
    flex-shrink: 0;
}

.pw-mega-info .pw-mega-h5 {
    font-size: 15px; /* Texte plus discret */
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.pw-mega-info p { display: none; } /* On simplifie comme le modèle */

.pw-mega-tarifs {
    margin-top: 15px;
    padding-left: 12px;
    color: #ffffff !important; /* Forcé en blanc pour être lisible sur le fond sombre */
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.pw-mega-tarifs:hover {
    color: #0047FF !important;
}

/* Colonne Droite (Solutions - Blanc) */
.pw-mega-solutions {
    width: 60%; /* Prend plus de place pour les 3 colonnes */
    padding: 25px 30px;
    background: #fff;
}

.pw-mega-solutions .pw-mega-h4 {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 20px;
}

.pw-mega-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Colonnes comme Web Armor */
    gap: 18px 15px; /* Gap compact */
}

.pw-mega-solutions-grid a {
    color: #1a1a1a !important;
    font-size: 14px; /* Texte plus fin */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px; /* Icône plus proche */
    transition: color 0.3s;
}

.pw-mega-solutions-grid a i {
    color: #0047FF; /* Met en évidence l'icône FontAwesome en bleu pour correspondre à Armor */
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.pw-mega-solutions-grid a:hover {
    color: #0047FF !important;
}

/* Footer (Contact - Noir) */
.pw-mega-footer {
    width: 100%;
    background: #050b21;
    padding: 15px 30px; /* Padding réduit */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pw-mega-footer-text {
    color: #fff;
    font-size: 14px; /* Plus petit */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pw-mega-footer-text::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #0047FF;
    border-radius: 50%;
}

.pw-mega-footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px; /* Plus petit */
    font-weight: 700;
}

.pw-mega-phone {
    color: #fff !important;
    font-size: 16px;
}

.pw-mega-contact-btn { display: none; } /* Fusionné dans le texte */



.scientific-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(130, 23, 195, 0.5));
}

/* Nouvelle animation de "balade" */
@keyframes floating-wander {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 40px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.hero-math-symbol {
    position: absolute;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(130, 23, 195, 0.1);
    padding: 10px 18px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 5;
    animation: floating-wander 10s ease-in-out infinite alternate;
}


.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}


.glow-left { background: #8217C3; left: -200px; top: -100px; }
.glow-right { background: #FF4CE2; right: -200px; bottom: -100px; }

/* Animations */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.animate-rotate-slow { animation: rotate-slow 40s linear infinite; }
.animate-rotate-reverse { animation: rotate-reverse 50s linear infinite; }


/* Premium Estimate Button (Al-Khwarizmi Style) */
.pw-btn-estimate-premium {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 2px solid #0047FF;
    border-radius: 20px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.15);
    position: relative;
    z-index: 2;
    min-width: 280px;
}

.pw-btn-estimate-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 71, 255, 0.25);
    border-color: #FF005C;
}

.pw-btn-estimate-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pw-btn-estimate-title {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(90deg, #0047FF 0%, #3399ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.pw-btn-estimate-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-top: 2px;
}

.pw-btn-estimate-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #35329a 0%, #0047FF 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.pw-btn-estimate-premium:hover .pw-btn-estimate-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Header variant of the button */
.header-btn.pw-btn-estimate-premium {
    padding: 8px 16px;
    min-width: auto;
    border-radius: 12px;
    border-width: 1.5px;
}

.header-btn .pw-btn-estimate-title { font-size: 14px; }
.header-btn .pw-btn-estimate-subtitle { font-size: 10px; }
.header-btn .pw-btn-estimate-icon { display: none; }

/* Hero Section */
/* Hero Section Container */
.hero-body {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 0 350px;
    position: relative;
    z-index: 10;
}

/* Hero Content Typography */
.hero-body h1 { 
    font-size: 64px; 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 30px; 
    color: #fff; 
    letter-spacing: -1px;
}

.hero-body p { 
    font-size: 20px; 
    max-width: 800px; 
    margin: 0 auto 40px; 
    line-height: 1.6; 
    color: rgba(255, 255, 255, 0.95); 
}

.hero-btns-avrios { 
    display: flex; 
    gap: 24px; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 40px; 
}

.btn-outline-avrios {
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline-avrios:hover { 
    background: rgba(255, 255, 255, 0.15); 
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-reassurance-avrios { 
    font-size: 15px; 
    color: rgba(255, 255, 255, 0.8); 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 12px; 
    margin-top: 20px;
}



/* Tabs Card */
.tabs-card-avrios {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-top: -300px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.tabs-list { display: flex; border-bottom: 1px solid #eee; }
.tab-btn-avrios { padding: 30px 10px; font-size: 16px; color: #6d7277; flex: 1; text-align: center; cursor: pointer; border-bottom: 4px solid transparent; }
.tab-btn-avrios.active { color: #000; font-weight: 600; border-bottom-color: #0043ce; }

/* Premium Tab Content Redesign */
.tab-content-area {
    padding: 20px 60px;
    background: #fff;
}

.tab-content-item {
    display: none;
    flex-direction: column;
    gap: 40px;
}

.tab-content-item.active { display: flex; animation: fadeInTab 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.tab-header-full {
    text-align: left;
    max-width: 800px;
}

.tab-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-tag {
    display: inline-block;
    background: rgba(0, 71, 255, 0.08);
    color: #0047FF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-text-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.service-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.service-mini-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.service-mini-card:hover {
    background: #fff;
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateX(10px);
}

.card-icon { font-size: 32px; flex-shrink: 0; }

.service-mini-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
}

.service-mini.trust-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.trust-tag {
    display: inline-block;
    color: var(--color-brand-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.service-mini-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-cta-modern {
    display: inline-block;
    color: #0047FF;
    font-weight: 800;
    font-size: 18px;
    border-bottom: 2px solid #0047FF;
    padding-bottom: 4px;
    transition: 0.3s;
}

.btn-cta-modern:hover { padding-left: 10px; }

/* UI Mockup CSS Illustrations */
.tab-illustration-premium {
    background: #f4f7ff;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.browser-mockup {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}

.browser-header span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.browser-body-mock { padding: 20px; }
.mock-hero { height: 100px; background: #eef2ff; border-radius: 8px; margin-bottom: 20px; }
.mock-grid { display: flex; gap: 15px; }
.mock-grid div { flex: 1; height: 60px; background: #f9f9f9; border-radius: 6px; }

/* Maintenance Dashboard Mockup */
.maintenance-dashboard { text-align: center; }
.dash-circle {
    width: 140px; height: 140px;
    border: 12px solid #0047FF;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 800; color: #0047FF;
    margin: 0 auto 30px;
}

/* SEO Chart Mockup */
.seo-chart-mock {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
}
.seo-chart-mock div {
    width: 40px;
    background: #0047FF;
    border-radius: 8px 8px 0 0;
    animation: growBar 1s ease forwards;
}

@keyframes growBar { from { height: 0; } to { height: var(--h); } }

@media (max-width: 991px) {
    .hero-body h1 { font-size: 36px; }
    .tab-content-item.active { grid-template-columns: 1fr; }
    .hero-body { padding-bottom: 250px; }
    .tabs-card-avrios { margin-top: -200px; }
}

/* Trust Section Parallax */
.trust-section-parallax {
    padding: 70px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.trust-header {
    text-align: center;
    margin-bottom: 5px;
}

.trust-tag {
    display: inline-block;
    color: var(--color-brand-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.trust-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.parallax-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Ensure rows are centered */
}

.parallax-row {
    display: flex;
    gap: 10px; /* Reduced space between logos */
    width: max-content;
    will-change: transform;
    transition: transform 0.1s linear;
}

.move-left, .move-right { transform: translateX(0); } /* Neutral start */

.logo-item-minimal {
    min-width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    filter: grayscale(0); /* Default is color */
    opacity: 0.9;
}

.logo-item-minimal img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

.logo-item-minimal:hover {
    filter: grayscale(1); /* Hover is grayscale */
    opacity: 0.5;
}

.move-left { transform: translateX(0%); }
.move-right { transform: translateX(-15%); }

/* Problems Section */
.problems-section-avrios {
    padding: 50px 0;
    background: #fff;
}

.problems-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.problems-tags {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.tag-blue {
    background: #0047FF;
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00FF00;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 1);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

.tag-text {
    color: #0047FF;
    font-weight: 700;
    font-size: 14px;
}

.problems-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.problems-title span {
    color: #0047FF;
    font-style: italic;
}

.problems-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.problem-item {
    display: flex;
    gap: 20px;
}

.problem-icon {
    width: 32px;
    height: 32px;
    background: #FFE5E9;
    color: #FF2D55;
    border: 2px solid #FF2D55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.problem-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.problem-text p {
    font-size: 16px;
    color: #666;
}

/* Falling Box Visual */
.problems-visual {
    position: relative;
    height: 600px;
}

.falling-box {
    width: 100%;
    height: 100%;
    background: #EAEAEA;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.pill {
    position: absolute;
    padding: 10px 20px;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-500px); /* Start higher */
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
}

.problems-visual.is-active .pill {
    transform: translateY(0) rotate(var(--rot, 0deg));
    opacity: 1;
}

.pill-1 { left: 10%; bottom: 200px; --rot: -5deg; transition-delay: 0.1s; }
.pill-2 { left: 45%; bottom: 210px; --rot: 3deg; transition-delay: 0.2s; }
.pill-3 { left: 5%; bottom: 140px; --rot: -2deg; transition-delay: 0.3s; }
.pill-4 { left: 35%; bottom: 145px; --rot: 5deg; transition-delay: 0.4s; }
.pill-5 { left: 65%; bottom: 130px; --rot: -3deg; transition-delay: 0.5s; }
.pill-6 { left: 15%; bottom: 80px; --rot: 12deg; transition-delay: 0.6s; }
.pill-7 { left: 40%; bottom: 70px; --rot: 2deg; transition-delay: 0.7s; }
.pill-8 { left: 70%; bottom: 75px; --rot: -4deg; transition-delay: 0.8s; }
.pill-9 { left: 25%; bottom: 20px; --rot: 1deg; transition-delay: 0.9s; }
.pill-10 { left: 55%; bottom: 30px; --rot: -2deg; transition-delay: 1s; }
.pill-11 { left: 10%; bottom: 80px; --rot: 5deg; transition-delay: 1.1s; }

@media (max-width: 991px) {
    .problems-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .problems-visual { height: 400px; }
    .problems-title { font-size: 36px; }
}

/* Success Wall Section (Projects Version) */
.success-wall-section {
    padding: 42px 0;
    background: #fff;
    overflow: hidden;
}

.success-wall-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.success-wall-container::before,
.success-wall-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.success-wall-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.success-wall-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.wall-row {
    display: flex;
    gap: 30px;
    width: max-content;
}

/* Animations */
.move-left .wall-loop {
    display: flex;
    gap: 30px;
    animation: scroll-left 50s linear infinite;
}

.move-right .wall-loop {
    display: flex;
    gap: 30px;
    animation: scroll-right 50s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes scroll-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Square Project Card */
.project-card {
    min-width: 400px;
    height: 400px;
    border-radius: 24px;
    background-size: cover;
    background-position: top center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Center Actions */
.portfolio-actions-center {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.portfolio-actions-center .btn-outline-avrios {
    border: 2px solid #0047FF;
    color: #0047FF;
    padding: 16px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.portfolio-actions-center .btn-outline-avrios:hover {
    background: #0047FF;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 71, 255, 0.2);
}

@media (max-width: 768px) {
    .project-card { min-width: 280px; height: 280px; }
}

/* Final CTA Section */
.final-cta-section {
    padding: 50px 0;
    background: #fff;
}

.cta-blue-card {
    background-color: #0043CE; /* Base color from Avrios */
    background-image: radial-gradient(
        circle at 0px 100%, 
        rgb(166, 200, 255) 0%, 
        rgb(0, 67, 206) 30%
    );
    border-radius: 40px;
    padding: 80px;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.cta-card-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.cta-text-side h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-text-side h2 span {
    color: rgba(255, 255, 255, 0.7);
}

.cta-text-side p {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}

.cta-visual-side {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.mockup-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.mockup-main {
    width: 100%;
    padding: 30px;
    position: relative;
}

.mockup-head { display: flex; gap: 8px; margin-bottom: 20px; }
.mockup-head span { width: 30px; height: 6px; background: #eee; border-radius: 3px; }

.mockup-body .m-line { height: 10px; background: #f5f5f5; border-radius: 5px; margin-bottom: 12px; }
.mockup-body .m-line.short { width: 60%; }
.mockup-body .m-line.long { width: 100%; }

.mockup-grid { display: flex; gap: 10px; margin-top: 20px; }
.mockup-grid span { flex: 1; height: 40px; background: #E5F0FF; border-radius: 8px; }

.mockup-float {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #00FF85;
    color: #000;
    padding: 15px 25px;
    font-weight: 800;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 255, 133, 0.3);
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* Notre Approche V4 - Pixel Perfect */
.approach-section-avrios {
    padding: 50px 0;
    background: #fff;
}

.badge-row-v4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.badge-blue-pill {
    background: #0047FF;
    color: #fff;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot-white { width: 8px; height: 8px; background: #fff; border-radius: 50%; display: inline-block; }

.text-pill-blue {
    color: #0047FF;
    font-weight: 800;
    font-size: 14px;
}

.approach-header-v4 {
    text-align: center;
    margin-bottom: 60px;
}

.title-v4 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1b3a; /* Dark purple/black from image */
    margin-bottom: 30px;
    text-align: center;
}

.italic-blue {
    color: #3B5BFF; /* Specific blue from image */
    font-style: italic;
}

.intro-v4 {
    max-width: 850px;
    margin: 0 auto 80px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.approach-grid-v4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Gradient Border Card Technique */
.card-v4 {
    position: relative;
    padding: 1px; /* The border width */
    border-radius: 32px;
    background: linear-gradient(135deg, #0047FF, #7000FF, #FF005C);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-inner {
    background: #fff;
    border-radius: 31px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.icon-v4 {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.bg-blue { background: #0047FF; }
.bg-purple { background: #7000FF; }
.bg-red { background: #FF005C; }

.card-v4 h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1b3a;
    margin-bottom: 15px;
}

.card-v4 p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Glow Shadows based on card color */
.card-blue { box-shadow: 0 20px 40px rgba(0, 71, 255, 0.1); }
.card-blue:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 71, 255, 0.2); }

.card-purple { box-shadow: 0 20px 40px rgba(112, 0, 255, 0.1); }
.card-purple:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(112, 0, 255, 0.2); }

.card-red { box-shadow: 0 20px 40px rgba(255, 0, 92, 0.1); }
.card-red:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(255, 0, 92, 0.2); }

@media (max-width: 991px) {
    .approach-grid-v4 { grid-template-columns: 1fr; }
    .card-inner { padding: 40px 30px; }
}

@media (max-width: 991px) {
    .cta-card-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .cta-blue-card { padding: 40px; }
    .cta-text-side h2 { font-size: 36px; }
    .cta-text-side p { margin: 0 auto; }
    .hero-btns-avrios { justify-content: center !important; }
    .cta-visual-side { display: none; }
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-block-card {
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-block-card:hover {
    transform: translateY(-5px);
}

.service-icon-wrap {
    margin-bottom: 30px;
    height: 120px;
    display: flex;
    align-items: center;
}

.service-icon-wrap img {
    max-height: 100%;
    width: auto;
}

.service-tagline-badge {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-block-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-price-pill {
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
}

.service-block-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-service-more {
    padding: 12px 30px;
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-service-more:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Card Colors */
.color-navy { background: #0A0F3D; color: #fff; }
.color-navy .service-price-pill { background: #fff; color: #0047FF; }
.tag-orange { background: #FF9F00; color: #fff; }

.color-aqua { background: #B2EFE5; color: #000; }
.color-aqua .service-price-pill { background: #0A0F3D; color: #fff; }
.tag-dark-orange { background: #E67E22; color: #fff; }
.btn-dark { background: #0A0F3D !important; color: #fff !important; }

.color-yellow { background: #FFD066; color: #000; }
.color-yellow .service-price-pill { background: #0A0F3D; color: #fff; }
.tag-blue-light { background: #3498DB; color: #fff; }

.color-purple-light { background: #7B61FF; color: #fff; }
.color-purple-light .service-price-pill { background: #B2EFE5; color: #000; }
.tag-gold { background: #F1C40F; color: #000; }

/* Full Width Card */
.full-width {
    grid-column: span 2;
}

.color-premium {
    background: linear-gradient(135deg, #0047FF, #002BB8);
    color: #fff;
    text-align: left;
    align-items: flex-start;
}

.full-width-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.full-text { flex: 1; }
.full-visual { flex: 0 0 200px; text-align: center; }
.pill-white { background: #fff; color: #0047FF; }
.tag-white { background: rgba(255,255,255,0.2); color: #fff; }

@media (max-width: 991px) {
    .services-grid-wrapper { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .full-width-flex { flex-direction: column; text-align: center; }
    .color-premium { align-items: center; text-align: center; }
}

/* Process Timeline Section */
.process-section-avrios {
    padding: 80px 0;
    background: #fbfbfd;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0047FF, #7000FF, #FF005C);
    transform: translateX(-50%);
    opacity: 0.2;
}

/* Process Final Section (Based on Reference Image) */
.process-final-section {
    padding: 20px 0;
    background: #F8F9FD; /* Soft bluish-grey background */
}

.final-timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 80px auto 0;
}

.final-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #D8D6FF; /* Soft lavender line */
    transform: translateX(-50%);
    z-index: 1;
}

.final-timeline-steps {
    position: relative;
    z-index: 2;
}

.final-step-item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 80px;
    opacity: 0.1;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-step-item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.final-step-item.right {
    justify-content: flex-end;
}

.final-step-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7B61FF, #6366F1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.4);
    border: 4px solid #fff;
}

.final-step-card {
    width: 42%;
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.final-step-card:hover {
    transform: translateY(-5px);
}

.step-day-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #EEF0FF;
    color: #6366F1;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.final-step-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1A1B3D;
    margin-bottom: 15px;
}

.final-step-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .final-timeline-line { left: 30px; transform: none; }
    .final-step-dot { left: 30px; transform: translate(-50%, -50%); }
    .final-step-card { width: calc(100% - 80px); margin-left: 80px; padding: 30px; }
    .final-step-item.right { justify-content: flex-start; }
    .final-step-card h3 { padding-right: 0; margin-top: 30px; }
}

/* Transparency Section Styles V2 - Enhanced Centering */
.pw-transparency-section {
    padding: 140px 0;
    background: #ffffff;
    overflow: hidden;
}

.pw-transparency-header {
    margin-bottom: 90px;
    text-align: center;
    width: 100%;
}

.pw-badge-wrapper {
    margin-bottom: 25px;
}

.pw-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pw-badge-main {
    background: #0047FF;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.pw-badge-sub {
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.pw-title-wrapper {
    max-width: 950px;
    margin: 0 auto 30px;
}

.pw-main-title {
    font-size: 56px;
    font-weight: 900;
    color: #0A0F3D;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
    text-align: center;
}

.pw-accent-color {
    color: #0047FF;
    display: inline-block;
}

.pw-intro-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.pw-intro-text {
    font-size: 19px;
    color: #64748b;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* Comparison Grid V2 - Enhanced Depth */
.pw-comparison-container {
    display: grid;
    grid-template-columns: 220px 1.2fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.pw-comparison-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 115%;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.06) 0%, rgba(255, 255, 255, 0) 75%);
    z-index: -1;
    pointer-events: none;
}

.pw-column {
    display: flex;
    flex-direction: column;
}

.pw-row {
    padding: 30px 35px;
    border-bottom: 1px solid #f1f5f9;
    min-height: 110px;
    display: flex;
    align-items: center;
}

.pw-head-row {
    font-weight: 800;
    font-size: 20px;
    color: #0A0F3D;
    border-bottom: 2px solid #f1f5f9;
    min-height: 90px;
    padding-bottom: 25px;
}

/* Labels Column */
.pw-labels-column {
    padding-right: 30px;
}

.pw-labels-column .pw-row {
    border-bottom: none;
    font-weight: 700;
    color: #0A0F3D;
    justify-content: flex-end;
    text-align: right;
    font-size: 15px;
    opacity: 0.8;
}

/* Hero Column (PrestaWeb) */
.pw-hero-column {
    background: linear-gradient(180deg, #0047FF 0%, #0038CC 100%);
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(0, 71, 255, 0.3), 0 0 50px rgba(0, 71, 255, 0.08);
    position: relative;
    z-index: 10;
    transform: scale(1.03);
    border: 1px solid rgba(255,255,255,0.1);
}

.pw-hero-column .pw-head-row {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.1);
    justify-content: center;
    font-size: 22px;
}

.pw-hero-column .pw-row {
    border-bottom-color: rgba(255,255,255,0.1);
    color: #fff;
}

.pw-hero-column .pw-row:last-child {
    border-bottom: none;
}

.pw-item-content {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.pw-icon-check {
    width: 30px;
    height: 30px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.pw-icon-check svg { width: 18px; height: 18px; }

.pw-hero-column strong { color: #fff; font-size: 18px; display: block; margin-bottom: 4px; }
.pw-hero-column p { color: rgba(255,255,255,0.8); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Checkpoints Column */
.pw-checkpoints-column {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-left: none;
    border-radius: 0 28px 28px 0;
    padding-left: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pw-checkpoints-column .pw-head-row {
    justify-content: flex-start;
    padding-left: 45px;
    color: #0A0F3D;
    font-weight: 800;
}

.pw-tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 8px;
    margin-right: 12px;
}

.pw-tip-icon svg {
    width: 20px;
    height: 20px;
}

.pw-checkpoints-column .pw-row {
    padding-left: 60px;
}

.pw-checkpoints-column .pw-row:last-child {
    border-bottom: none;
}

.pw-icon-alert {
    width: 30px;
    height: 30px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.pw-icon-alert svg { width: 26px; height: 26px; }

.pw-checkpoints-column strong { color: #1e293b; font-size: 16.5px; display: block; margin-bottom: 4px; }
.pw-checkpoints-column p { color: #64748b; font-size: 14px; line-height: 1.6; margin: 0; }

.pw-mobile-label { display: none; }

/* Responsive V2 */
@media (max-width: 1200px) {
    .pw-comparison-container { grid-template-columns: 180px 1.2fr 1fr; padding: 20px 20px; }
    .pw-main-title { font-size: 48px; }
}

@media (max-width: 1024px) {
    .pw-comparison-container { grid-template-columns: 1fr 1fr; gap: 20px; }
    .pw-labels-column { display: none; }
    .pw-hero-column { transform: none; border-radius: 28px; }
    .pw-checkpoints-column { border-left: 1px solid #e2e8f0; border-radius: 28px; padding-left: 0; }
    .pw-checkpoints-column .pw-row { padding-left: 30px; }
    .pw-checkpoints-column .pw-head-row { padding-left: 0; }
}

@media (max-width: 768px) {
    .pw-transparency-section { padding: 60px 0; }
    .pw-comparison-container { 
        grid-template-columns: 1fr !important; 
        gap: 25px !important; 
        padding: 0 15px !important;
    }
    .pw-br-desktop { display: none; }
    .pw-main-title { font-size: 26px; }
    .pw-intro-text { font-size: 16px; }
    
    .pw-hero-column, 
    .pw-checkpoints-column { 
        transform: none !important; 
        border-radius: 24px !important; 
        box-shadow: 0 15px 45px rgba(0, 71, 255, 0.05) !important;
    }

    .pw-hero-column {
        border: 1px solid rgba(255,255,255,0.15) !important;
    }

    .pw-checkpoints-column {
        border: 1px solid #cbd5e1 !important;
        padding-left: 0 !important;
    }
    
    .pw-row { 
        min-height: auto !important; 
        padding: 20px 15px !important; 
    }

    .pw-head-row {
        padding-top: 25px !important;
        padding-bottom: 20px !important;
        font-size: 19px !important;
        min-height: auto !important;
    }

    .pw-hero-column .pw-head-row {
        justify-content: flex-start !important;
        padding-left: 56px !important;
    }

    .pw-checkpoints-column .pw-head-row {
        justify-content: flex-start !important;
        padding-left: 15px !important;
    }

    .pw-checkpoints-column .pw-row {
        padding-left: 15px !important;
    }
    
    .pw-mobile-label { 
        display: block !important; 
        font-size: 11px !important; 
        text-transform: uppercase !important; 
        letter-spacing: 2px !important; 
        margin-bottom: 10px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        font-weight: 700 !important;
    }
    
    .pw-checkpoints-column .pw-mobile-label { 
        color: #94a3b8 !important; 
    }
    
    .pw-item-content { 
        flex-direction: row !important; 
        align-items: flex-start !important; 
        gap: 15px !important;
    }

    .pw-icon-check, 
    .pw-icon-alert {
        width: 26px !important;
        height: 26px !important;
        margin-top: 0 !important;
    }

    .pw-icon-check svg, 
    .pw-icon-alert svg {
        width: 15px !important;
        height: 15px !important;
    }
}

/* ==========================================================================
   SECTION AVIS CLIENTS (CONFIDENCE) - PRESTAWEB-REVIEWS
   ========================================================================== */

.pw-reviews-section {
    padding: 140px 0;
    background: #F9FAFB; /* Fond très clair et moderne */
    position: relative;
    overflow: hidden;
}

.pw-reviews-header {
    margin-bottom: 80px;
    text-align: center;
}

/* Reviews Grid - CSS Masonry effect */
.prestaweb-reviews-grid {
    column-count: 4;
    column-gap: 25px;
    width: 100%;
}

.prestaweb-reviews-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    break-inside: avoid; /* Important pour masonry */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestaweb-reviews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.pw-review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.pw-user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0047FF, #00C2FF);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.pw-user-info strong {
    display: block;
    font-size: 16px;
    color: #0A0F3D;
    margin-bottom: 2px;
}

.pw-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
}

.pw-google-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.pw-google-icon svg {
    width: 100%;
    height: 100%;
}

.pw-review-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.pw-review-date {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive Masonry */
@media (max-width: 1200px) {
    .prestaweb-reviews-grid { column-count: 3; }
}

@media (max-width: 992px) {
    .pw-reviews-section { padding: 100px 0; }
    .prestaweb-reviews-grid { column-count: 2; }
}

@media (max-width: 768px) {
    .prestaweb-reviews-grid { column-count: 1; }
    .pw-reviews-header { margin-bottom: 50px; }
}

/* ==========================================================================
   SECTION TARIFS (PRICING V2) - PRESTAWEB-PRICING
   ========================================================================== */

.pw-pricing-section {
    /* padding: 100px 0; */
    /* background: #ffffff; */
}

.pw-pricing-outer-wrapper {
    max-width: 1550px;
    margin: 0 auto;
    width: 88%;
    position: relative;
}

.pw-pricing-bg-dark {
    background-color: var(--color-brand-blue);
    background-image: var(--color-hero-gradient);
    border-radius: 60px;
    padding: 41px 0 868px 0;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 67, 206, 0.15);
}

.pw-pricing-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.pw-pricing-main-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 30px 0;
    letter-spacing: -1.5px;
}

.pw-pricing-intro {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* Glass Container - The area holding the cards */
.prestaweb-pricing-glass-container {
    max-width: 1490px;
    margin: -845px auto 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 45px;
    padding: 20px;
    position: relative;
    z-index: 20;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.15);
}

.prestaweb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Pricing Cards - Larger and cleaner */
.prestaweb-pricing-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 45px 32px;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 580px;
}

.prestaweb-pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 71, 255, 0.2);
}

.pw-card-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.pw-card-tag.popular { background: rgba(0, 71, 255, 0.1); color: #0047FF; }
.pw-card-tag.ecommerce { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.pw-card-tag.monthly { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.pw-card-tag.visibility { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.pw-card-icon {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0047FF;
    margin-bottom: 28px;
    transition: background 0.3s ease;
}

.prestaweb-pricing-card:hover .pw-card-icon {
    background: rgba(0, 71, 255, 0.05);
}

.pw-card-icon svg { width: 28px; height: 28px; }

.prestaweb-pricing-card h3 {
    font-size: 24px;
    font-weight: 850;
    color: #0A0F3D;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pw-card-subtitle {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 28px;
    min-height: 44px;
}

.pw-card-price {
    margin-bottom: 30px;
    padding: 22px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.pw-price-from {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.pw-price-value {
    font-size: 34px;
    font-weight: 900;
    color: #0047FF;
}

.pw-price-value small {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
}

.pw-price-mention {
    font-size: 13px;
    color: #10b981;
    font-weight: 700;
    margin-top: 6px;
}

.pw-card-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 30px;
}

.pw-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pw-card-features li, .pw-card-features-extra li {
    font-size: 13.8px;
    color: #475569;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
}

.pw-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
    font-size: 14px;
}

/* Toggle Content Details */
.pw-card-details-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    border-top: 1px dashed #e2e8f0;
    padding-top: 25px;
    margin-top: 10px;
}

.pw-card-features-extra {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pw-card-features-extra li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #0047FF;
    font-weight: 800;
    font-size: 16px;
}

.pw-toggle-details-btn {
    width: 100%;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    color: #0A0F3D;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pw-toggle-details-btn:hover {
    background: #0047FF;
    color: #fff;
    border-color: #0047FF;
    box-shadow: 0 10px 20px rgba(0, 71, 255, 0.2);
}

.pw-pricing-main-title .pw-accent-color {
    color: #ffffff; /* Blanc pour une visibilité totale */
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.pw-pricing-disclaimer {
    text-align: center;
    color: #0a0f3d !important;
    font-size: 15px;
    max-width: 850px;
    margin: 50px auto 0;
    line-height: 1.7;
    opacity: 1 !important;
    position: relative;
    z-index: 30;
}

/* Responsive Pricing V2 */
@media (max-width: 1440px) {
    .pw-pricing-outer-wrapper { width: 92%; }
    .pw-pricing-main-title { font-size: 50px; }
}

@media (max-width: 1200px) {
    .prestaweb-pricing-glass-container { padding: 30px; margin-top: -300px; }
    .prestaweb-pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .prestaweb-pricing-card { min-height: auto; }
}

@media (max-width: 768px) {
    .pw-pricing-outer-wrapper { width: 95%; }
    .pw-pricing-bg-dark { border-radius: 40px; padding: 40px 0 160px 0 !important; }
    .prestaweb-pricing-grid { grid-template-columns: 1fr; gap: 25px; }
    .prestaweb-pricing-glass-container { border-radius: 35px; padding: 25px 15px; margin-top: -120px !important; }
    .pw-pricing-main-title { font-size: 34px; letter-spacing: -0.5px; }
    .pw-pricing-intro { font-size: 17px; }
    .prestaweb-pricing-card { padding: 35px 25px; }
}

/* ==========================================================================
   FOOTER PRESTAWEB - VERSION FINALE PREMIUM (STABLE)
   ========================================================================== */

/* Conteneur Global */
.prestaweb-footer-global-container {
    max-width: 100%;
    /* margin: 60px auto; */
    padding: 0 20px;
    background: #f8f9fd;
    font-family: 'Inter', sans-serif;
}

/* Bloc 1 : Avantages (Haut) */
.prestaweb-footer-block-advantages {
    background: #EAEBFF;
    min-height: 80px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Padding ajusté pour 5 items */
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.prestaweb-footer-advantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prestaweb-footer-advantage-item p {
    font-size: 13.5px; /* Un peu plus petit pour que tout rentre */
    font-weight: 800;
    color: #1a1b3a;
    margin: 0;
    letter-spacing: -0.2px;
}

.prestaweb-footer-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5158F0; /* Bleu électrique PrestaWeb */
    width: 24px;
    height: 24px;
}

.prestaweb-footer-icon-svg svg {
    width: 100%;
    height: 100%;
}

/* Bloc 2 : CTA Expert (Style Avrios Unifié - Version Fine) */
.prestaweb-footer-block-cta {
    background-color: #0043CE;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 50%), 
        var(--color-hero-gradient);
    min-height: 120px; /* Plus fin */
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px; /* Moins de padding vertical */
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 67, 206, 0.2);
}

.prestaweb-footer-cta-left h2 {
    font-size: 26px; /* Ajusté pour la finesse */
    font-weight: 850;
    margin: 0 0 4px 0;
    color: #fff;
    letter-spacing: -0.5px;
}

.prestaweb-footer-cta-left p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

.prestaweb-footer-cta-right {
    display: flex;
    flex-direction: row; /* Forcé côte à côte */
    align-items: center;
    gap: 20px;
}

/* Boutons Style Avrios Premium */
.prestaweb-footer-btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 3px solid #0047FF;
    border-radius: 16px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    gap: 15px;
}

.prestaweb-footer-btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.prestaweb-footer-btn-premium .btn-estimate-title {
    font-size: 17px;
    font-weight: 850;
    background: linear-gradient(90deg, #0047FF 0%, #FF005C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    display: block;
}

.prestaweb-footer-btn-premium .btn-estimate-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-top: 2px;
}

/* Bouton Secondaire Outline Premium */
.prestaweb-footer-btn-outline-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prestaweb-footer-btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.prestaweb-footer-btn-outline-premium .btn-estimate-title-white {
    font-size: 16px;
    font-weight: 850;
    display: block;
}

.prestaweb-footer-btn-outline-premium .btn-estimate-subtitle-white {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

/* Zone 3 : Footer Principal (Deux Cartes) */
/* Zone 3 : Footer Principal (Design Director Version - CARTE BLANCHE) */
.prestaweb-footer-main-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.prestaweb-footer-card-left, 
.prestaweb-footer-card-right {
    background: linear-gradient(180deg, #0A0F3D 0%, #05071A 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px; /* Un peu plus d'arrondi */
    padding: 70px 60px; /* Plus d'espace (Whitespace) */
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Bloc Gauche : L'Ancre Visuelle */
.prestaweb-footer-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* CARTE BLANCHE : Halo derrière le logo */
.prestaweb-footer-card-left::before {
    content: '';
    position: absolute;
    top: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(81, 88, 240, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.prestaweb-footer-logo-box {
    position: relative;
    z-index: 1;
    margin-bottom: 45px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.prestaweb-footer-logo-box img {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(81, 88, 240, 0.2)); /* Léger rayonnement */
}

.prestaweb-footer-brand-intro {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 340px;
    font-weight: 400;
}

.prestaweb-footer-contact-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.prestaweb-footer-contact-list li {
    font-size: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.prestaweb-footer-contact-list a {
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.prestaweb-footer-contact-list a:hover {
    color: #5158F0;
    text-shadow: 0 0 10px rgba(81, 88, 240, 0.4);
}

/* Bloc Droit : L'Interface SaaS (Effet Verre) */
.prestaweb-footer-card-right {
    /* CARTE BLANCHE : Plus léger, plus aérien */
    background: linear-gradient(180deg, rgba(10, 15, 61, 0.95) 0%, rgba(5, 7, 26, 0.98) 100%);
    backdrop-filter: blur(10px);
}

.prestaweb-footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* CARTE BLANCHE : Typographie Institutionnelle */
.prestaweb-footer-col h4,
.prestaweb-footer-col .prestaweb-footer-title {
    font-size: 13px; /* Plus petit */
    font-weight: 900;
    margin-bottom: 35px;
    color: #ffffff;
    text-transform: uppercase; /* Majuscules */
    letter-spacing: 1.8px; /* Plus d'espace */
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.prestaweb-footer-col ul { list-style: none; padding: 0; }
.prestaweb-footer-col li { margin-bottom: 16px; }
.prestaweb-footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    position: relative;
}

.prestaweb-footer-col a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

/* CARTE BLANCHE : Séparateur Éthéré */
.prestaweb-footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    margin-bottom: 50px;
    border: none;
}

.prestaweb-footer-recent-tips h4,
.prestaweb-footer-recent-tips .prestaweb-footer-title {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.prestaweb-footer-recent-tips ul { list-style: none; padding: 0; margin-bottom: 40px; }
.prestaweb-footer-recent-tips li { margin-bottom: 20px; }
.prestaweb-footer-recent-tips a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14.5px;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: block;
    max-width: 90%;
}

.prestaweb-footer-recent-tips a:hover {
    color: #5158F0;
}

.prestaweb-footer-all-articles {
    font-size: 12px;
    color: #5158F0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(81, 88, 240, 0.3);
    padding-bottom: 4px;
}

.prestaweb-footer-all-articles:hover { 
    color: #fff;
    border-bottom-color: #fff;
}

/* Bloc 4 : Barre légale */
.prestaweb-footer-legal-bar {
    background: #050714;
    min-height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    padding: 15px 40px;
    text-align: center;
}

/* --- FINITIONS CARTE BLANCHE --- */

/* Hover sur les Avantages */
.prestaweb-footer-advantage-item {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.prestaweb-footer-advantage-item:hover {
    transform: translateY(-3px);
}

.prestaweb-footer-advantage-item:hover .prestaweb-footer-icon-svg {
    color: #1a1b3a; /* L'icône fonce pour un contraste fort */
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Bouton Back to Top Stylisé */
#prestaweb-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0A0F3D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#prestaweb-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#prestaweb-back-to-top:hover {
    background: #5158F0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(81, 88, 240, 0.4);
}

#prestaweb-back-to-top svg {
    width: 22px;
    height: 22px;
}

/* Polissage Responsive Final */
@media (max-width: 1200px) {
    .prestaweb-footer-main-grid { grid-template-columns: 1fr; }
    .prestaweb-footer-card-left { padding: 50px 40px; }
    .prestaweb-footer-brand-intro { max-width: 100%; }
    .prestaweb-footer-block-advantages { padding: 20px; flex-wrap: wrap; justify-content: center; gap: 20px; }
}

@media (max-width: 991px) {
    .prestaweb-footer-block-advantages { 
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
        padding: 30px 40px;
        min-height: auto;
    }
    .prestaweb-footer-block-cta { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px 30px; 
        gap: 30px; 
    }
    .prestaweb-footer-cta-right {
        flex-direction: row; /* On essaie de garder côte à côte sur tablette */
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .prestaweb-footer-block-advantages { 
        grid-template-columns: 1fr;
        padding: 25px;
    }
    .prestaweb-footer-advantage-item { justify-content: flex-start; }
    .prestaweb-footer-cta-right {
        flex-direction: column;
        width: 100%;
    }
    .prestaweb-footer-btn-premium, .prestaweb-footer-btn-outline-premium {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .prestaweb-footer-nav-columns { grid-template-columns: 1fr; text-align: center; }
    .prestaweb-footer-logo-box img { max-width: 220px; }
    
    /* CARTE BLANCHE : Adaptation Typo Mobile */
    .prestaweb-footer-col h4, .prestaweb-footer-recent-tips h4 {
        letter-spacing: 1.2px; /* On réduit un peu l'espace pour éviter les débordements */
        font-size: 12px;
    }
    
    .prestaweb-footer-card-right {
        padding: 50px 30px;
    }
    
    #prestaweb-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   SECTION SHOWCASE SAAS (REMORQSIGNE)
   ========================================================================== */

.pw-saas-showcase-section {
    padding: 100px 0 140px 0;
    background: #ffffff;
    overflow: hidden;
}

/* ==========================================================================
   SECTION REMORQSIGNE (AVRIOS STYLE - CHAOS DES DOCUMENTS)
   ========================================================================== */

.pw-saas-showcase-section {
    padding: 100px 0;
    background: #f8f9fd;
}

.pw-avrios-card {
    background: linear-gradient(184deg, #a6c8ff 18%, #cae2ff 39%, #dbe8ff 71%);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.pw-avrios-card.inverted {
    grid-template-columns: 0.9fr 1.1fr;
}

.pw-avrios-card.inverted .pw-avrios-visual {
    order: -1;
}

.pw-avrios-content {
    max-width: 550px;
    z-index: 2;
}

.pw-avrios-badge {
    display: inline-block;
    background: #0047FF;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
}

.pw-avrios-content h2 {
    font-size: 48px;
    font-weight: 850;
    line-height: 1.1;
    color: rgb(20, 23, 25);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.pw-avrios-content p {
    font-size: 18px;
    color: rgba(20, 23, 25, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-avrios-outline {
    display: inline-flex;
    padding: 15px 30px;
    border: 2px solid #0043ce;
    color: #0043ce;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-avrios-outline:hover {
    background: #0043ce;
    color: #fff;
}

/* VISUAL : L'animation du Chaos */
.pw-avrios-visual {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pw-folder-container {
    position: relative;
    width: 280px;
    height: 240px;
    z-index: 2;
}

.pw-folder-main {
    width: 100%;
    height: 100%;
    background: #5dade2; /* Bleu dossier */
    border-radius: 20px 20px 20px 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pw-folder-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Documents flottants */
.pw-floating-doc {
    position: absolute;
    background: #fff;
    padding: 16px 24px; /* Plus grand */
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    font-size: 14px; /* Plus lisible */
    font-weight: 850;
    color: #141719;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    animation: chaosToOrder 6s infinite ease-in-out;
    opacity: 0;
    border: 1px solid rgba(0, 67, 206, 0.05);
}

.pw-doc-icon { width: 16px; height: 16px; border-radius: 4px; }
.pw-doc-red { background: #e74c3c; }
.pw-doc-blue { background: #3498db; }
.pw-doc-green { background: #27ae60; }

.doc-1 { top: -40px; left: -100px; animation-delay: 0s; }
.doc-2 { top: 20px; right: -120px; animation-delay: 1.5s; }
.doc-3 { bottom: -20px; left: -80px; animation-delay: 3s; }
.doc-4 { top: -80px; right: 20px; animation-delay: 4.5s; }

@keyframes chaosToOrder {
    0% { transform: translate(0, 0) scale(0.8) rotate(-10deg); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: translate(var(--target-x, 0), var(--target-y, 50px)) scale(0.6) rotate(0deg); opacity: 0.5; }
    100% { transform: translate(var(--target-x, 0), var(--target-y, 80px)) scale(0.4); opacity: 0; }
}

/* On force des positions spécifiques pour l'effet de "rangement" */
.doc-1 { --target-x: 100px; --target-y: 60px; }
.doc-2 { --target-x: -120px; --target-y: 40px; }
.doc-3 { --target-x: 80px; --target-y: -20px; }
.doc-4 { --target-x: -20px; --target-y: 100px; }

/* Responsive Avrios */
@media (max-width: 1200px) {
    .pw-avrios-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; }
    .pw-avrios-content { margin: 0 auto; }
    .pw-avrios-visual { margin-top: 60px; }
}

@media (max-width: 768px) {
    .pw-avrios-content h2 { font-size: 36px; }
    .pw-avrios-card { padding: 40px 25px; }
    .pw-floating-doc { display: none; } /* On simplifie sur mobile */
}

/* ==========================================================================
   SECTION BLOG (ARTICLES RÉCENTS)
   ========================================================================== */

.pw-blog-section {
    padding: 100px 0 140px 0;
    background: #ffffff;
}

.pw-blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pw-blog-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #141719;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pw-blog-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.pw-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pw-post-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none; /* Pour que la carte entière soit cliquable */
    color: inherit;
}

.pw-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: transparent;
}

.pw-post-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.pw-post-card:hover .pw-post-image img {
    transform: scale(1.1);
}

.pw-post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0047FF;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pw-post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pw-post-content h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #141719;
}

.pw-post-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pw-post-link {
    margin-top: auto;
    font-size: 15px;
    font-weight: 800;
    color: #0047FF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.pw-post-card:hover .pw-post-link {
    gap: 12px;
}

@media (max-width: 1024px) {
    .pw-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pw-blog-grid { grid-template-columns: 1fr; }
    .pw-blog-header h2 { font-size: 32px; }
}

/* ==========================================================================
   SECTION FAQ (ACCORDÉON PREMIUM)
   ========================================================================== */

.pw-faq-section {
    padding: 100px 0 140px 0;
    background: #f8f9fd;
}

.pw-faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pw-faq-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #141719;
    margin-bottom: 20px;
}

.pw-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.pw-faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #eef0f5;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pw-faq-item.is-open {
    border-color: #0047FF;
    box-shadow: 0 20px 40px rgba(0, 71, 255, 0.05);
}

.pw-faq-question {
    padding: 25px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.pw-faq-question h3 {
    font-size: 19px;
    font-weight: 800;
    color: #141719;
    margin: 0;
}

.pw-faq-icon {
    width: 24px;
    height: 24px;
    color: #0047FF;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pw-faq-item.is-open .pw-faq-icon {
    transform: rotate(45deg);
}

.pw-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 35px;
    opacity: 0;
}

.pw-faq-item.is-open .pw-faq-answer {
    max-height: 500px; /* Valeur arbitraire suffisamment grande */
    padding: 0 35px 30px 35px;
    opacity: 1;
}

.pw-faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .pw-faq-header h2 { font-size: 32px; }
    .pw-faq-question { padding: 20px; }
    .pw-faq-question h3 { font-size: 17px; }
    .pw-faq-answer { padding: 0 20px; }
}

/* Statistiques Section */
.pw-stats-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.pw-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.pw-stat-item {
    padding: 20px;
}

.pw-stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #0047FF;
    line-height: 1;
}

.pw-stat-suffix {
    font-size: 32px;
    font-weight: 800;
    color: #0047FF;
    margin-left: 4px;
}

.pw-stat-label {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .pw-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pw-stat-number { font-size: 48px; }
}

/* Testimonials Section */
.pw-testimonials-section {
    padding: 100px 0;
    background: #fcfdfe;
}

.pw-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.pw-testimonials-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #141719;
    margin-bottom: 16px;
}

.pw-testimonials-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pw-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pw-testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
}

.pw-testi-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.pw-testi-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pw-testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pw-testi-avatar {
    width: 48px;
    height: 48px;
    background: #0047FF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.pw-testi-info strong {
    display: block;
    font-size: 16px;
    color: #141719;
}

.pw-testi-info span {
    font-size: 14px;
    color: #888;
}

@media (max-width: 991px) {
    .pw-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: blur(10px);
}

.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
}

/* Delay helpers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ---------------------------------------------------------
   Typography Styles for Page Content (.entry-content)
   --------------------------------------------------------- */
.entry-content h2 { font-size: 2.2rem; font-weight: 800; color: #1a1b3a; margin-top: 50px; margin-bottom: 20px; letter-spacing: -0.5px; }
.entry-content h3 { font-size: 1.8rem; font-weight: 700; color: #1a1b3a; margin-top: 40px; margin-bottom: 15px; }
.entry-content h4 { font-size: 1.5rem; font-weight: 700; color: #1a1b3a; margin-top: 30px; margin-bottom: 15px; }
.entry-content h5 { font-size: 1.25rem; font-weight: 600; color: #1a1b3a; margin-top: 25px; margin-bottom: 10px; }
.entry-content h6 { font-size: 1.1rem; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 1px; margin-top: 20px; margin-bottom: 10px; }

.entry-content p { margin-bottom: 25px; color: #4a5568; }
.entry-content a { color: #0047FF; text-decoration: none; font-weight: 600; border-bottom: 2px solid rgba(0,71,255,0.2); transition: all 0.3s; }
.entry-content a:hover { border-bottom-color: #0047FF; }

.entry-content ul { list-style-type: disc; }
.entry-content ol { list-style-type: decimal; }
.entry-content ul, .entry-content ol { margin-bottom: 25px; padding-left: 30px; color: #4a5568; }
.entry-content li { margin-bottom: 10px; padding-left: 5px; }
.entry-content ul li::marker, .entry-content ol li::marker { color: #0047FF; font-weight: bold; }

.entry-content blockquote {
    background: #f8f9fa;
    border-left: 5px solid #0047FF;
    padding: 30px 40px;
    margin: 40px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    border-radius: 0 10px 10px 0;
}

.entry-content table {
    width: 100%;
    margin: 40px 0;
    border-collapse: separate; /* Permet d'avoir des coins arrondis avec des bordures */
    border-spacing: 0;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 71, 255, 0.05); /* Ombre très subtilement bleutée */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 71, 255, 0.15); /* Contours en bleu très léger */
}
.entry-content th { 
    background: #0047FF; /* En-tête bleu ADN PrestaWeb */
    font-weight: 700; 
    color: #ffffff; 
    padding: 20px 25px; 
    text-align: left; 
    font-size: 16px;
    letter-spacing: 0.5px;
}
.entry-content td { 
    padding: 20px 25px; 
    border-bottom: 1px solid rgba(0, 71, 255, 0.1); /* Séparateurs en bleu ultra léger */
    color: #1a1b3a; 
    font-weight: 500;
}
.entry-content tr:last-child td { 
    border-bottom: none; 
}
.entry-content tbody tr {
    transition: background-color 0.3s ease;
}
.entry-content tbody tr:hover {
    background-color: rgba(0, 71, 255, 0.03); /* Effet de survol bleu très subtil */
}

/* ---------------------------------------------------------
   Layout Article (single.php)
   --------------------------------------------------------- */
.pw-article-layout {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 40px;
    /* align-items: stretch par défaut, indispensable pour que le sticky ait de l'espace pour glisser */
}
.pw-article-main {
    flex: 1;
    min-width: 0;
}
.pw-article-sidebar {
    width: 380px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .pw-article-layout {
        flex-direction: column-reverse;
    }
    .pw-article-sidebar {
        width: 100%;
    }
}

/* ==========================================================================
   ARTICLE PREMIUM TYPOGRAPHY (.pw-premium-content)
   ========================================================================== */

.pw-premium-content p {
    font-size: 18px;
    line-height: 1.85;
    color: #4a5568;
    margin-bottom: 30px;
}

.pw-premium-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1b3a;
    letter-spacing: -0.5px;
    margin-top: 60px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.pw-premium-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1b3a;
    margin-top: 45px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pw-premium-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 35px;
    margin-bottom: 15px;
}

/* Listes à puces élégantes */
.pw-premium-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.pw-premium-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.pw-premium-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #0047FF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,71,255,0.4);
}

.pw-premium-content ol {
    padding-left: 20px;
    margin-bottom: 30px;
}

.pw-premium-content ol li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 600;
}

.pw-premium-content ol li::marker {
    color: #0047FF;
    font-weight: 800;
}

/* Citations Premium */
.pw-premium-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #0047FF;
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 0 20px 20px 0;
    font-size: 20px;
    font-style: italic;
    color: #2d3748;
    line-height: 1.6;
}

.pw-premium-content blockquote p {
    margin-bottom: 0;
    color: inherit;
    font-size: inherit;
}

/* Liens dans le texte */
.pw-premium-content a {
    color: #0047FF;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,71,255,0.2);
    transition: all 0.2s ease;
}

.pw-premium-content a:hover {
    border-bottom-color: #0047FF;
    background: rgba(0,71,255,0.05);
}

/* Images responsives */
.pw-premium-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 30px 0;
}

/* ==========================================================================
   BOUTONS DE CONTACT FLOTTANTS
   ========================================================================== */

.pw-floating-contact-buttons {
    position: fixed;
    right: 25px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.pw-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pw-heartbeat 2.5s infinite;
}

.pw-floating-btn:hover {
    transform: scale(1.15) !important;
    animation: none; /* Pause l'animation au survol */
}

/* Couleurs des boutons */
.pw-floating-sim {
    background: #FF0055; /* Rose/Rouge premium pour l'estimation */
}

.pw-floating-wa {
    background: #25D366; /* Vert WhatsApp */
}

.pw-floating-phone {
    background: #5158F0; /* Bleu Violet (comme sur la capture) */
}

/* Animation "Battement de cœur" */
@keyframes pw-heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .pw-floating-contact-buttons {
        right: 15px;
        bottom: 80px; /* Sur mobile, plutôt en bas pour ne pas cacher le texte */
        top: auto;
        transform: none;
    }
    .pw-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ==========================================================================
   MOBILE & RESPONSIVE OPTIMIZATIONS (iPhone 12/13 Pro & General Mobile)
   ========================================================================== */

/* Global Desktop Reset for Menu Toggle */
.menu-toggle {
    display: none;
}

/* Global Desktop Hide for Mobile Sticky CTA */
.pw-mobile-sticky-cta {
    display: none !important;
}

@media (max-width: 768px) {
    /* Prevent Scrolling When Mobile Menu is Active */
    body.menu-open,
    body:has(.main-navigation.is-active) {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Hide Desktop Call-to-Actions in Header */
    .pw-header-actions {
        display: none !important;
    }

    /* Adjust Header Spacing & Layout */
    .pw-header-container {
        padding: 0 30px !important;
    }

    .pw-main-header {
        padding: 15px 0 !important;
    }

    .pw-main-header.is-sticky {
        padding: 10px 0 !important;
    }

    /* Adjust Logo Height on Mobile */
    .pw-logo {
        height: 42px !important;
    }

    .is-sticky .pw-logo {
        height: 36px !important;
    }

    /* Hamburger Menu Toggle Button */
    .menu-toggle {
        display: block !important;
        background: transparent !important;
        border: none !important;
        color: #050b21 !important; /* Dark blue by default for white headers on internal pages/sticky */
        font-size: 26px !important;
        cursor: pointer;
        padding: 8px !important;
        z-index: 2100 !important; /* Higher than menu drawer */
        transition: color 0.3s ease, transform 0.2s ease;
        line-height: 1;
        outline: none;
    }

    /* Homepage Hero (before scroll, closed menu): toggle must be white */
    .home .pw-main-header:not(.is-sticky):not(.menu-open) .menu-toggle {
        color: #ffffff !important;
    }

    /* Force hamburger color to white when the dark mobile drawer is active */
    body.menu-open .menu-toggle,
    .menu-toggle[aria-expanded="true"] {
        color: #ffffff !important;
        position: fixed !important;
        right: 20px !important;
        top: 15px !important;
    }

    /* Navigation Drawer (Full Screen Glassmorphism) */
    .pw-main-nav.main-navigation {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(5, 11, 33, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        z-index: 2000 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 90px 24px 40px !important;
        overflow-y: auto !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }

    .pw-main-nav.main-navigation.is-active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Navigation Links inside Drawer */
    .pw-nav-list {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        align-items: center !important;
        padding: 0 0 40px 0 !important;
    }

    .pw-nav-list li {
        width: 100% !important;
        text-align: center !important;
        position: relative !important;
    }

    .pw-nav-list a {
        color: #ffffff !important; /* Force white text */
        font-size: 19px !important;
        font-weight: 700 !important;
        padding: 10px 0 !important;
        display: inline-block !important;
        border-bottom: 2px solid transparent;
        transition: color 0.3s ease;
    }

    .pw-nav-list a:hover {
        color: #FF005C !important;
    }

    /* Dropdown / Submenus on Mobile */
    .pw-nav-list .sub-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        min-width: 100% !important;
        margin-top: 8px !important;
        padding: 8px 0 !important;
        display: none !important;
        flex-direction: column !important;
    }

    .pw-nav-list .sub-menu a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        padding: 8px 20px !important;
        text-align: center !important;
    }

    /* Mega Menu on Mobile (Structured tree) */
    .pw-nav-list .pw-mega-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 0 !important;
        visibility: hidden !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        padding: 15px !important;
        margin-top: 10px !important;
        display: none !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* Collapsible Menu Interactions */
    .pw-nav-list li.is-open > .sub-menu,
    .pw-nav-list li.is-open > .pw-mega-menu {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: pw-menu-slide-down 0.25s ease-out forwards !important;
    }

    .pw-nav-list li.is-open > a .pw-menu-arrow {
        transform: rotate(180deg) !important;
        color: #FF005C !important;
    }

    @keyframes pw-menu-slide-down {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pw-mega-services {
        width: 100% !important;
        background: transparent !important;
        padding: 0 !important;
        gap: 8px !important;
    }

    .pw-mega-service-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 8px 12px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border-radius: 8px !important;
        text-align: left !important;
    }

    .pw-mega-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
        background: #0047FF !important;
    }

    .pw-mega-info .pw-mega-h5 {
        font-size: 14px !important;
        color: #ffffff !important;
    }

    .pw-mega-tarifs {
        margin-top: 10px !important;
        padding-left: 0 !important;
        font-size: 13px !important;
        justify-content: center !important;
        color: #0047FF !important;
    }

    .pw-mega-solutions {
        width: 100% !important;
        background: transparent !important;
        padding: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-top: 15px !important;
    }

    .pw-mega-solutions .pw-mega-h4 {
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.4) !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .pw-mega-solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .pw-mega-solutions-grid a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 13px !important;
        justify-content: center !important;
        padding: 6px 0 !important;
    }

    .pw-mega-footer {
        display: none !important; /* Hide mega menu contact footer inside drawer */
    }

    /* Hero Section Mobile Polish */
    .hero-body {
        padding: 90px 10px 180px !important;
    }

    .hero-body h1 {
        font-size: 32px !important;
        line-height: 1.25 !important;
        margin-bottom: 20px !important;
        letter-spacing: -0.5px !important;
    }

    .hero-body p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }

    .hero-btns-avrios {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto 30px !important;
    }

    /* Expand Hero CTA Buttons to Full Width */
    .hero-btns-avrios a, 
    .hero-btns-avrios button,
    .pw-btn-estimate-premium,
    .btn-outline-avrios {
        width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    /* Adjust padding of second Hero button to match */
    .hero-btns-avrios .btn-outline-avrios {
        padding: 12px 20px !important;
        border-radius: 16px !important;
        justify-content: center !important; /* Center text for simple outline button */
        text-align: center !important;
        display: block !important;
    }

    .hero-btns-avrios .btn-outline-avrios span {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .hero-btns-avrios .btn-outline-avrios span:first-child {
        font-size: 17px !important;
    }

    .hero-btns-avrios .btn-outline-avrios span:last-child {
        font-size: 12px !important;
        margin-top: 2px !important;
    }

    .hero-reassurance-avrios {
        font-size: 13px !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    /* Expertise Tabs Card Mobile Polish */
    .tabs-card-avrios {
        margin-top: -140px !important;
        border-radius: 20px !important;
    }

    /* Horizontal scroll for Tabs List */
    .tabs-list {
        overflow-x: auto !important;
        white-space: nowrap !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
        border-bottom: 1px solid #eee !important;
    }

    .tabs-list::-webkit-scrollbar {
        display: none !important; /* Chrome, Safari, Opera */
    }

    .tab-btn-avrios {
        flex: 0 0 auto !important;
        padding: 16px 20px !important;
        font-size: 14px !important;
        display: inline-block !important;
    }

    .tab-content-area {
        padding: 24px 16px !important;
    }

    .tab-grid-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .tab-text-content h2 {
        font-size: 22px !important;
        line-height: 1.25 !important;
        margin-bottom: 15px !important;
    }

    .service-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    .service-mini-card {
        padding: 16px !important;
        gap: 12px !important;
    }

    .card-icon {
        font-size: 26px !important;
    }

    .service-mini-card h4 {
        font-size: 16px !important;
    }

    .service-mini-card p {
        font-size: 13px !important;
    }

    .tab-illustration-premium {
        min-height: auto !important;
        padding: 15px !important;
        border-radius: 20px !important;
    }

    /* Pourquoi Choisir Section Mobile Polish */
    .problems-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .problems-visual {
        height: 380px !important;
        margin-top: 20px !important;
    }

    .pill {
        padding: 6px 12px !important;
        font-size: 11px !important;
        border-radius: 8px !important;
    }

    /* Success Wall Section Mobile Polish */
    .success-wall-container {
        margin-top: 25px !important;
    }

    .success-wall-container::before,
    .success-wall-container::after {
        width: 30px !important;
    }

    .wall-row {
        gap: 15px !important;
    }

    /* Pricing Section Mobile Polish */
    .prestaweb-pricing-section {
        padding: 50px 0 !important;
    }

    .prestaweb-pricing-section h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    .prestaweb-pricing-card {
        padding: 30px 20px !important;
        border-radius: 24px !important;
    }

    /* SaaS showcase Mobile Spacing */
    .pw-saas-showcase-section {
        padding: 50px 0 !important;
    }

    .pw-avrios-card {
        padding: 40px 20px !important;
        border-radius: 24px !important;
        min-height: auto !important;
    }

    .pw-avrios-content h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    /* Footer Mobile Polish */
    .prestaweb-footer-card-left, 
    .prestaweb-footer-card-right {
        padding: 40px 20px !important;
        border-radius: 24px !important;
    }

    .prestaweb-footer-card-left h2,
    .prestaweb-footer-card-right h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    /* Mobile H2 Heading Typography Polish */
    h2,
    .pw-main-title,
    .title-v4,
    .pw-pricing-main-title,
    .pw-blog-header h2,
    .pw-faq-header h2,
    .pw-testimonials-header h2,
    .cta-text-side h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
    }

    /* Hero Button Pulse & Secondary Button Subtitle Hide */
    .hero-body .pw-btn-estimate-premium {
        animation: pw-btn-pulse 2.5s infinite !important;
    }
    .hero-btns-avrios .btn-outline-avrios span:last-child {
        display: none !important;
    }
    
    @keyframes pw-btn-pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.4);
        }
        70% {
            box-shadow: 0 0 0 12px rgba(255, 0, 85, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
        }
    }

    /* Sticky Bottom CTA Bar (Mobile Only) */
    .pw-mobile-sticky-cta {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: auto !important;
        margin: 0 !important;
        background: rgba(5, 11, 33, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        z-index: 9998 !important;
        box-sizing: border-box !important;
        transform: translateY(100%) !important;
        opacity: 0 !important;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease !important;
    }
    
    .pw-mobile-sticky-cta.is-visible {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .pw-mobile-cta-btn {
        flex: 1 1 0% !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: calc(45% - 8px) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        height: 48px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        white-space: nowrap !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    
    .pw-mobile-cta-phone {
        background: transparent !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        color: #ffffff !important;
    }
    
    .pw-mobile-cta-phone:active {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .pw-mobile-cta-sim {
        background: linear-gradient(135deg, #FF0055 0%, #FF0077 100%) !important;
        color: #ffffff !important;
        border: none !important;
        animation: pw-cta-shimmer 3s infinite alternate !important;
    }
    
    .pw-mobile-cta-sim:active {
        transform: scale(0.97) !important;
    }
    
    .pw-mobile-cta-btn svg {
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0 !important;
    }
    
    @keyframes pw-cta-shimmer {
        0% { box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3); }
        50% { box-shadow: 0 4px 25px rgba(255, 0, 85, 0.6); }
        100% { box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3); }
    }
    
    /* Floating contact buttons mobile reset: hide simulator and phone, keep WhatsApp above sticky cta */
    .pw-floating-sim,
    .pw-floating-phone {
        display: none !important;
    }
    
    .pw-floating-contact-buttons {
        right: 40px !important;
        bottom: calc(87px + env(safe-area-inset-bottom)) !important;
        top: auto !important;
        transform: none !important;
        gap: 0 !important;
        z-index: 9999 !important;
    }
    
    .pw-floating-wa {
        display: flex !important;
        bottom: 0 !important;
        position: relative !important;
    }

    /* Gradient Mask for Horizontal Scrolls */
    .tabs-list {
        mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
    }

    /* Why Choose Section Badges Mobile Calibration */
    .problems-visual {
        height: 280px !important;
        margin-top: 20px !important;
    }
    .pill-1 { bottom: 170px !important; left: 5% !important; }
    .pill-2 { bottom: 190px !important; left: 40% !important; }
    .pill-3 { bottom: 130px !important; left: 2% !important; }
    .pill-4 { bottom: 140px !important; left: 38% !important; }
    .pill-5 { bottom: 115px !important; left: 62% !important; }
    .pill-6 { bottom: 75px !important; left: 10% !important; }
    .pill-7 { bottom: 85px !important; left: 45% !important; }
    .pill-8 { bottom: 65px !important; left: 65% !important; }
    .pill-9 { bottom: 15px !important; left: 18% !important; }
    .pill-10 { bottom: 25px !important; left: 52% !important; }
    .pill-11 { bottom: 105px !important; left: 15% !important; }

    /* Testimonials Grid to Horizontal Carrousel on Mobile */
    .pw-testimonials-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        padding: 10px 20px 30px 20px !important;
        margin: 0 -20px !important;
        scrollbar-width: none !important;
        mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
    }
    
    .pw-testimonials-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .pw-testimonial-card {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        box-sizing: border-box !important;
        padding: 30px 24px !important;
    }

    /* Section Paddings & Spacings Mobile Optimization */
    .problems-section-avrios,
    .approach-section-avrios,
    .pw-saas-showcase-section,
    .pw-blog-section,
    .pw-testimonials-section,
    .pw-faq-section,
    .trust-section-parallax {
        padding: 45px 0 !important;
    }
    
    .pw-blog-header,
    .pw-testimonials-header,
    .pw-faq-header,
    .approach-header-v4 {
        margin-bottom: 30px !important;
    }

    /* ==========================================================================
       PARENT & CHILD SERVICE PAGES OPTIMIZATIONS
       ========================================================================== */
    
    /* Service Hero Section Mobile Calibration */
    .service-hero-section {
        padding: 90px 16px 30px !important;
    }
    
    .service-hero-section h1 {
        font-size: 30px !important;
        line-height: 1.25 !important;
        margin-bottom: 20px !important;
        letter-spacing: -0.5px !important;
    }
    
    .service-hero-section p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }
    
    .service-hero-section .pw-breadcrumbs-wrapper {
        margin-bottom: 16px !important;
        font-size: 12px !important;
    }
    
    .service-hero-section div:has(> .pw-reviews-capsule) {
        margin-top: 24px !important;
    }

    .pw-reviews-capsule {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        border-radius: 20px !important;
        padding: 14px 20px !important;
        gap: 12px !important;
    }
    
    .pw-capsule-divider {
        display: none !important;
    }
    
    /* Parent Template: Sub-services Grid (.pw-children-grid-section) */
    .pw-children-grid-section {
        padding: 30px 12px 40px !important;
    }
    
    .pw-children-grid-section > div {
        padding: 40px 20px !important;
        border-radius: 24px !important;
    }
    
    .pw-children-grid-section > div > div:first-child {
        margin-bottom: 30px !important;
    }
    
    .pw-children-grid-section > div > div:first-child span {
        font-size: 11px !important;
        letter-spacing: 0.8px !important;
    }
    
    .pw-children-grid-section > div > div:first-child h2 {
        font-size: 22px !important;
        margin-top: 8px !important;
        line-height: 1.25 !important;
    }
    
    .services-grid-wrapper {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .service-child-card {
        padding: 30px 20px !important;
    }
    
    .service-child-card span {
        margin-bottom: 16px !important;
    }
    
    .service-child-card svg {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 12px !important;
    }
    
    .service-child-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .service-child-card p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    
    /* Child Template: Unique Pricing Section (.unique-pricing-section) */
    .unique-pricing-section {
        padding: 45px 16px !important;
    }
    
    .unique-pricing-section div[style*="margin-bottom: 60px"] {
        margin-bottom: 24px !important;
    }
    
    .unique-pricing-section h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
    }
    
    .unique-pricing-section p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .unique-pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .unique-pricing-card {
        padding: 30px 20px !important;
        border-radius: 24px !important;
    }
    
    .unique-pricing-card h3 {
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }
    
    .unique-pricing-card p {
        margin-bottom: 24px !important;
        font-size: 14px !important;
    }
    
    .unique-pricing-card .price-container {
        margin-bottom: 24px !important;
    }
    
    .unique-pricing-card .price-container div:first-child {
        font-size: 36px !important;
    }
    
    .unique-pricing-card .price-container div:last-child {
        font-size: 15px !important;
        margin-top: 6px !important;
    }
    
    .unique-pricing-card .unique-pricing-btn {
        padding: 14px 16px !important;
        font-size: 16px !important;
        border-radius: 14px !important;
    }
    
    .unique-pricing-card div[style*="margin-top: 40px"] {
        margin-top: 24px !important;
    }
    
    .unique-pricing-options-side h3 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .unique-pricing-options-list {
        gap: 12px !important;
    }
    
    .unique-option-row {
        padding: 14px 16px !important;
        border-radius: 12px !important;
        gap: 14px !important;
    }
    
    .unique-option-row > div:first-child {
        width: 28px !important;
        height: 28px !important;
    }
    
    .unique-option-row > div:first-child svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .unique-option-row h4 {
        font-size: 15px !important;
    }
    
    .unique-option-row p {
        font-size: 13px !important;
        margin-top: 4px !important;
    }
    
    /* Child Template: Intro Section (.service-intro-section) */
    .service-intro-section {
        padding: 45px 16px !important;
    }
    
    .service-intro-section .container-avrios {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-intro-section h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    
    .service-intro-section .pw-intro-rich-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* Child Template: Benefits Section (.service-benefits-section) */
    .service-benefits-section {
        padding: 45px 16px !important;
    }
    
    .service-benefits-section h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    
    .service-benefits-section div[style*="margin-bottom: 60px"] {
        margin-bottom: 24px !important;
    }
    
    .service-benefits-section .container-avrios > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .benefit-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }
    
    .benefit-card > div:first-child {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        margin-bottom: 16px !important;
        border-radius: 10px !important;
    }
    
    .benefit-card h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
    .benefit-card p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    /* Profiles Section Mobile Calibration */
    .premium-profiles-section {
        padding: 45px 16px !important;
    }
    .premium-profiles-section div[style*="margin-bottom: 70px"] {
        margin-bottom: 24px !important;
    }
    .premium-profiles-section h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .premium-profiles-section p[style*="font-size: 16px"] {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    .profiles-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .profile-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }
    .profile-icon-wrapper {
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px !important;
        margin-bottom: 16px !important;
    }
    .profile-icon-wrapper svg {
        width: 20px !important;
        height: 20px !important;
    }
    .profile-card-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .profile-card p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    /* FAQ Section Mobile Calibration */
    .pw-faq-section {
        padding: 45px 16px !important;
    }
    .pw-faq-question {
        padding: 16px 18px !important;
    }
    .pw-faq-answer {
        padding: 0 18px !important;
    }

    /* Comparison Section Mobile Calibration */
    .premium-comparison-section {
        padding: 45px 16px !important;
    }
    .premium-comparison-section div[style*="margin-bottom: 70px"] {
        margin-bottom: 24px !important;
    }
    .comp-col-sans,
    .comp-col-avec {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }
    .comp-col-sans h3,
    .comp-col-avec h3 {
        font-size: 20px !important;
    }

    /* Maintenance Section Mobile Calibration */
    .premium-maintenance-section {
        padding: 30px 12px 40px !important;
    }
    .premium-maintenance-section > div {
        padding: 30px 16px !important;
        border-radius: 24px !important;
    }
    .maint-feature-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    /* Pricing Grid Section Mobile Calibration */
    .premium-pricing-section {
        padding: 45px 16px !important;
    }
    .premium-pricing-section div[style*="margin-bottom: 70px"] {
        margin-bottom: 24px !important;
    }
    .pricing-card {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }
    .pricing-card h3 {
        font-size: 18px !important;
    }

    /* Why Choose Us Section Mobile Calibration */
    .premium-why-us-section .container-why-wide {
        padding: 45px 16px !important;
        gap: 30px !important;
        flex-direction: column !important;
    }
    .why-us-left-col {
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
    }
    .why-us-right-col {
        width: 100% !important;
        gap: 16px !important;
    }
    .why-us-card {
        padding: 24px 16px !important;
        gap: 16px !important;
        border-radius: 16px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .why-us-icon-wrap {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
    }
    .why-us-icon-wrap svg {
        width: 20px !important;
        height: 20px !important;
    }
    .why-us-card h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
    }
    .why-us-card p {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
    }
    .why-us-left-col h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .why-us-left-col p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    /* Related Services Section Mobile Calibration */
    .pw-related-services-section {
        padding: 45px 16px !important;
    }
    .pw-related-services-section div[style*="margin-bottom: 60px"] {
        margin-bottom: 24px !important;
    }
    .pw-related-services-section h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .pw-related-services-section p[style*="font-size: 16px"] {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    .related-services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .related-service-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }
    .related-service-card svg {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 12px !important;
    }
    .related-service-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    .related-service-card p {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    /* SEO Natural Linking Section Mobile Calibration */
    .premium-seo-linking-section {
        padding: 45px 0 !important;
    }
    .premium-seo-linking-section div[style*="margin-bottom: 85px"] {
        margin-bottom: 24px !important;
    }
    .premium-seo-linking-section h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .premium-seo-linking-section p[style*="font-size: 16px"] {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    .seo-linking-grid {
        gap: 24px !important;
    }
    .seo-link-item {
        padding: 20px 16px !important;
        gap: 16px !important;
        border-radius: 16px !important;
    }
    .seo-link-icon {
        width: 34px !important;
        height: 34px !important;
    }
    .seo-link-icon svg {
        width: 14px !important;
        height: 14px !important;
    }
    .seo-link-item h3 {
        font-size: 17px !important;
        margin-bottom: 6px !important;
    }
    .seo-link-item p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    .phone-column {
        display: none !important;
    }

    /* Local Cities Linking Section Mobile Calibration */
    .premium-local-linking-section {
        padding: 45px 0 !important;
    }
    .local-header-grid {
        gap: 24px !important;
        margin-bottom: 30px !important;
        flex-direction: column !important;
    }
    .local-intro-block h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .local-intro-block p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    .local-banner-box {
        padding: 20px 16px !important;
        border-radius: 16px !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .local-banner-box svg {
        width: 22px !important;
        height: 22px !important;
    }
    .local-banner-box div[style*="width: 60px"] {
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px !important;
    }
    .local-banner-box h3 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    .local-banner-box p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    .local-cities-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .local-city-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }
    .local-icon-wrap {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
        margin-bottom: 16px !important;
    }
    .local-icon-wrap svg {
        width: 20px !important;
        height: 20px !important;
    }
    .local-card-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .local-city-card p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}


@media (max-width: 480px) {
    /* Narrow Screens specific adjustments */
    .hero-body h1 {
        font-size: 28px !important;
    }

    .problems-title {
        font-size: 22px !important;
    }

    .pw-btn-estimate-title {
        font-size: 16px !important;
    }

    .pw-btn-estimate-subtitle {
        font-size: 11px !important;
    }

    .pw-btn-estimate-icon {
        width: 38px !important;
        height: 38px !important;
        margin-left: 8px !important;
    }

    .pw-btn-estimate-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Narrow screens adjustments for templates */
    .service-hero-section h1 {
        font-size: 26px !important;
    }
    
    .pw-children-grid-section > div {
        padding: 30px 16px !important;
    }
    
    .unique-pricing-card {
        padding: 24px 16px !important;
    }
    
    .unique-pricing-card h3 {
        font-size: 18px !important;
    }
    
    .unique-pricing-card .price-container div:first-child {
        font-size: 30px !important;
    }

    /* Narrow screen adjustments for standard sections */
    .comp-col-sans,
    .comp-col-avec {
        padding: 20px 14px !important;
    }

    .premium-maintenance-section > div {
        padding: 24px 14px !important;
    }
    .maint-feature-card {
        padding: 16px !important;
    }

    .pricing-card {
        padding: 20px 14px !important;
    }

    .pw-faq-question {
        padding: 14px 16px !important;
    }
    .pw-faq-answer {
        padding: 0 16px !important;
    }

    /* Narrow screens adjustments for additional sections */
    .why-us-card {
        padding: 20px 12px !important;
    }
    .related-service-card {
        padding: 20px 14px !important;
    }
    .seo-link-item {
        padding: 16px 12px !important;
    }
    .local-city-card {
        padding: 20px 14px !important;
    }

    /* Narrow screen sticky bottom CTA calibration */
    .pw-mobile-sticky-cta {
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) 12px !important;
        gap: 8px !important;
    }
    .pw-mobile-cta-btn {
        font-size: 12px !important;
        gap: 6px !important;
        height: 46px !important;
        padding: 0 6px !important;
        max-width: calc(45% - 8px) !important;
    }
    .pw-mobile-cta-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    .pw-floating-contact-buttons {
        bottom: calc(180px + env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 360px) {
    .pw-mobile-sticky-cta {
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom)) 8px !important;
        gap: 6px !important;
    }
    .pw-mobile-cta-btn {
        font-size: 11px !important;
        gap: 4px !important;
        height: 44px !important;
        padding: 0 4px !important;
        max-width: calc(43% - 8px) !important;
    }
    .pw-mobile-cta-btn svg {
        width: 12px !important;
        height: 12px !important;
    }
    .pw-floating-contact-buttons {
        bottom: calc(180px + env(safe-area-inset-bottom)) !important;
    }
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE CALIBRATIONS & OVERFLOW PROTECTIONS
   ========================================================================== */

html {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    /* 1. Ensure breadcrumbs are not covered by fixed header on service templates */
    .service-hero-section {
        padding: 135px 16px 30px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    /* 2. Adjust Proximity map card padding to prevent mobile layout crowding */
    .pw-proximity-map-card {
        padding: 30px 20px !important;
        border-radius: 24px !important;
    }

    /* 3. Fix 3D Phone mockup container width to prevent horizontal overflow */
    .phone-perspective-container {
        width: 100% !important;
        max-width: 300px !important;
        height: 600px !important;
        margin: 0 auto !important;
    }

    /* 4. Enforce single column grids on mobile for grids that lack custom overrides */
    .service-intro-section .container-avrios {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .service-benefits-section .container-avrios > div {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .pw-included-grid,
    .pw-portfolio-grid,
    .pw-reviews-grid,
    .pw-types-grid,
    .pw-silo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 360px) {
    /* 5. Scale down the 3D phone mockup further on extremely narrow viewports */
    .phone-perspective-container {
        max-width: 260px !important;
        height: 520px !important;
    }
}

/* 6. Enforce overflow: hidden on sections with absolute elements to prevent horizontal scroll leaks */
.premium-why-us-section,
.pw-faq-section,
.pw-related-services-section,
.pw-site-reviews-section,
.pw-site-types-section,
.pw-site-portfolio-section,
.pw-site-included-section,
.premium-local-linking-section,
.premium-pricing-section,
.premium-profiles-section,
.premium-seo-linking-section,
.premium-comparison-section,
.service-benefits-section,
.pw-children-grid-section,
.pw-method,
.pw-final-cta-section,
.premium-maintenance-section {
    overflow: hidden !important;
}

@media (max-width: 1024px) {
    /* Prevent overflow on mobile/tablet for unique pricing section while maintaining desktop sticky behavior */
    .unique-pricing-section {
        overflow: hidden !important;
    }
}

/* ==========================================================================
   BLOG & SINGLE ARTICLES RESPONSIVE OPTIMIZATIONS
   ========================================================================== */

@media (max-width: 768px) {
    /* 1. Header of category and blog index */
    .page-header {
        padding: 30px 20px !important;
        border-radius: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .page-header h1.page-title {
        font-size: 26px !important;
        margin-bottom: 15px !important;
        letter-spacing: -0.5px !important;
        line-height: 1.25 !important;
    }
    
    .page-header .archive-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* 2. Container and article cards padding */
    .pw-custom-page-content .container-avrios {
        padding: 0 16px !important;
    }
    
    .pw-custom-page-content article {
        padding: 30px 20px !important;
        border-radius: 24px !important;
        margin-bottom: 20px !important;
    }
    
    /* 3. Title of articles (single / page) */
    .entry-header h1.entry-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.5px !important;
    }

    .entry-content {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    /* 4. Enforce single column grid and hide CTA cards in silo grid */
    .pw-silo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .pw-silo-card {
        border-radius: 16px !important;
    }

    .pw-silo-card div[style*="padding: 40px"] {
        padding: 24px 20px !important;
    }

    .pw-silo-card h2.entry-title {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    .pw-silo-card .entry-summary {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    /* Disable/Hide CTA cards in grid layout on mobile */
    .pw-cta-card {
        display: none !important;
    }

    /* 5. Sub-categories navigation siloing */
    .pw-silo-navigation {
        margin-top: 25px !important;
        padding-top: 25px !important;
        gap: 10px !important;
    }
    
    .pw-silo-navigation a {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

/* 6. Entry content image and table safety wraps */
.entry-content img {
    max-width: 100% !important;
    height: auto !important;
}

.entry-content table {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    overflow-x: auto !important;
}




