/* --- Variables de couleurs et réinitialisation --- */
:root {
    --dark-slate: #0F172A;    /* Ardoise Profonde (Header/Footer) */
    --light-bg: #F1F5F9;       /* Gris tech clair (Fond de page) */
    --grey-banner: #E2E8F0;    /* Gris métallique clair (Fond du bandeau titre) */
    --cyber-orange: #F97316;   /* Cyber Orange / Orange Néon (Éléments actifs) */
    --white: #ffffff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
html, body {
    height: 100%; /* Oblige le navigateur à considérer toute la hauteur de l'écran */
}

body {
    background-color: var(--light-bg);
    color: var(--dark-slate);
    display: flex;
    flex-direction: column; /* Aligne le header, le main et le footer verticalement */
}

/* --- 1. Style de l'en-tête --- */
.main-header {
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 10px 40px 10px 40px;
}

.header-top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
}

.header-body {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center; /* Centre le H1 */
    padding-top: 10px;
    margin-bottom: 10px;
}

/* --- Style général du titre (Blanc pur) --- */
.main-header h1 {
    color: var(--white);
    display: inline-block; /* Permet aux points de coller proprement au titre sans aller à la ligne */
}

/* ⚡ LE POINT DEVANT */
.main-header h1::before {
    content: ". "; /* Un point suivi d'un espace pour ne pas coller aux lettres */
    color: var(--cyber-orange);
    text-shadow: 0 0 8px var(--cyber-orange); /* Effet néon */
    font-weight: 800; /* Optionnel : pour que le point soit bien rond et visible */
}

/* ⚡ LE POINT DERRIÈRE */
.main-header h1::after {
    content: " ."; /* Un espace suivi d'un point */
    color: var(--cyber-orange);
    text-shadow: 0 0 8px var(--cyber-orange); /* Effet néon */
    font-weight: 800;
}

/* ==========================================================================
   --- STYLE DU MENU DE NAVIGATION (GHOST MENU ANIME) ---
   ========================================================================== */

.top-nav {
    display: flex;
    align-items: center;
}

.top-nav a {
    color: #94A3B8;           /* Gris ardoise doux pour les liens non survolés */
    text-decoration: none;
    background-color: transparent !important; /* On supprime définitivement les fonds gris */
    padding: 10px 0;          /* Espace vertical pour agrandir la zone de clic */
    margin-left: 30px;        /* Espace élégant entre chaque mot du menu */
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;       /* Absolument requis pour ancrer la ligne magique en dessous */
    transition: color 0.3s ease;
}

/* --- 1. Comportement au survol (L'effet d'allumage du texte) --- */
.top-nav a:hover {
    color: var(--white);       /* Le texte s'illumine en blanc pur au survol */
}

/* --- 2. Style de l'onglet ACTIF (Le bouton Accueil actuel) --- */
.top-nav a.active {
    color: var(--white); /* Le mot actif s'affiche directement en orange néon */
    font-weight: 600;
}

/* --- 3. Création de la ligne invisible de base sous chaque lien --- */
.top-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;                /* On part du centre pour l'effet de déploiement */
    width: 0;                 /* La ligne fait 0px de large par défaut */
    height: 2px;              /* Épaisseur de votre fine ligne orange */
    background-color: var(--cyber-orange);
    box-shadow: 0 0 10px var(--cyber-orange), 
                0 0 4px rgba(249, 115, 22, 0.6); /* Effet néon/brillance sous le mot */
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease; /* Animation fluide de déploiement */
}

/* --- 4. Activation de la ligne (Pour l'onglet ACTIF et au SURVOL) --- */
.top-nav a.active::after,
.top-nav a:hover::after {
    width: 100%;              /* La ligne se déploie sur toute la largeur du mot */
    left: 0;                  /* Elle se recale parfaitement à gauche */
}

/* --- Mise à jour du logo dans le Header --- */

.home-button {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: -40px;
    background-color: transparent; 
    width: auto;
    height: auto;
    border-radius: 0;
}

/* Nouvelle règle pour contrôler précisément la taille de votre logo */
.header-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease; /* Optionnel : petit effet dynamique au survol */
}

/* Optionnel : un léger effet de zoom quand on passe la souris sur le logo */
.home-button:hover .header-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--cyber-orange)) 
            drop-shadow(0 0 25px rgba(249, 115, 22, 0.6))
            brightness(1.2); /* Augmente légèrement la luminosité globale du logo */
    opacity: 0.95; /* Optionnel : adoucit légèrement le rendu */
}
}

.header-body h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-style: bold;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ==========================================================================
   --- STYLE DU CONTENU PRINCIPAL ---
   ========================================================================== */

/* 1. Le conteneur principal (il empile verticalement le titre et les colonnes) */
main.container {
    flex: 1; 
    display: flex;
    flex-direction: column;   /* Titre AU-DESSUS des colonnes */
    justify-content: flex-start;  /* Centre tout verticalement dans la page */
    align-items: stretch;     /* Permet au titre de prendre toute la largeur */
    
    width: 100%;
    max-width: 1200px; 
    margin: 40px auto;        /* 40px haut/bas pour décoller du header/footer, centré horizontalement */
    padding: 0 40px; 
}

/* 2. Le bandeau de titre (prend toute la largeur en haut) */
.title-banner {
    background-color: var(--grey-banner);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;      /* Espace propre avant les colonnes */
    border-left: 5px solid var(--cyber-orange);
}

.title-banner h2 {
    color: var(--dark-slate);
    font-size: 1.5rem;
    font-weight: 700;
}

/* 3. Le wrapper qui gère le côte-à-côte (image et texte) */
.columns-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;      /* Centre verticalement l'image par rapport au texte */
    gap: 40px;                /* Espace de 40px entre l'image et le texte */
    margin: auto 0;
}

/* 4. Les deux colonnes (partagent l'espace équitablement) */
.content-left {
    flex: 1;
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ==========================================================================
   --- STYLES DES ÉLÉMENTS INTÉRIEURS ---
   ========================================================================== */

/* Image d'illustration (colonne gauche) */
.content-left .hero-image {
    width: 100%;
    height: auto;
    display: block;           /* Évite les espaces résiduels sous l'image */
    border-radius: 15px;
    border: 1px solid var(--cyber-orange);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

/* Textes et listes (colonne droite) */
.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.text-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.text-content li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #4a4a4a;
}

/* La signature manuscrite */
.signature {
    font-family: 'Caveat', cursive;
    color: var(--cyber-orange) !important;
    font-weight: 400 !important;
    font-variant: normal;
    font-size: 1.8rem !important;
    margin-top: 10px;
    display: block; 
    transform: rotate(-2deg); /* Effet écriture naturelle */
}


/* --- 3. Style du pied de page --- */
.main-footer {
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    font-family: 'Nunito', sans-serif;
    margin-top: auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    height: 70px; /* À ajuster selon votre image */
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.55rem;
    font-style: italic;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
    font-size: 0.7rem;
}

.footer-right p {
    font-size: 0.6rem;    /* Diminue la taille du texte principal des crédits */
    line-height: 1.4;
}

.footer-right span {
    font-size: 0.6rem;
    opacity: 0.7;
}

.cm-logo {
    height: 55px;
    width: auto;
}

/* ==========================================================================
   --- DESIGN PREMIUM POUR CAMPUS.HTML ---
   ========================================================================== */

.campus-premium-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Espace équilibré entre l'intro, la tablette et les boutons */
}

/* --- SECTION 1 : INTRO TYPOGRAPHIQUE --- */
.campus-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: -10px; 
    
    /* Le fond "Capsule Tech" */
    background: rgba(30, 41, 59, 0.6); /* Fond Deep Slate transparent */
    backdrop-filter: blur(8px);       /* Effet de flou haut de gamme derrière le fond */
    -webkit-backdrop-filter: blur(8px);
    
    /* Ajustements et finitions */
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Micro-reflet blanc linéaire */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Donne une assise au bloc */
}

/* Mise en valeur du premier mot */
.campus-intro .orange-highlight {
    color: var(--cyber-orange);
    font-weight: 700;
}

/* Le texte dans la capsule */
.campus-intro .description {
    color: #E2E8F0; /* Un blanc-gris plus clair pour bien ressortir sur le nouveau fond */
    font-size: 0.75rem;
    line-height: 1.65;
    margin: 0;
}

/* --- SECTION 2 : LA VITRINE EN LUMIÈRE & CLIQUABLE --- */
.campus-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campus-showcase .glow-effect {
    position: absolute;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Le lien qui englobe la tablette */
.tablet-link {
    text-decoration: none;
    display: block;
    width: 100%;
    /* ⚡ TAILLE MODIFIÉE ICI (650px -> 480px) POUR DIMINUER LA TABLETTE */
    max-width: 550px; 
    /* ⚡ SÉCURITÉ CENTRAGE ICI */
    margin: 0 auto; 
    z-index: 2;
}

.tablet-wrapper {
    position: relative;
    background: #0f172a; 
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    overflow: hidden; /* Pour que l'overlay suive l'arrondi de la tablette */
}

.matrix-screen {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: filter 0.3s ease;
}

/* ⚡ EFFET DE TEXTE AU SURVOL DE LA TABLETTE */
.tablet-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4); /* Voile sombre très léger */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-text {
    color: var(--white);
    background: var(--cyber-orange);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 0 15px var(--cyber-orange);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

/* Animations au survol de la tablette */
.tablet-link:hover .tablet-wrapper {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 
                0 0 20px rgba(249, 115, 22, 0.2);
}

.tablet-link:hover .matrix-screen {
    filter: brightness(0.85); /* Assombrit discrètement l'image pour faire ressortir le bouton */
}

.tablet-link:hover .tablet-overlay {
    opacity: 1;
}

.tablet-link:hover .overlay-text {
    transform: translateY(0);
}

/* ==========================================================================
   --- SECTION 3 : BOUTONS HIGH-CONTRAST ---
   ========================================================================== */

.campus-actions-minimal {
    width: 100%;
    max-width: 600px; /* On l'élargit un poil pour donner de l'assise */
    margin: 10px auto 0 auto;
    text-align: center;
}

/* Titre plus blanc et visible */
.campus-actions-minimal h3 {
    color: #94A3B8; /* Gris clair texturé (très visible) */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.buttons-minimal-grid {
    display: flex;
    gap: 20px;
}

/* Le bouton réajusté pour claquer visuellement */
.cyber-btn-mini {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    background: #0F172A; /* Fond sombre plein (coupe le fond de la page) */
    border: 1px solid rgba(249, 115, 22, 0.4); /* Vraie bordure orange subtile au repos */
    border-radius: 12px;
    padding: 16px 22px; /* Plus épais pour affirmer sa présence */
    
    color: var(--white); /* Texte blanc pur directement lisible */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-left-side {
    display: flex;
    align-items: center;
    gap: 15px; /* Plus d'espace entre l'icône et le texte */
}

/* L'icône flash */
.icon-svg {
    width: 22px; /* Plus grande */
    height: 22px;
    color: var(--cyber-orange);
    /* Effet néon constant sur l'icône pour booster la visibilité */
    filter: drop-shadow(0 0 6px var(--cyber-orange)); 
    transition: transform 0.25s ease;
}

/* La flèche à droite */
.btn-arrow {
    color: var(--cyber-orange);
    font-weight: 700;
    transform: translateX(-3px);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.7; /* Légèrement visible de base pour inciter au clic */
}

/* --- COMPORTEMENT AU SURVOL (L'EFFET OVERDRIVE) --- */
.cyber-btn-mini:hover {
    background: #1E293B; /* Devient plus clair au survol */
    border-color: var(--cyber-orange); /* La bordure s'allume à 100% */
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); /* Gros halo sous le bouton */
    transform: translateY(-3px); /* Effet levier */
}

.cyber-btn-mini:hover .icon-svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px var(--cyber-orange)); /* Brillance accrue */
}

.cyber-btn-mini:hover .btn-arrow {
    opacity: 1;
    transform: translateX(3px); /* La flèche avance */
}

/* ==========================================================================
   --- SECTION 3 : BOUTONS HIGH-CONTRAST ---
   ========================================================================== */

.campus-actions-minimal {
    width: 100%;
    max-width: 600px; /* On l'élargit un poil pour donner de l'assise */
    margin: 10px auto 0 auto;
    text-align: center;
}

/* Titre plus blanc et visible */
.campus-actions-minimal h3 {
    color: #94A3B8; /* Gris clair texturé (très visible) */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.buttons-minimal-grid {
    display: flex;
    gap: 20px;
}

/* Le bouton réajusté pour claquer visuellement */
.cyber-btn-mini {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    background: #0F172A; /* Fond sombre plein (coupe le fond de la page) */
    border: 1px solid rgba(249, 115, 22, 0.4); /* Vraie bordure orange subtile au repos */
    border-radius: 12px;
    padding: 16px 22px; /* Plus épais pour affirmer sa présence */
    
    color: var(--white); /* Texte blanc pur directement lisible */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-left-side {
    display: flex;
    align-items: center;
    gap: 15px; /* Plus d'espace entre l'icône et le texte */
}

/* L'icône flash */
.icon-svg {
    width: 22px; /* Plus grande */
    height: 22px;
    color: var(--cyber-orange);
    /* Effet néon constant sur l'icône pour booster la visibilité */
    filter: drop-shadow(0 0 6px var(--cyber-orange)); 
    transition: transform 0.25s ease;
}

/* La flèche à droite */
.btn-arrow {
    color: var(--cyber-orange);
    font-weight: 700;
    transform: translateX(-3px);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.7; /* Légèrement visible de base pour inciter au clic */
}

/* --- COMPORTEMENT AU SURVOL (L'EFFET OVERDRIVE) --- */
.cyber-btn-mini:hover {
    background: #1E293B; /* Devient plus clair au survol */
    border-color: var(--cyber-orange); /* La bordure s'allume à 100% */
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); /* Gros halo sous le bouton */
    transform: translateY(-3px); /* Effet levier */
}

.cyber-btn-mini:hover .icon-svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px var(--cyber-orange)); /* Brillance accrue */
}

.cyber-btn-mini:hover .btn-arrow {
    opacity: 1;
    transform: translateX(3px); /* La flèche avance */
}



/* ==========================================================================
   --- PAGE MODE D'EMPLOI ÉLÈVES (GUIDE DE CONNEXION) ---
   ========================================================================= */

/* --- STRUCTURE GÉNÉRALE ET EN-TÊTE --- */
.guide-eleves-container {
    max-width: 1000px; /* Plus large pour accueillir la grille */
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.guide-main-header {
    text-align: center;
}

.guide-main-header h1 {
    font-size: 2.2rem;
    color: #0F172A; /* On passe sur un bleu nuit très sombre au lieu du blanc */
    margin-bottom: 15px;
}

.guide-main-header h1 span {
    color: var(--cyber-orange); /* Reste en orange */
}

/* Le bandeau ovale du titre (Inspiré de votre capture) */
.subtitle-badge {
    display: inline-block;
    background: #1E293B; /* Fond sombre solide pour faire ressortir le texte blanc */
    color: #FFFFFF;      /* Texte blanc pur */
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- LA GRILLE DES ÉTAPES (COTES-A-COTE) --- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes égales */
    gap: 30px;
    align-items: stretch;
}

/* --- LE STYLE DES CARTES --- */
.guide-step-card {
    background: #FFFFFF; /* Fond blanc pur pour la carte pour contraster avec le fond du site */
    border: 1px solid #E2E8F0; /* Fine bordure grise propre */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Ombre douce */
    display: flex;
    flex-direction: column;
}

/* En-tête de la carte (Numéro + Titre) */
.step-header {
    background: #F8FAFC; /* Fond gris très clair pour la zone du titre */
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-bottom: 1px solid #E2E8F0;
}

.step-num {
    background: var(--cyber-orange);
    color: #FFFFFF; /* Numéro en blanc pur pour un contraste maximal */
    font-size: 1.3rem;
    font-weight: 800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-header h2 {
    font-size: 1.2rem;
    color: #1E293B; /* Bleu ardoise très sombre (Ultra lisible !) */
    font-weight: 700;
}

/* Contenu textuel et images dans la carte */
.step-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.step-content p {
    color: #334155; /* Gris anthracite foncé au lieu du blanc/gris clair */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-content strong {
    color: #0F172A; /* Noir/Bleu nuit pour les mots importants */
    font-weight: 700;
    background: rgba(249, 115, 22, 0.1); /* Petit surlignage orange très clair */
    padding: 2px 6px;
    border-radius: 4px;
}

/* Style de l'URL du site (Inspiré de votre capture) */
.campus-url {
    display: inline-block;
    color: #EA580C; /* Orange un poil plus foncé pour être parfaitement lisible sur fond blanc */
    font-weight: 700;
    background: #FFF7ED; /* Fond d'alerte orange très doux */
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.1rem;
    text-decoration: none;
    margin-bottom: 25px;
    text-align: center;
}

.campus-url:hover {
    background: #FFEDD5;
    border-color: var(--cyber-orange);
}

/* --- LE CONTENEUR D'IMAGES --- */
.image-wrapper {
    width: 100%;
    height: auto;
    margin-top: auto; /* Aligne l'image en bas de la carte */
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Variante de l'image : avec la fine bordure de tablette */
.image-wrapper.with-border {
    border-radius: 12px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    overflow: hidden;
}

/* Variante de l'image : sans bordure (pour le formulaire par ex.) */
.image-wrapper.no-border {
    border-radius: 12px;
    overflow: hidden;
}

/* --- LE BLOC D'ASSISTANCE (BAS DE PAGE) --- */
.assistance-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFF7ED; /* Fond orange très clair */
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: -10px;
}

.assistance-icon {
    font-size: 1.5rem;
    background: var(--cyber-orange);
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.assistance-text h3 {
    color: #1E293B;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.assistance-text p {
    color: #475569;
    font-size: 0.95rem;
}

/* Style pour le lien vers la page Procure */
.procure-link {
    color: #EA580C; /* Un orange soutenu et très lisible */
    font-weight: 700;
    text-decoration: underline; /* Souligné pour indiquer le clic */
    transition: color 0.2s ease;
}

.procure-link:hover {
    color: #0F172A; /* Le lien vire au bleu nuit/noir quand on passe la souris dessus */
}


/* ==========================================================================
   --- PAGE MODE D'EMPLOI PARENTS (CAMPUS-PARENTS) ---
   ========================================================================== */

/* Structure identique à la version élève */
.guide-parents-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Espacement pour le deuxième titre de section */
.guide-main-header.section-divider {
    margin-top: 20px;
}

/* Style des listes à puces pour les détails des formulaires */
.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 5px;
}

.step-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.95rem;
}

.step-content ul li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: var(--cyber-orange);
    font-weight: bold;
}

/* Encre orange pour mise en valeur simple */
.text-highlight-orange {
    color: #EA580C;
    font-weight: 700;
}

/* --- LE BLOC EMAIL (ÉTAPE INTERMÉDIAIRE CLÉ) --- */
/* ==========================================================================
   --- ALIGNEMENT ET CORRECTION DE L'ÉTAPE 03 ---
   ========================================================================== */

/* Force la section de l'étape 03 à prendre toute la largeur disponible */
.full-width-step {
    width: 100%;
}

/* Mise en page interne de l'étape 03 : Texte à gauche, icône enveloppe à droite */
.email-step-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 30px 25px;
}

.email-text {
    flex: 1;
}

/* Suppression des marges inutiles pour le dernier paragraphe */
.email-text p:last-child {
    margin-bottom: 0;
}

/* Gestion du bloc contenant l'icône enveloppe */
/* Gestion du bloc contenant l'icône enveloppe */
.email-icon-wrapper {
    display: grid;
    place-items: center; /* Force un alignement sur les axes X et Y */
    width: 80px;  
    height: 80px; 
    background: #FFF7ED; 
    border-radius: 12px;
    border: 1px solid rgba(249, 115, 22, 0.1);
    flex-shrink: 0; 
}

.email-large-icon {
    font-size: 2.8rem;
    color: var(--cyber-orange);
    display: inline-block;
    line-height: 1 !important;
    margin: 0;
    padding: 0;
    
    /* ⚡ LE TRUC MAGIQUE : Décale légèrement l'enveloppe vers le haut 
       pour compenser le défaut de la police de caractères */
    transform: translateY(-3px); 
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 600px) {
    .email-step-layout {
        flex-direction: column-reverse; /* Place l'icône au-dessus ou en dessous sur mobile */
        text-align: center;
        gap: 20px;
    }
    
    .email-icon-wrapper {
        width: 100%;
        padding: 20px;
    }
}

.info-icon {
    font-size: 1.8rem;
    color: var(--cyber-orange);
    line-height: 1;
    padding-top: 2px;
}

.info-text h3 {
    color: #1E293B;
    font-size: 1.15rem;
    margin: 8px 0;
    font-weight: 700;
}

.info-text p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-badge-inline {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: #EA580C;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   --- PAGE CONTACT - ADAPTÉE À LA DA CYBER-ORANGE & SLATE ---
   ========================================================================== */

/* 1. NAVBAR DU HAUT (SOMBRE & PROPRE) */
.contact-navbar {
    background-color: #0F172A; /* Slate ultra-sombre pour s'aligner sur les boutons */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    color: #FFFFFF;
}

.nav-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-btn {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.home-btn:hover {
    background: rgba(249, 115, 22, 0.2); /* Surlignage orange au survol */
    color: var(--cyber-orange);
}

.nav-right {
    display: flex;
    gap: 15px;
}

.nav-right a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-right a:hover {
    color: #FFFFFF;
}

/* Bouton actif Orange signature */
.nav-right a.active-nav {
    background-color: var(--cyber-orange);
    color: #FFFFFF !important;
    font-weight: 700;
}

/* 2. STRUCTURE PRINCIPALE (Thème Clair Haut-Contraste) */
.contact-main-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.contact-container-box {
    background-color: #FFFFFF; /* Cadre blanc de la capture */
    border: 1px solid #E2E8F0;
    border-radius: 16px; /* Aligné sur les cartes des autres pages */
    padding: 50px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Titres de colonnes */
.column-title {
    color: #0F172A;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

/* Remplacement du soulignement brut par une jolie barre orange DA */
.column-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--cyber-orange);
    border-radius: 2px;
}

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

/* 3. LES BADGES DE CONTACT HORIZONTAUX */
.contact-card {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Le rond de l'avatar */
.avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    position: absolute;
    left: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* La pilule de texte version Tech/Slate */
.card-info-pill {
    background-color: #F8FAFC; /* Gris ardoise ultra-doux (DA Éléves/Parents) */
    border: 1px solid #E2E8F0;
    border-radius: 0 50px 50px 0; /* Garde la forme pilule asymétrique super stylée */
    padding: 15px 30px 15px 70px;
    margin-left: 50px;
    flex-grow: 1;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-info-pill h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: #0F172A; /* Texte ultra-sombre lisible */
    font-weight: 700;
}

.info-field {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #475569; /* Gris intermédiaire */
    font-weight: 500;
}

/* Accentuation Orange sur les intitulés pour rappeler la DA */
.info-field strong, 
.contact-email,
.contact-phone {
    color: #EA580C; /* Orange chaud lisible sur fond clair */
    font-weight: 600;
    text-decoration: none;
}

.contact-email {
    text-decoration: underline;
}

.contact-email:hover,
.contact-phone:hover {
    color: #0F172A;
}


/* --- BANDEAU PROCURE EN BAS DE PAGE CONTACT --- */
.contact-procure-box {
    grid-column: 1 / -1; /* Magie du Grid : force le bloc à prendre les deux colonnes en largeur */
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F8FAFC; /* Même gris ardoise doux que les pilules */
    border: 1px solid #E2E8F0;
    border-left: 4px solid var(--cyber-orange); /* Rappel de la touche tech orange */
    border-right: 4px solid var(--cyber-orange);
    padding: 20px 25px;
    border-radius: 16px 16px 16px 16px;
}

.assistance-icon {
    font-size: 1.5rem;
    color: var(--cyber-orange);
    font-weight: bold;
}

.assistance-text h3 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
    color: #0F172A;
    font-weight: 700;
}

.assistance-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

/* Le lien vers la procure aux couleurs de la DA */
.procure-link {
    color: #EA580C;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.procure-link:hover {
    color: #0F172A;
}

/* ==========================================================================
   --- PAGE PROCURE - DA CYBER SLATE & ORANGE ---
   ========================================================================== */

.procure-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 1. LA CARTE PRINCIPALE */
.procure-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.procure-badge-header {
    margin-bottom: 40px;
}

/* Le bandeau titre "Capsule" version DA */
.cyber-badge {
    display: inline-block;
    background-color: #0F172A; /* Slate Sombre */
    color: #FFFFFF;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

/* 2. LE TABLEAU DES HORAIRES (MODERNE) */
.table-responsive {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px; /* Espace entre les cellules pour l'effet "tuile" */
}

.schedule-table th {
    color: #0F172A;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 15px;
    text-transform: capitalize;
}

.schedule-table td {
    background-color: #F8FAFC; /* Gris doux */
    border-radius: 12px;
    padding: 20px 10px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

/* Effet au survol d'une cellule horaire */
.schedule-table td:hover:not(.empty-cell) {
    background-color: #FFFFFF;
    border-color: var(--cyber-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.1);
}

.time-slot {
    display: block;
    color: #475569;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace; /* Style un peu "code/tech" */
    font-size: 1rem;
}

.schedule-table td:hover .time-slot {
    color: #EA580C; /* Devient orange au survol */
}

.empty-cell {
    background-color: transparent !important;
    border: none !important;
    color: #CBD5E1;
    font-size: 1.5rem;
}

/* 3. LE BLOC "POURQUOI ?" */
.why-box {
    background: #F8FAFC;
    border-left: 4px solid var(--cyber-orange);
    border-radius: 4px 16px 16px 4px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-question {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0F172A;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 1rem;
}

.why-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--cyber-orange);
    font-weight: 900;
}

.why-list li strong {
    color: #0F172A;
    font-weight: 700;
}

/* ==========================================================================
   --- PAGE HUB CHROMEBOOK - REVISITÉE POUR LA COHÉRENCE DA ---
   ========================================================================== */

.chromebook-landing-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 40px;
}

.chromebook-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* --- COLONNE IMAGE (Style identique à tes autres cartes de guides) --- */
.hero-image-wrapper {
    position: relative;
    border-radius: 16px; /* Aligné sur le reste du site */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    padding: 10px; 
    max-width: 400px;
    margin: 0 auto;
}

.hero-display {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* --- COLONNE BOUTONS (Intégration fluide avec la DA) --- */
.chromebook-nav-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cb-hub-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    background-color: #0F172A; /* Fond sombre plein comme tes boutons d'accueil */
    border: 1px solid rgba(249, 115, 22, 0.3); /* Bordure orange très subtile au repos */
    color: #FFFFFF; /* Texte blanc pur très lisible */
    
    text-decoration: none;
    padding: 25px 35px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* L'icône de droite (badge discret au repos) */
.cb-btn-icon {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cyber-orange); /* L'orange est uniquement ici au repos */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.25s ease;
}

/* --- COMPORTEMENT AU SURVOL (L'EFFET CHROMEBOOK TECH) --- */
.cb-hub-btn:hover {
    background-color: #1E293B; /* Devient légèrement plus clair */
    border-color: var(--cyber-orange); /* La bordure s'allume à 100% */
    transform: translateY(-3px) translateX(4px); /* Léger effet levier */
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.15); /* Halo discret sous le bouton */
}

.cb-hub-btn:hover .cb-btn-icon {
    background: rgba(249, 115, 22, 0.2); /* Le petit carré de l'icône s'illumine en orange */
    border-color: var(--cyber-orange);
    transform: scale(1.05);
}


/* ==========================================================================
   --- PAGE CHROMEBOOK MATERIEL
   ========================================================================== */


.cb-materiel-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cb-intro-card {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 36px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    color: #334155;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: -10px;
}

.cb-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

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

.btn-cyber-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--cyber-orange);
    color: var(--white) !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.btn-cyber-orange:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
}

.cb-materiel-container .step-content ul li::before {
    content: none;
}

.cb-materiel-container .step-content ul li {
    margin-bottom: 12px;
}
.assistance-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.assistance-box2 {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFF7ED; /* Fond orange très clair */
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: -30px;
    margin-bottom: -30px;
}

/* ================================================================
   STYLES SPÉCIFIQUES À CHROMEBOOK-GOOGLE.HTML
   ================================================================ */

.cb-google-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cb-tool-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 22px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cb-tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cb-tool-icon.green  { background: #e8f5e9; color: #2e7d32; }
.cb-tool-icon.blue   { background: #e3f2fd; color: #1565c0; }
.cb-tool-icon.yellow { background: #fff8e1; color: #f9a825; }
.cb-tool-icon.purple { background: #f3e5f5; color: #6a1b9a; }
.cb-tool-icon.teal   { background: #e0f2f1; color: #00695c; }

.cb-tool-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155;
}

.cb-tool-text strong {
    color: var(--dark-slate);
}

.cb-tools-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cb-ia-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cb-ia-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155;
}

.cb-cadre-box {
    background: #FFF7ED;
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 16px 22px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155;
    margin-top: 4px;
}

.cb-google-container .step-content ul li::before {
    content: none;
}

.cb-google-container .step-content ul li {
    margin-bottom: 12px;
}

/* ================================================================
   STYLES SPÉCIFIQUES À CHROMEBOOK-CHARTE.HTML
   ================================================================ */

.cb-charte-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.charte-main-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.charte-engagements-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: start;
}

.charte-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 10px;
}

.charte-item-icon {
    font-size: 2.2rem;
}

.charte-item-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.charte-item-label.green  { color: #2e7d32; }
.charte-item-label.orange { color: var(--cyber-orange); }
.charte-item-label.navy   { color: #1a237e; }

.charte-item-arrow {
    font-size: 1.8rem;
}

.charte-item-arrow.green  { color: #2e7d32; }
.charte-item-arrow.orange { color: var(--cyber-orange); }
.charte-item-arrow.navy   { color: #1a237e; }

.charte-item-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #334155;
}

.charte-item-text.green  { color: #2e7d32; }
.charte-item-text.orange { color: var(--cyber-orange); }
.charte-item-text.navy   { color: #1a237e; }

.charte-contact-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.charte-contact-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

.charte-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.charte-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--cyber-orange);
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 16px 12px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
    transition: all 0.25s ease;
}

.charte-contact-btn i {
    font-size: 1.4rem;
}

.charte-contact-btn:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
}

.charte-sanction-box {
    background-color: var(--grey-banner);
    border-radius: 12px;
    padding: 18px 28px;
    text-align: center;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.65;
}

.charte-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--cyber-orange);
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 22px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: all 0.25s ease;
    line-height: 1.55;
}

.charte-cta-btn:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

.charte-cta-btn .icon-hand {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-left: 20px;
    animation: bounce 2s infinite;
}



/* ==========================================================================
   --- RESPONSIVE DESIGN (Écrans inférieurs à 768px / Tablettes et Mobiles) ---
   ========================================================================== */
@media (max-width: 768px) {
    
    /* 1. On passe le conteneur de colonnes en mode vertical (empilé) */
    .columns-wrapper {
        flex-direction: column; 
        gap: 30px; /* On réduit un peu l'espace entre l'image et le texte */
    }

    /* 2. On réduit légèrement les marges globales pour gagner de la place */
    main.container {
        margin: 20px auto;
        padding: 0 20px;
    }

    /* 3. Optionnel : On réduit la taille de l'image sur mobile pour qu'elle ne prenne pas tout l'écran */
    .content-left .hero-image {
        max-width: 80%; /* L'image prendra 80% de la largeur de l'écran au lieu de 100% */
        margin: 0 auto; /* Elle reste parfaitement centrée */
    }

    /* 4. Optionnel : On centre les textes pour un rendu plus propre sur smartphone */
    .text-content {
        text-align: center;
    }

    /* On remet la signature droite et centrée pour faciliter la lecture sur mobile */
    .signature {
        transform: none; 
        margin-top: 20px;
    }
    
    /* ⚡ AJUSTEMENT DU LOGO SUR MOBILE : */
    .header-logo-img {
        height: 55px; /* On passe de 80px à 55px pour libérer de l'espace en hauteur */
    }

    /* Optionnel : Si votre titre H1 est à côté et qu'il paraît trop gros sur mobile */
    .main-header h1 {
        font-size: 1.4rem; /* Réduit la taille du texte pour éviter qu'il ne passe à la ligne de force */
    }

        .campus-premium-container {
        gap: 50px;
        margin: 40px auto;
    }
    .campus-intro .description {
        font-size: 1.05rem;
    }
    .campus-actions {
        grid-template-columns: 1fr; /* Tout s'empile sur mobile */
    }
    .buttons-grid {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .buttons-minimal-grid {
        flex-direction: column;
        gap: 12px;
    }
}


@media (max-width: 768px) {
    .campus-premium-container {
        gap: 50px;
        margin: 40px auto;
    }
    .buttons-grid {
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .steps-grid {
        grid-template-columns: 1fr; /* S'empile sur mobile */
        gap: 20px;
    }
    
    .guide-eleves-container {
        gap: 40px;
    }
    
    .assistance-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Ajustement responsive pour le bloc d'e-mail */
@media (max-width: 600px) {
    .info-highlight-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 16px;
        border-left: 1px solid #E2E8F0;
        border-top: 4px solid var(--cyber-orange);
    }
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .contact-container-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
}
/* Ajustement responsive mobile */
@media (max-width: 650px) {
    .contact-procure-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        border-left: 1px solid #E2E8F0;
        border-top: 4px solid var(--cyber-orange);
        border-radius: 16px;
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .schedule-table {
        border-spacing: 5px;
    }
    .schedule-table th { font-size: 0.9rem; }
    .time-slot { font-size: 0.8rem; }
    .procure-card { padding: 20px 10px; }
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .chromebook-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .cb-hub-btn {
        padding: 20px 25px;
        font-size: 1.05rem;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 850px) {
    .cb-profile-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cb-section-badge h2 {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .cb-two-col-grid {
        grid-template-columns: 1fr;
    }
    .cb-materiel-container {
        margin: 30px auto;
        padding: 0 20px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cb-google-container {
        margin: 30px auto;
        padding: 0 20px;
        gap: 30px;
    }
    .cb-two-col-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cb-charte-container {
        margin: 30px auto;
        padding: 0 20px;
        gap: 30px;
    }
    .charte-main-grid {
        grid-template-columns: 1fr;
    }
    .charte-engagements-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .charte-contact-btns {
        flex-direction: row;
    }
}