:root {
    --primary-color: #ffffff;
    --secondary-color: #f5f5f5;
    --accent-color: #1a1a1a;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --spacing-unit: 1rem;
}

/* Thème sombre */
[data-theme="dark"] {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #ffffff;
    --text-color: #f5f5f5;
    --border-color: #404040;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html {
    background-color: #1a1a1a; /* Assure une continuité avec le site */
    overflow-x: hidden; /* Évite un décalage horizontal */
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo {
    justify-self: start;
}

.menu-toggle {
    display: none; /* Par défaut, le bouton est caché */
}

.theme-toggle {
    justify-self: end;
    margin-left: auto;
}

.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem var(--spacing-unit);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    margin-top: 8px;
}

.logo img {
    height: 60px;
    width: auto;
    filter: invert(0);
    transition: filter 0.3s ease;
}

[data-theme="dark"] .logo img {
    filter: invert(1);
}

.nav-container .logo {
    height: 60px;
    margin-top: 8px;
}

.nav-container .logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Style spécial pour le lien actif */
.nav-links a.active {
    color: var(--accent-color);
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 var(--spacing-unit);
    background-color: var(--secondary-color);
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

[data-theme="dark"] .hero-image:hover {
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.25));
}

.main-logo {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-unit);
    color: var(--accent-color);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.introduction {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem var(--spacing-unit);
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.introduction p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.08);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    color: var(--primary-color);
    background-color: var(--accent-color);
    z-index: 2;
}

.btn-secondary span, .btn-secondary a {
    position: relative;
    z-index: 2;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.btn-primary:hover::before {
    width: 800px;
    height: 800px;
}

/* Mode sombre pour les boutons primaires */
[data-theme="dark"] .btn-primary::before {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .btn-secondary::before {
    background: rgba(255,255,255,0.08);
}

@media (max-width: 920px) {
    /* Styles du header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--primary-color);
        z-index: 1000;
        height: 80px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Style du menu hamburger */
    .menu-toggle {
        display: flex; /* Afficher uniquement en version mobile */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 100;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 3px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Animation du bouton hamburger */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Style du menu mobile */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-color);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        z-index: 999;
        overflow-y: auto;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    /* Masquer le logo mobile */
    .nav-links .mobile-logo {
        display: none;
    }

    /* Ajustement des liens de navigation */
    .nav-links a {
        padding: 0.5rem 0;
        font-size: 1.2rem;
    }

    /* Afficher la signature uniquement en mobile */
    .menu-signature {
        display: block;
        margin-top: auto;
        padding: 1rem 0;
        font-size: 0.9rem;
        color: var(--text-color);
        opacity: 0.7;
        text-align: center;
    }

    /* Ajustements du logo dans le header */
    .nav-container .logo {
        height: 55px;
        margin-top: 5px;
    }

    .nav-container .logo img {
        height: 45px;
    }
}

.process-preview {
    background-color: var(--secondary-color);
    padding: 4rem var(--spacing-unit);
    text-align: center;
    margin-bottom: 2rem;
}

.process-preview h2 {
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 var(--spacing-unit);
}

.step {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Pour les écrans plus larges, forcer 4 colonnes */
@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Pour les écrans moyens, 2 colonnes */
@media (max-width: 1023px) and (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pour mobile, une colonne */
@media (max-width: 767px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Style pour le bouton de thème */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--text-color);
    transition: transform 0.3s ease, color 0.3s ease;
    stroke-width: 1.5px;
}

.theme-toggle:hover {
    opacity: 0.8;
    transform: translateY(-2px);

}

/* Style pour le logo hero */
.hero-image img.main-logo {
    width: 100%;
    height: auto;
    filter: invert(0);
    transition: filter 0.3s ease;
}

[data-theme="dark"] .hero-image img.main-logo {
    filter: invert(1);
}

/* Conserver les styles existants pour le conteneur */
.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}
.introduction{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.introduction:hover{
    transform: translateY(-5px);
}
[data-theme="dark"] .introduction {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}
.step{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover{
    transform: translateY(-5px);
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .hero-image {
        max-width: 90%;
        padding: 1rem;
    }

    .main-logo {
        max-width: 300px;
    }
}

.expertise-section {
    background: var(--primary-color);
    padding: 4rem var(--spacing-unit);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

/* Ajustements pour le mode sombre */
[data-theme="dark"] .expertise-section {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

.expertise-section h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.expertise-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.expertise-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .expertise-section {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .introduction{
        margin-top: 0;
    }
    .hero{
        margin-bottom: 0;
    }


}

/* Style pour bloquer le scroll quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    padding-right: 15px; /* Pour compenser la scrollbar qui disparaît */
}

/* Garder les styles du footer */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-content .role {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-links {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-left: 18px;
    flex-wrap: nowrap;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
}

.contact-links .separator {
    margin: 0 1rem;
    color: var(--text-color);
    position: relative;
    top: -1px;
}

.contact-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.contact-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.contact-links a:hover {
    color: var(--accent-color);
}

.contact-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 10px;
}

.social-links a.contact-link::after {
    display: none;
}

.social-links a:hover {
    transform: translateY(-2px);
    background-color: var(--accent-color);
}

/* Style normal pour les icônes */
.social-links img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    display: block;
    margin: auto;
}

/* Mode nuit */
[data-theme="dark"] .social-links img {
    filter: invert(0); /* Inverse la couleur en mode nuit */
}

[data-theme="dark"] .social-links a {
    background-color: var(--accent-color);
}

[data-theme="dark"] .social-links a:hover {
    background-color: var(--text-color);
}

[data-theme="dark"] .social-links a:hover img {
    filter: invert(1); /* Réinverse la couleur au survol en mode nuit */
}

@media (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }
}

   

/* Style général pour les liens de contact */
.contact-link {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-link:hover::after {
    width: 100%;
}

/* Désactiver l'effet pour les icônes sociales */
.social-links a.contact-link::after {
    display: none;
}

/* Modification des styles du logo */
.logo a {
    display: block;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

/* Ajustement pour le mode sombre */
[data-theme="dark"] .logo a:hover {
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.2));
}

/* Ajustement du logo mobile pour la même animation */
.mobile-logo a {
    display: block;
    transition: all 0.3s ease;
}

.mobile-logo a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

[data-theme="dark"] .mobile-logo a:hover {
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.2));
}

/* Par défaut, cacher la signature */
.menu-signature {
    display: none;
}

/* Afficher la signature uniquement en version mobile */
@media (max-width: 768px) {
    .nav-links {
        /* ... autres styles ... */
    }

    .menu-signature {
        display: block;
        margin-top: auto;
        padding: 1rem 0;
        font-size: 0.9rem;
        color: var(--text-color);
        opacity: 0.7;
        text-align: center;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 100;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 3px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-color);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        z-index: 999;
        overflow-y: auto;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .mobile-logo {
        display: none;
    }

    .nav-links a {
        padding: 0.5rem 0;
        font-size: 1.2rem;
    }

    .menu-signature {
        display: block;
        margin-top: auto;
        padding: 1rem 0;
        font-size: 0.9rem;
        color: var(--text-color);
        opacity: 0.7;
        text-align: center;
    }

    .nav-container .logo {
        height: 55px;
        margin-top: 5px;
    }

    .nav-container .logo img {
        height: 45px;
    }
}

/* Ajout des styles pour les liens légaux dans le footer */
.legal-links {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.legal-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative;
    padding: 0 1rem;
    white-space: nowrap;
}

.legal-links a:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background-color: var(--text-color);
    opacity: 0.5;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.legal-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.legal-links a:hover::after {
    width: 70%;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-links {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    
    .legal-links a {
        padding: 0.3rem 0.5rem;
    }
    
    .legal-links a:not(:last-child)::before {
        height: 10px;
    }
}

@media (max-width: 400px) {
    .copyright {
        font-size: 0.7rem;
    }
    
    .legal-links {
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    }
    
    .contact-links {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        gap: 0.3rem;
    }
    
    .contact-links .separator {
        margin: 0 0.5rem;
    }
}

/* Styles pour la section À propos */
.about-section {
    background-color: var(--secondary-color);
    padding: 4rem var(--spacing-unit);
    margin: 2rem auto;
    border-radius: 8px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}

.about-image {
    width: 480px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    shape-outside: margin-box;
    flex-shrink: 0;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-text {
    padding: 0;
    width: auto;
    min-width: 0;
}

.about-text h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

.about-text .slogan {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-color);
    margin-top: 2rem;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    background-color: var(--primary-color);
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-text .slogan:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .about-text .slogan {
    background-color: var(--secondary-color);
}

[data-theme="dark"] .about-text .slogan:hover {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Ajustements pour le mode sombre */
[data-theme="dark"] .about-section {
    background-color: var(--primary-color);
}

[data-theme="dark"] .about-image {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Media queries pour la responsivité */
@media (min-width: 1025px) {
    .about-content {
        display: flow-root;
    }
    .about-image {
        float: left;
        margin: 0 2.5rem 2rem 0;
        width: 480px;
        max-width: 48vw;
    }
    .about-text {
        padding: 0;
    }
    .about-text p:nth-of-type(n+4) {
        clear: left;
    }
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 0;
        display: flex;
    }
    .about-image {
        float: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto 2.5rem auto;
    }
    .about-text h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }
    .about-image {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 2rem auto;
    }
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
}

.eltrio-link {
    position: relative;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
}

.eltrio-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: left 0.3s, width 0.3s, transform 0.3s;
    transform: translateX(-50%);
    pointer-events: none;
}

.eltrio-link:hover,
.eltrio-link:focus {
    color: var(--accent-color);
}

.eltrio-link:hover::after,
.eltrio-link:focus::after {
    left: 0;
    width: 100%;
    transform: none;
}
