/* --- VARIABLES ET BASES --- */
:root {
    --blue-protect: #5AC8FA;
    --azzera-gray: #4c4c4c; 
    --apple-black: #4c4c4c; 
    --navy-black: #4c4c4c;  
    --apple-gray: #86868b;
    --apple-bg-light: #fafafa;
    --white: #ffffff;
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-titles: 'Montserrat', sans-serif;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-mid: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    color: var(--apple-black);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

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

section {
    scroll-margin-top: 90px;
    position: relative;
}

/* --- TYPOGRAPHIES & TITRES MODERNES --- */
.modern-heading {
    text-align: center;
    margin-bottom: 60px;
}

.heading-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-protect);
    margin-bottom: 8px;
}

.section-heading, .section-title {
    font-family: var(--font-titles);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--apple-black);
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

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

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* --- NAVIGATION CORPORATE --- */
.topbar-corporate {
    background: var(--azzera-gray); 
    padding: 12px 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.topbar-flex {
    display: flex;
    justify-content: center;
}

.topbar-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.topbar-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-mid);
}

.topbar-links a:hover, .topbar-links a.active {
    color: var(--blue-protect);
}

/* --- HEADER PRINCIPAL --- */
.main-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.header-flex {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -1px;
}

.logo span {
    color: var(--blue-protect);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--apple-black);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-mid);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--blue-protect);
}

.btn-contact-nav {
    background: var(--apple-black);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

/* --- HERO SECTIONS --- */
.hero-section {
    height: 95vh; 
    background-color: var(--azzera-gray); 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.internal-hero {
    height: 45vh;
    background: var(--azzera-gray); 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video-wrapper video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(76, 76, 76, 0.6); 
    z-index: 2;
}

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

.hero-title {
    font-family: var(--font-titles);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 300;
    color: #f0f0f0;
}

/* --- CIBLAGE CLIENT --- */
.hero-target-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.target-label {
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.target-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-target {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-mid);
}

.btn-target i {
    color: var(--blue-protect); 
    font-size: 18px;
    transition: var(--transition-mid);
}

.btn-target:hover {
    background: var(--white); 
    color: var(--apple-black); 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 20px rgba(90, 200, 250, 0.3); 
    border-color: var(--white);
}

/* --- STATS SECTION --- */
.stats-section {
    background: var(--azzera-gray); 
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    z-index: 1;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 20px;
    transition: var(--transition-mid);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(90, 200, 250, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 25px rgba(90, 200, 250, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-titles);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 900;
    color: var(--blue-protect);
    margin-bottom: 10px;
    transition: var(--transition-mid);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(90, 200, 250, 0.5);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e0e0e0;
    transition: var(--transition-mid);
}

.stat-item:hover .stat-label {
    color: var(--white);
}

/* --- SERVICES CARDS --- */
.services-section {
    padding: 100px 0;
    background: linear-gradient(var(--white), var(--apple-bg-light));
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    transition: var(--transition-mid);
    border: 1px solid rgba(0,0,0,0.02);
    flex: 1 1 320px;
    max-width: 370px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-color: rgba(90, 200, 250, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--blue-protect);
    transition: var(--transition-mid);
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.service-card p {
    color: var(--apple-gray);
    font-size: 16px;
    line-height: 1.5;
}

/* --- TEAM SECTION (LÀ OÙ SE TROUVE LE CORRECTIF) --- */
.team-section {
    padding: 100px 0;
    background: var(--apple-bg-light);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 28px;
    transition: var(--transition-mid);
    border: 1px solid rgba(0,0,0,0.03);
    flex: 1 1 280px;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: rgba(90, 200, 250, 0.2);
}

/* --- CORRECTIF IMAGE ÉQUIPE --- */
.team-photo-wrapper {
    width: 160px; /* Taille fixe du cercle */
    height: 160px; /* Taille fixe du cercle */
    margin: 0 auto 25px auto;
    border-radius: 50%; /* Force la forme ronde */
    overflow: hidden; /* COUPE tout ce qui dépasse du cercle ! */
    border: 4px solid var(--apple-bg-light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    background-color: #f0f0f0; /* Fond neutre au cas où */
}

/* Force l'image à se recadrer dans le cercle */
.team-photo-wrapper img, .team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* C'est cette ligne qui empêche la déformation */
    object-position: top; /* Centre l'image sur le haut (le visage) */
    display: block;
}
/* --------------------------------- */

.team-card h4, .team-name {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--apple-black);
}

.team-card .team-title {
    color: var(--blue-protect);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card .team-desc {
    color: var(--apple-gray);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

/* ==========================================
   SECTION AVIS CLIENTS GOOGLE
   ========================================== */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--apple-bg-light);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.01);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(90, 200, 250, 0.2);
}

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

.review-avatar-text {
    width: 44px;
    height: 44px;
    background: var(--azzera-gray);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.review-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--apple-black);
}

.review-date {
    font-size: 12px;
    color: var(--apple-gray);
    display: block;
}

.review-google-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ea4335; 
    font-size: 18px;
}

.review-stars {
    color: #fbbc05; 
    font-size: 13px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    color: #4c4c4c;
    line-height: 1.6;
    font-style: italic;
}

/* --- PAGE DÉTAIL DES SERVICES --- */
.detailed-services { padding: 100px 0; background: var(--apple-bg-light); }
.service-row { display: flex; align-items: center; gap: 80px; margin-bottom: 120px; }
.service-row.reverse { flex-direction: row-reverse; }
.service-text { flex: 1; }
.service-text h3 { font-family: var(--font-titles); font-size: 36px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.service-text p { color: var(--apple-gray); font-size: 18px; line-height: 1.7; margin-bottom: 30px; }
.service-list { list-style: none; }
.service-list li { font-size: 16px; font-weight: 500; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.service-list i { color: var(--blue-protect); font-size: 20px; }
.service-visual { flex: 1; display: flex; justify-content: center; }
.visual-glass { width: 380px; height: 380px; background: var(--white); border-radius: 40px; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 60px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.03); transition: var(--transition-slow); }
.visual-glass i { font-size: 120px; color: var(--blue-protect); transition: var(--transition-mid); }
.service-row:hover .visual-glass { transform: translateY(-15px); box-shadow: 0 30px 70px rgba(90, 200, 250, 0.15); }
.service-row:hover .visual-glass i { transform: scale(1.1); }
.cta-banner { background: var(--blue-protect); padding: 80px 0; color: var(--white); text-align: center; }
.cta-banner h2 { font-family: var(--font-titles); font-size: 36px; margin-bottom: 15px; }
.cta-banner p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }
.btn-primary { display: inline-block; background: var(--apple-black); color: var(--white); padding: 16px 40px; border-radius: 30px; text-decoration: none; font-weight: 700; transition: var(--transition-mid); }
.btn-primary:hover { background: var(--white); color: var(--apple-black); transform: scale(1.05); }

/* --- PARTENAIRES LOGOS --- */
.partners-section { padding: 100px 0; background: var(--white); border-top: 1px solid rgba(0,0,0,0.03); text-align: center; }
.partners-logo-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; margin-top: 40px; }
.partners-logo-grid img { height: auto; max-height: 85px; max-width: 150px; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: var(--transition-mid); }
.partners-logo-grid img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

/* --- CONTACT --- */
.contact-section { padding: 100px 0; }
.contact-card { background: var(--white); border: 1px solid rgba(0,0,0,0.02); border-radius: 28px; padding: 60px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 40px rgba(0,0,0,0.01); }
.contact-info h3 { font-size: 30px; margin-bottom: 15px; font-weight: 700; letter-spacing: -0.5px; }
.emergency-cta { text-align: right; }
.emergency-label { font-weight: 700; color: var(--apple-gray); margin-bottom: 8px; font-size: 12px; letter-spacing: 1px; }
.btn-emergency { display: inline-block; background: var(--blue-protect); color: white; text-decoration: none; padding: 15px 40px; border-radius: 30px; font-weight: 800; transition: var(--transition-mid); }
.btn-emergency:hover { filter: brightness(1.1); transform: scale(1.05); box-shadow: 0 5px 20px rgba(90, 200, 250, 0.3); }

/* --- RÉSEAUX SOCIAUX --- */
.social-bar { background-color: var(--blue-protect); padding: 40px 0; text-align: center; }
.social-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border: 2px solid var(--white); border-radius: 50%; color: var(--white); font-size: 20px; text-decoration: none; transition: var(--transition-fast); }
.social-icons a:hover { background-color: var(--white); color: var(--blue-protect); transform: translateY(-5px); }

/* --- FOOTER & COMPLIANCE --- */
.legal-compliance { background: #1d1d1f; color: var(--white); padding: 60px 0 40px 0; text-align: center; }
.official-badge-container { display: flex; justify-content: center; margin-bottom: 40px; }
.official-badge { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 25px 30px; display: flex; align-items: center; gap: 25px; max-width: 850px; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: var(--transition-mid); }
.official-badge:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(90, 200, 250, 0.4); background: rgba(255, 255, 255, 0.06); }
.badge-icon { font-size: 40px; color: var(--blue-protect); transition: var(--transition-mid); }
.official-badge:hover .badge-icon { transform: scale(1.15); filter: brightness(1.2); }
.badge-title { font-family: var(--font-titles); color: var(--white); font-weight: 700; font-size: 14px; margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-numbers { color: #e5e5e7; font-size: 14px; margin-bottom: 10px; }
.badge-numbers strong { color: var(--blue-protect); }
.badge-content .small-text { color: #6e6e73; font-size: 10px; margin-top: 0; line-height: 1.5; }
.compliance-inner p { color: #6e6e73; font-size: 12px; }

/* ==========================================
   CARROUSEL ÉQUIPE (Page equipe.html)
   ========================================== */
.carousel-section { padding: 80px 0; background: var(--apple-bg-light); }
.carousel-container { position: relative; max-width: 1000px; margin: 0 auto; background: var(--white); border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.06); padding: 60px; border: 1px solid rgba(0,0,0,0.03); }
.carousel-slide { display: none; opacity: 0; transition: opacity 0.5s ease; }
.carousel-slide.fade-in { opacity: 1; }
.carousel-content-wrapper { display: flex; align-items: center; gap: 60px; }
.carousel-image-col { flex: 0 0 350px; display: flex; justify-content: center; }
.carousel-image-col img { width: 300px; height: 400px; object-fit: cover; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); border: 5px solid var(--white); }
.carousel-text-col { flex: 1; }
.carousel-role { color: var(--blue-protect); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.carousel-name { font-family: var(--font-titles); font-size: 42px; font-weight: 800; color: var(--apple-black); margin-bottom: 25px; line-height: 1.1; letter-spacing: -1px; }
.carousel-desc p { color: var(--apple-gray); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.carousel-desc strong { color: var(--apple-black); font-size: 18px; }
.carousel-desc ul { list-style: none; margin-top: 25px; }
.carousel-desc ul li { font-size: 15px; color: var(--apple-black); font-weight: 500; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.carousel-desc ul i { color: var(--blue-protect); font-size: 14px; }
.carousel-btn { cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: var(--white); color: var(--apple-black); border: none; border-radius: 50%; font-size: 18px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: var(--transition-mid); z-index: 10; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: var(--blue-protect); color: var(--white); box-shadow: 0 8px 25px rgba(90, 200, 250, 0.4); }
.prev-btn { left: -25px; } .next-btn { right: -25px; }
.carousel-dots { text-align: center; margin-top: 40px; }
.dot { cursor: pointer; height: 10px; width: 10px; margin: 0 8px; background-color: #d2d2d7; border-radius: 50%; display: inline-block; transition: var(--transition-mid); }
.dot:hover, .dot.active { background-color: var(--blue-protect); transform: scale(1.3); }

/* ==========================================
   LE MOT DU PRÉSIDENT (Page equipe.html)
   ========================================== */
.edito-section { padding: 80px 0 20px 0; background: var(--apple-bg-light); }
.edito-box { max-width: 900px; margin: 0 auto; background: var(--white); padding: 60px 80px; border-radius: 30px; box-shadow: 0 15px 50px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03); position: relative; text-align: center; }
.edito-icon { font-size: 45px; color: rgba(90, 200, 250, 0.2); position: absolute; top: 40px; left: 45px; }
.edito-title { font-family: var(--font-titles); font-size: 26px; font-weight: 800; color: var(--apple-black); margin-bottom: 35px; letter-spacing: -0.5px; }
.edito-content p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 20px; text-align: justify; }
.edito-highlight { font-weight: 600; color: var(--apple-black) !important; font-size: 19px !important; text-align: center !important; margin-top: 30px; }
.edito-signature { margin-top: 40px; border-top: 1px solid #f0f0f0; padding-top: 30px; display: flex; flex-direction: column; align-items: center; }
.edito-signature strong { font-family: var(--font-titles); font-size: 22px; color: var(--apple-black); letter-spacing: -0.5px; }
.edito-signature span { color: var(--blue-protect); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }

/* ==========================================
   PAGE NOS PARTENAIRES (partenaires.html)
   ========================================== */
.partners-page-section { padding: 80px 0 120px 0; background: var(--apple-bg-light); }
.category-title { text-align: center; font-family: var(--font-titles); font-size: 28px; font-weight: 800; color: var(--apple-black); letter-spacing: -0.5px; margin-top: 60px; margin-bottom: 10px; }
.category-title:first-child { margin-top: 0; }
.category-desc { text-align: center; color: var(--apple-gray); max-width: 700px; margin: 0 auto 40px auto; font-size: 16px; line-height: 1.6; }
.divider { height: 1px; background: rgba(0, 0, 0, 0.05); max-width: 400px; margin: 60px auto; }
.testimonial-block { background: var(--white); max-width: 800px; margin: 80px auto 0 auto; padding: 50px 60px; border-radius: 24px; text-align: center; box-shadow: 0 15px 40px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); position: relative; transition: var(--transition-mid); }
.testimonial-block:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(0,0,0,0.06); border-color: rgba(90, 200, 250, 0.2); }
.quote-icon { font-size: 40px; color: rgba(90, 200, 250, 0.2); margin-bottom: 20px; }
.testimonial-text { font-size: 20px; font-style: italic; font-weight: 500; color: var(--apple-black); line-height: 1.6; margin-bottom: 25px; }
.testimonial-author { font-size: 15px; font-weight: 700; color: var(--apple-black); text-transform: uppercase; letter-spacing: 1px; }
.testimonial-author span { color: var(--blue-protect); font-weight: 600; }

/* ==========================================
   ANIMATIONS ET RELIEF - PAGE CONTACT
   ========================================== */
.contact-form-section { padding: 80px 0; background: var(--apple-bg-light); }
.contact-grid-layout { display: flex; gap: 50px; align-items: flex-start; }
.contact-sidebar { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; gap: 20px; align-items: center; background: var(--white); padding: 25px; border-radius: 20px; border: 1px solid transparent; box-shadow: 0 5px 15px rgba(0,0,0,0.02); cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.info-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); border-color: rgba(90, 200, 250, 0.3); }
.info-item:hover i { background: var(--blue-protect); color: var(--white); transform: scale(1.1); transition: all 0.3s ease; }
.info-item i { font-size: 24px; color: var(--blue-protect); background: var(--apple-bg-light); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.info-item h4 { margin-bottom: 5px; font-weight: 700; }
.info-item p { color: var(--apple-gray); font-size: 15px; }
.form-card { flex: 2; background: var(--white); padding: 50px; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.form-card:hover { transform: translateY(-5px); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: var(--apple-black); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px 20px; border-radius: 12px; border: 1px solid #e5e5e7; background: #fbfbfd; font-family: inherit; font-size: 15px; transition: var(--transition-mid); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-protect); background: var(--white); }
.btn-submit { width: 100%; background: var(--azzera-gray); color: var(--white); padding: 18px; border-radius: 12px; border: none; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.btn-submit:hover { filter: brightness(1.1); transform: scale(1.02); box-shadow: 0 10px 20px rgba(90, 200, 250, 0.3); }

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 900px) {
    .carousel-content-wrapper { flex-direction: column; text-align: center; gap: 40px; }
    .carousel-image-col { flex: 1; }
    .carousel-image-col img { height: 300px; width: 250px; }
    .carousel-desc ul li { justify-content: center; }
    .prev-btn { left: 10px; right: auto; } .next-btn { right: 10px; }
    .carousel-container { padding: 40px 20px; }
    .contact-grid-layout { flex-direction: column; }
    .form-card { padding: 30px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .stats-grid, .team-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-card { flex-direction: column; text-align: center; padding: 40px; }
    .emergency-cta { text-align: center; margin-top: 30px; }
    .target-buttons { flex-direction: column; width: 100%; align-items: center; }
    .official-badge { flex-direction: column; text-align: center; padding: 20px; }
    .service-row, .service-row.reverse { flex-direction: column; text-align: center; gap: 40px; }
    .service-list li { justify-content: center; }
    .visual-glass { width: 100%; max-width: 300px; height: 300px; margin: 0 auto; }
    .edito-box { padding: 40px 30px; }
    .edito-icon { top: 25px; left: 25px; font-size: 30px; }
    .edito-content p { text-align: left; }
    .testimonial-block { padding: 40px 30px; }
    .testimonial-text { font-size: 17px; }
}
/* --- EFFET HOVER BLUE AZZERA POUR TOPBAR --- */
.topbar-links a {
    transition: all 0.3s ease !important;
}

.topbar-links a:hover {
    /* Utilise la couleur exacte de ton bleu Azzera ici */
    color: #5AC8FA !important; 
    /* L'effet de lumière (glow) devient de la même couleur que le texte */
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.6); 
}
/* --- MODULE CARTE ÉQUIPE VIDÉO 3D --- */

.team-card {
    background-color: transparent;
    width: 320px; /* Largeur de la carte */
    height: 450px; /* Hauteur de la carte */
    perspective: 1000px; /* Crée l'effet de profondeur 3D */
    margin: 20px auto;
    cursor: pointer;
}

/* Le conteneur interne qui va tourner */
.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
}

/* La classe ajoutée par le Javascript au clic */
.team-card.is-flipped .team-card-inner {
    transform: rotateY(180deg);
}

/* Styles communs aux deux faces */
.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Cache le dos de la face */
    backface-visibility: hidden;
    border-radius: 28px; /* Bords arrondis type Apple */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- FACE AVANT (PHOTO) --- */
.team-card-front {
    background-color: #fff;
}

.team-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Filtre assombri au survol et icône Play */
.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .play-overlay {
    opacity: 1; /* Apparaît quand on passe la souris */
}

.play-overlay i {
    font-size: 50px;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.play-overlay span {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* Bandeau avec le nom en bas de la photo */
.team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px 20px;
    color: white;
    text-align: left;
}

.team-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 13px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FACE ARRIÈRE (VIDÉO) --- */
.team-card-back {
    background-color: #000;
    transform: rotateY(180deg); /* Place cette face à l'envers par défaut */
}

.team-card-back video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* La vidéo remplit toute la carte sans se déformer */
    border-radius: 28px;
}

/* --- RESPONSIVE TOPBAR IDENTIQUE AZZERA SERVICES+ --- */
@media (max-width: 768px) {
    .topbar-links {
        gap: 15px;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .topbar-links a {
        font-size: 9px;
    }
}


/* =========================================================
   HEADER MOBILE COMPLET — ALIGNÉ SUR AZZERA SERVICES+
   La barre corporate reste visible, puis le logo et le menu
   Nos Services / Nos Partenaires / L'Équipe / Contact suivent.
   ========================================================= */
@media (max-width: 768px) {
    .main-header {
        height: auto !important;
        padding: 15px 0;
    }

    .header-flex {
        height: auto !important;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 0 10px;
    }

    .logo {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .logo a {
        flex-direction: column !important;
        gap: 5px !important;
        text-align: center;
    }

    .header-logo,
    .logo img {
        max-height: 60px !important;
        width: auto;
    }

    .logo h1 {
        font-size: 18px;
        margin: 0;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav ul {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 0 0 5px 0;
        margin: 0;
    }

    .main-nav a {
        font-size: 13px;
        white-space: nowrap;
    }

    .btn-contact-nav {
        padding: 7px 16px;
    }
}


/* --- iOS / Safari : neutraliser les liens automatiques bleus --- */
a[href^="tel:"],
a[href^="mailto:"],
a[href^="sms:"],
a[x-apple-data-detectors],
.x-apple-data-detectors,
*[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

/* Les liens restent cliquables, mais sans casser la charte visuelle */
a[href^="tel:"]:hover,
a[href^="mailto:"]:hover,
a[href^="sms:"]:hover {
    color: inherit !important;
    text-decoration: none !important;
}


/* ==========================================
   SENTINELLE PRO — UNIVERS PRODUIT
   ========================================== */
.sentinelle-home-section,
.sentinelle-detail-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(90, 200, 250, 0.18), transparent 34%),
        radial-gradient(circle at 12% 88%, rgba(90, 200, 250, 0.08), transparent 28%),
        linear-gradient(145deg, #111316 0%, #1d2024 52%, #101215 100%);
    color: #fff;
}

.sentinelle-home-section::before,
.sentinelle-detail-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 92%);
}

.sentinelle-home-grid,
.sentinelle-detail-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: 72px;
    align-items: center;
}

.sentinelle-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--blue-protect);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.sentinelle-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue-protect);
    box-shadow: 0 0 16px rgba(90, 200, 250, .55);
}

.sentinelle-title {
    margin: 0 0 20px;
    max-width: 680px;
    font-family: var(--font-titles);
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.7px;
    color: #fff;
}

.sentinelle-title span { color: var(--blue-protect); }

.sentinelle-lead {
    max-width: 660px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.75;
}

.sentinelle-benefit {
    max-width: 650px;
    margin: 0 0 34px;
    padding: 18px 20px;
    border: 1px solid rgba(90, 200, 250, .22);
    border-left: 3px solid var(--blue-protect);
    border-radius: 16px;
    background: rgba(90, 200, 250, .065);
    color: rgba(255,255,255,.92);
    font-weight: 600;
    line-height: 1.55;
}

.sentinelle-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-sentinelle-primary,
.btn-sentinelle-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn-sentinelle-primary {
    background: var(--blue-protect);
    color: #0e1114;
    box-shadow: 0 10px 28px rgba(90, 200, 250, .24);
}

.btn-sentinelle-secondary {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.btn-sentinelle-primary:hover,
.btn-sentinelle-secondary:hover {
    transform: translateY(-2px);
}

.sentinelle-panel {
    position: relative;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    padding: 18px;
    background: rgba(8, 11, 15, .82);
    box-shadow: 0 34px 80px rgba(0,0,0,.36), 0 0 0 1px rgba(90,200,250,.03);
    backdrop-filter: blur(18px);
}

.sentinelle-panel::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(90,200,250,.16), transparent 26%, transparent 74%, rgba(90,200,250,.09));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
}

.sentinelle-windowbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 3px 4px 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.sentinelle-dots { display: flex; gap: 7px; }
.sentinelle-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
}
.sentinelle-window-title {
    color: rgba(255,255,255,.56);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sentinelle-dashboard {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    padding-top: 16px;
}

.sentinelle-sidebar {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.055);
}

.sentinelle-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    font-family: var(--font-titles);
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.sentinelle-brand-badge {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(90,200,250,.12);
    color: var(--blue-protect);
}

.sentinelle-menu-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    margin: 4px 0;
    border-radius: 10px;
    color: rgba(255,255,255,.52);
    font-size: 10px;
    font-weight: 600;
}
.sentinelle-menu-item.active {
    color: #fff;
    background: rgba(90,200,250,.11);
}
.sentinelle-menu-item i { width: 14px; color: var(--blue-protect); }

.sentinelle-main-ui { min-width: 0; }
.sentinelle-ui-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
}
.sentinelle-ui-head h4 {
    margin: 0;
    color: #fff;
    font-size: 14px;
}
.sentinelle-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #aee7ff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.sentinelle-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-protect);
    box-shadow: 0 0 10px rgba(90,200,250,.8);
}

.sentinelle-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 10px;
}
.sentinelle-kpi {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.055);
    background: rgba(255,255,255,.035);
}
.sentinelle-kpi strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
}
.sentinelle-kpi span {
    color: rgba(255,255,255,.42);
    font-size: 8px;
    letter-spacing: .3px;
}

.sentinelle-feed {
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.055);
    background: rgba(255,255,255,.025);
}
.sentinelle-feed-row {
    display: grid;
    grid-template-columns: 48px 28px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    min-height: 46px;
    border-bottom: 1px solid rgba(255,255,255,.055);
}
.sentinelle-feed-row:last-child { border-bottom: 0; }
.sentinelle-feed-time { color: rgba(255,255,255,.36); font-size: 8px; }
.sentinelle-feed-icon {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(90,200,250,.10);
    color: var(--blue-protect);
    font-size: 9px;
}
.sentinelle-feed-text strong {
    display: block;
    color: rgba(255,255,255,.86);
    font-size: 9px;
    margin-bottom: 3px;
}
.sentinelle-feed-text span { color: rgba(255,255,255,.35); font-size: 8px; }
.sentinelle-feed-tag {
    border: 1px solid rgba(90,200,250,.16);
    background: rgba(90,200,250,.07);
    color: #aee7ff;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 7px;
    font-weight: 700;
}

.sentinelle-features-section {
    padding: 105px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f7f8 100%);
}
.sentinelle-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 42px;
}
.sentinelle-feature-card {
    padding: 30px 24px;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.035);
    transition: transform .25s ease, box-shadow .25s ease;
}
.sentinelle-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 50px rgba(0,0,0,.07);
}
.sentinelle-feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgba(90,200,250,.12);
    color: var(--blue-protect);
    font-size: 19px;
}
.sentinelle-feature-card h3,
.sentinelle-feature-card h4 {
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--apple-black);
}
.sentinelle-feature-card p {
    color: var(--apple-gray);
    font-size: 14px;
    line-height: 1.6;
}

.sentinelle-audiences {
    padding: 105px 0;
    background: #fff;
}
.sentinelle-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}
.sentinelle-audience-card {
    padding: 34px;
    border-radius: 26px;
    background: var(--apple-bg-light);
    border: 1px solid rgba(0,0,0,.04);
}
.sentinelle-audience-card .audience-number {
    display: block;
    margin-bottom: 24px;
    color: var(--blue-protect);
    font-family: var(--font-titles);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
}
.sentinelle-audience-card h3 { margin-bottom: 12px; font-size: 22px; }
.sentinelle-audience-card p { color: var(--apple-gray); line-height: 1.7; }

.sentinelle-inline-strip {
    padding: 70px 0;
    background: #f7f8f9;
    border-top: 1px solid rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.03);
}
.sentinelle-inline-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px 34px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.04);
}
.sentinelle-inline-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(90,200,250,.12);
    color: var(--blue-protect);
    font-size: 22px;
}
.sentinelle-inline-card h3 { margin-bottom: 6px; font-size: 22px; }
.sentinelle-inline-card p { margin: 0; color: var(--apple-gray); line-height: 1.6; }
.sentinelle-inline-link {
    white-space: nowrap;
    color: var(--apple-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.sentinelle-inline-link i { margin-left: 7px; color: var(--blue-protect); }

@media (max-width: 980px) {
    .sentinelle-home-grid,
    .sentinelle-detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .sentinelle-panel { max-width: 720px; width: 100%; margin: 0 auto; }
    .sentinelle-features-grid { grid-template-columns: repeat(2, 1fr); }
    .sentinelle-audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .sentinelle-home-section,
    .sentinelle-detail-section,
    .sentinelle-features-section,
    .sentinelle-audiences { padding: 78px 0; }
    .sentinelle-title { font-size: 38px; }
    .sentinelle-lead { font-size: 15px; }
    .sentinelle-actions { align-items: stretch; }
    .btn-sentinelle-primary,
    .btn-sentinelle-secondary { width: 100%; }
    .sentinelle-dashboard { grid-template-columns: 1fr; }
    .sentinelle-sidebar { display: none; }
    .sentinelle-kpis { grid-template-columns: repeat(3, 1fr); }
    .sentinelle-feed-row { grid-template-columns: 43px 26px minmax(0,1fr); }
    .sentinelle-feed-tag { display: none; }
    .sentinelle-features-grid { grid-template-columns: 1fr; }
    .sentinelle-inline-card { grid-template-columns: auto 1fr; padding: 26px 22px; }
    .sentinelle-inline-link { grid-column: 1 / -1; padding-left: 82px; }
}

@media (max-width: 420px) {
    .sentinelle-kpis { gap: 6px; }
    .sentinelle-kpi { padding: 10px 8px; }
    .sentinelle-kpi strong { font-size: 12px; }
    .sentinelle-kpi span { font-size: 7px; }
    .sentinelle-panel { padding: 13px; border-radius: 22px; }
    .sentinelle-inline-card { grid-template-columns: 1fr; text-align: center; }
    .sentinelle-inline-icon { margin: 0 auto; }
    .sentinelle-inline-link { padding-left: 0; }
}


/* ==================================================================
   SENTINELLE PRO — présentation premium / preuves & portail client
   ================================================================== */

.sentinelle-premium-grid {
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
}

.sentinelle-copy { min-width: 0; }

.sentinelle-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: -12px 0 30px;
}
.sentinelle-proof-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 700;
}
.sentinelle-proof-row i { color: var(--blue-protect); }

.sentinelle-real-product,
.sentinelle-login-frame {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background: rgba(7,11,15,.84);
    box-shadow: 0 34px 90px rgba(0,0,0,.38);
}
.sentinelle-real-toolbar {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.76);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
}
.sentinelle-live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #36c894;
    box-shadow: 0 0 0 5px rgba(54,200,148,.10), 0 0 18px rgba(54,200,148,.35);
}
.sentinelle-secure-label {
    margin-left: auto;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: rgba(255,255,255,.45);
}
.sentinelle-real-screen {
    padding: 12px;
    background:
        radial-gradient(circle at 90% 10%, rgba(90,200,250,.12), transparent 38%),
        #0d1116;
}
.sentinelle-real-screen img,
.sentinelle-login-frame img,
.sentinelle-client-preview img {
    display: block;
    width: 100%;
    height: auto;
}
.sentinelle-real-screen img {
    border-radius: 17px;
    border: 1px solid rgba(255,255,255,.08);
}
.sentinelle-real-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px 17px;
}
.sentinelle-real-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(90,200,250,.09);
    color: #bcecff;
    font-size: 10px;
    font-weight: 700;
}

.sentinelle-flow {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 58px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 24px;
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(12px);
}
.sentinelle-flow-step {
    position: relative;
    min-width: 0;
    padding: 8px 10px;
}
.sentinelle-flow-step > span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-protect);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}
.sentinelle-flow-step > i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 11px;
    background: rgba(90,200,250,.10);
    color: var(--blue-protect);
}
.sentinelle-flow-step strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 13px;
}
.sentinelle-flow-step small {
    display: block;
    color: rgba(255,255,255,.46);
    font-size: 10px;
    line-height: 1.45;
}
.sentinelle-flow-arrow { color: rgba(90,200,250,.42); font-size: 12px; }

.sentinelle-login-frame img {
    background: #eef2f5;
}
.sentinelle-login-frame .sentinelle-real-toolbar {
    background: rgba(5, 10, 15, .98);
}

.sentinelle-proof-section {
    padding: 105px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}
.sentinelle-proof-cards { margin-top: 46px; }

.sentinelle-process-section {
    padding: 105px 0;
    background: #101316;
    color: #fff;
}
.sentinelle-process-section .section-heading { color: #fff; }
.sentinelle-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 46px;
}
.sentinelle-process-grid article {
    position: relative;
    padding: 29px 24px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 23px;
    background: rgba(255,255,255,.035);
}
.sentinelle-process-grid article > span {
    display: block;
    margin-bottom: 22px;
    color: rgba(90,200,250,.85);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
}
.sentinelle-process-grid article > i {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    border-radius: 14px;
    background: rgba(90,200,250,.11);
    color: var(--blue-protect);
    font-size: 17px;
}
.sentinelle-process-grid h3 { margin-bottom: 10px; color: #fff; font-size: 20px; }
.sentinelle-process-grid p { margin: 0; color: rgba(255,255,255,.54); font-size: 13px; line-height: 1.65; }

.sentinelle-client-experience {
    padding: 115px 0;
    background: #f6f9fb;
}
.sentinelle-client-grid {
    display: grid;
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    gap: 64px;
    align-items: center;
}
.sentinelle-kicker-dark { color: #1387b6; }
.sentinelle-client-copy h2 {
    margin: 0 0 18px;
    color: var(--apple-black);
    font-family: var(--font-titles);
    font-size: clamp(34px, 4.8vw, 54px);
    line-height: 1.04;
    letter-spacing: -1.5px;
}
.sentinelle-client-copy > p {
    color: var(--apple-gray);
    font-size: 16px;
    line-height: 1.75;
}
.sentinelle-client-list {
    display: grid;
    gap: 13px;
    margin: 30px 0;
}
.sentinelle-client-list > div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}
.sentinelle-client-list > div > i {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(54,200,148,.12);
    color: #1f9c73;
    font-size: 11px;
}
.sentinelle-client-list strong {
    display: block;
    color: var(--apple-black);
    font-size: 14px;
}
.sentinelle-client-list small {
    display: block;
    margin-top: 3px;
    color: var(--apple-gray);
    font-size: 12px;
    line-height: 1.45;
}
.btn-sentinelle-client {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #12324d;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(18,50,77,.18);
}
.sentinelle-client-preview {
    overflow: hidden;
    border: 1px solid rgba(20,60,88,.10);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 34px 80px rgba(30,73,100,.12);
}
.sentinelle-preview-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 20px;
    border-bottom: 1px solid rgba(0,0,0,.055);
}
.sentinelle-preview-caption span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #12324d;
    font-size: 11px;
    font-weight: 800;
}
.sentinelle-preview-caption span i { color: #2ab183; }
.sentinelle-preview-caption small {
    margin-left: auto;
    color: #8a98a5;
    font-size: 10px;
}
.sentinelle-client-preview img { background: #eef7fb; }

.sentinelle-final-cta .sentinelle-actions-center {
    justify-content: center;
    margin-top: 28px;
}
.sentinelle-final-cta .btn-sentinelle-secondary {
    border-color: rgba(255,255,255,.28);
}

@media (max-width: 1050px) {
    .sentinelle-premium-grid,
    .sentinelle-client-grid {
        grid-template-columns: 1fr;
    }
    .sentinelle-real-product,
    .sentinelle-login-frame {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }
    .sentinelle-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .sentinelle-flow {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .sentinelle-flow-arrow {
        transform: rotate(90deg);
        justify-self: center;
        padding: 1px 0;
    }
    .sentinelle-flow-step {
        text-align: center;
        padding: 11px 8px;
    }
    .sentinelle-flow-step > i { margin-left: auto; margin-right: auto; }
    .sentinelle-process-grid { grid-template-columns: 1fr; }
    .sentinelle-client-experience { padding: 82px 0; }
    .sentinelle-client-grid { gap: 38px; }
    .sentinelle-preview-caption { align-items: flex-start; flex-direction: column; }
    .sentinelle-preview-caption small { margin-left: 0; }
}

@media (max-width: 520px) {
    .sentinelle-proof-row { display: grid; grid-template-columns: 1fr; }
    .sentinelle-proof-row span { justify-content: center; }
    .sentinelle-real-product,
    .sentinelle-login-frame,
    .sentinelle-client-preview { border-radius: 20px; }
    .sentinelle-real-toolbar { padding: 0 12px; }
    .sentinelle-secure-label { display: none; }
}


/* ==================================================================
   POLISH 2026 — animations, fluidité, performance perçue, accessibilité
   ================================================================== */

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    transform: translateY(-160%);
    padding: 11px 15px;
    border-radius: 12px;
    background: #0f2f49;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    transition: transform .2s ease;
}
.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid rgba(90, 200, 250, .92);
    outline-offset: 4px;
    border-radius: 8px;
}

.main-nav a[aria-current="page"] {
    color: var(--blue-protect);
}

/* Reveal au scroll : court, sobre, sans "effet vitrine". */
.js .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity .68s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
        transform .68s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}
.js .scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Aperçus Sentinelle : sensation de profondeur plus fluide. */
.sentinelle-real-product,
.sentinelle-login-frame,
.sentinelle-client-preview {
    transform: translateZ(0);
    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        box-shadow .45s cubic-bezier(.2,.7,.2,1),
        border-color .45s ease;
}

.sentinelle-real-screen,
.sentinelle-client-preview {
    overflow: hidden;
}

.sentinelle-real-screen img,
.sentinelle-login-frame img,
.sentinelle-client-preview img {
    transition:
        transform .7s cubic-bezier(.2,.7,.2,1),
        filter .7s ease;
}

@media (hover: hover) and (pointer: fine) {
    .sentinelle-real-product:hover,
    .sentinelle-login-frame:hover,
    .sentinelle-client-preview:hover {
        transform: translateY(-6px);
        border-color: rgba(90, 200, 250, .24);
        box-shadow: 0 42px 100px rgba(0,0,0,.30);
    }

    .sentinelle-real-product:hover .sentinelle-real-screen img,
    .sentinelle-login-frame:hover img,
    .sentinelle-client-preview:hover img {
        transform: scale(1.018);
        filter: saturate(1.03) contrast(1.01);
    }
}

img {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        transition-delay: 0ms !important;
    }

    .js .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
