body, html {
	margin: 0;
	padding: 0;
	min-height: 100%;
	min-height: 100dvh; /* Support modern mobile browsers */
}

body {
	font-family: Arial, sans-serif;
	color: #e8eaed;
    background: transparent;
}

/* Background de fallback sur html */
html {
    background: #0d0d0d;
}

/* ===== HERO SECTION (100vh avec galaxie) ===== */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
}

@keyframes subtle-pulse {
    0%, 100% { background-size: 150% 150%; }
    50% { background-size: 250% 250%; }
}

.logo {
	margin-bottom: 20px;
	z-index: 10;
	transition: transform 0.3s ease;
}
.logo img {
	width: 300px;
	height: auto;
}
.logo:hover {
	transform: scale(1.02);
}
	
@keyframes pulsate {
  0%, 100% { transform: scale(1); }
  4% { transform: scale(1.03); }
  8% { transform: scale(1); }
  12% { transform: scale(1.03); }
  16%, 100% { transform: scale(1); }
}

.logo.pulsate {
  animation: pulsate 3s ease-in-out infinite;
}

.search-container {
	position: relative;
	width: 100%;
	max-width: 650px;
	z-index: 1000;
	display: flex;
	align-items: stretch;
}
.search-select-wrapper {
	position: relative;
	width: 140px;
	margin-right: 10px;
}
.search-select {
	width: 100%;
	height: 100%;
	padding: 10px 30px 10px 15px;
	font-size: 14px;
	border: none;
	border-radius: 24px;
	background-color: rgba(48, 49, 52, 0.7);
	color: #e8eaed;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: background-color 0.3s;
	outline: none;
}
.search-select:hover {
	background-color: rgba(60, 64, 67, 0.9);
}
.search-select option {
	background-color: #202124;
	color: #e8eaed;
	padding: 5px;
	cursor: pointer;
}
.search-select-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #e8eaed;
	font-size: 12px;
}
.search-input-wrapper {
	flex-grow: 1;
	display: flex;
	align-items: stretch;
	background-color: rgba(32, 33, 36, 0.8);
	border-radius: 24px;
	overflow: hidden;
	position: relative;
}
.search-input {
	flex-grow: 1;
	padding: 10px 15px;
	font-size: 14px;
	border: none;
	background-color: transparent;
	color: #e8eaed;
}
.search-input:focus {
	outline: none;
}
/* Focus visible pour navigation clavier */
.search-input:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid #8ab4f8;
    outline-offset: 2px;
    border-radius: 4px;
}
.search-input::placeholder {
	color: #9aa0a6;
}
.search-button {
	padding: 10px 20px;
	font-size: 14px;
	border: none;
	background-color: rgba(60, 64, 67, 0.9);
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.3s;
}
.search-button:hover {
	background-color: rgba(80, 84, 87, 1);
}
#space {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	transition: opacity 0.5s ease, filter 0.5s ease;
	pointer-events: none;
}
.footer {
	position: fixed;
	bottom: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
}
.footer-button {
	padding: 10px 20px;
	margin: 0 10px;
	font-size: 14px;
	border: none;
	border-radius: 20px;
	background-color: rgba(48, 49, 52, 0.7);
	color: #e8eaed;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}
.footer-button:hover {
	background-color: rgba(60, 64, 67, 0.9);
}
.animation-control {
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 1000;
	background: none;
	border: none;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s;
}
.animation-control:hover {
	opacity: 1;
}
.animation-control i {
	font-size: 24px;
	color: #e8eaed;
}
.autocomplete-items {
	display: none;
	margin-top: 5px;
	padding: 2px 5px;
	position: absolute;
	border: 1px solid #28282a;
	z-index: 1001;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 300px;
	overflow-y: auto;
	background-color: rgba(32, 33, 36, 0.95);
	border-radius: 12px;
}
.autocomplete-items div {
    padding: 1px 5px;
    cursor: pointer;
}
.autocomplete-items div:hover {
	background-color: rgba(60, 64, 67, 1);
    border-radius: 6px;
}
.autocomplete-items .company-name {
	font-weight: bold;
}
.autocomplete-items .company-siren {
	font-size: 0.9em;
	color: #9aa0a6;
}
.autocomplete-active {
	background-color: rgba(60, 64, 67, 1) !important;
}

.company-details small {
    font-size: 0.8em;
    color: #ffffffb0;
}

/* Animation du chargement */
.search-loading-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3); /* Darker background overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Classe active pour afficher l'animation */
.search-loading-effect.active {
    opacity: 1;
}

/* L'élément animé (la barre lumineuse) */
.loading-beam {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: beam-sweep 1.2s ease-in-out infinite;
}

/* Définition de l'animation */
@keyframes beam-sweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}


/* Notification */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(32, 33, 36, 0.9);
    color: #e8eaed;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification i {
    margin-right: 10px;
    font-size: 18px;
    color: #ff6b6b;
}

.notification span {
    font-size: 14px;
}

/* overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9; /* Juste en-dessous des éléments à préserver */
}

body.overlay-active #overlay {
  display: block;
}

/* SEO Title (H1) */
.seo-title {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    max-width: 600px;
    opacity: 0.9;
    padding: 0 20px;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Tagline */
.hero-tagline {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    z-index: 10;
    max-width: 600px;
    padding: 0 20px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== COMMON SECTION STYLES ===== */
.section-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 60px 0;
}

/* ===== SLIDE 2 : STATS SECTION ===== */
.stats-section {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 10, 0.7);
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number, .stat-number-text {
    font-size: 3.5rem;
    font-weight: 200;
    color: #ffffff;
    display: inline;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* ===== SLIDE 3 : HOW SECTION ===== */
.how-section {
    position: relative;
    z-index: 1;
    background: rgba(13, 13, 13, 0.7);
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step:last-of-type {
    border-right: none;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

.step-connector {
    display: none;
}

/* ===== SLIDE 4 : FEATURES SECTION ===== */
.features-section {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 10, 0.7);
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
}

.feature-card {
    background: rgba(10, 10, 10, 0.9);
    padding: 45px 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: #0f0f0f;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.feature-card a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.2s;
}

.feature-card a:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== SLIDE 5 : USECASES SECTION ===== */
.usecases-section {
    position: relative;
    z-index: 1;
    background: rgba(13, 13, 13, 0.7);
    padding: 120px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.usecase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.usecase-card:last-child {
    border-right: none;
}

.usecase-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.usecase-icon {
    margin-bottom: 20px;
}

.usecase-icon i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.usecase-content h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}

.usecase-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

/* ===== SLIDE 6 : CTA SECTION ===== */
.cta-section {
    background: #0a0a0a;
    padding: 140px 20px 80px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.cta-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 50px 0;
    font-weight: 300;
}

.cta-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 45px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button i {
    margin-right: 10px;
    font-size: 0.85rem;
}

.cta-footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-footer a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablette (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 60px 20px 80px;
    }

    .seo-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 90%;
        margin: 15px auto;
        font-size: 1rem;
    }

    .logo img {
        width: 220px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .hero-tagline {
        bottom: 60px;
        font-size: 0.85rem;
    }

    /* Stats responsive */
    .stats-section {
        padding: 80px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 30px 15px;
    }

    .stat-item:nth-child(3), .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .stat-number, .stat-number-text {
        font-size: 2.5rem;
    }

    /* How section responsive */
    .how-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 0.95rem;
        margin-bottom: 50px;
    }

    .steps-container {
        flex-direction: column;
        gap: 0;
    }

    .step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 35px 20px;
    }

    .step:last-of-type {
        border-bottom: none;
    }

    /* Features responsive */
    .features-section {
        padding: 80px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 35px 30px;
    }

    /* Usecases responsive */
    .usecases-section {
        padding: 80px 20px;
    }

    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecase-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 30px 20px;
    }

    .usecase-card:nth-child(3), .usecase-card:nth-child(4) {
        border-bottom: none;
    }

    /* CTA responsive */
    .cta-section {
        padding: 100px 20px 60px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .search-container {
        max-width: 90%;
        padding: 0 15px;
        flex-direction: column;
        gap: 10px;
    }

    .search-select-wrapper {
        width: 100%;
        margin-right: 0;
    }

    .search-input-wrapper {
        width: 100%;
    }

    .search-input,
    .search-select {
        min-height: 44px;
        padding: 12px 15px;
    }

    .search-button {
        padding: 12px 20px;
        min-height: 44px;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
    }

    .footer-button {
        margin: 0;
        width: 80%;
        max-width: 200px;
        min-height: 44px;
    }

    .autocomplete-items {
        max-height: 250px;
    }

    .notification {
        width: 90%;
        left: 5%;
        transform: translateX(0);
        padding: 10px 15px;
    }

    .notification.show {
        transform: translateX(0) translateY(10px);
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Hero section : hauteur complète avec safe-area */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height - meilleur pour mobile */
        padding: 30px 15px 100px; /* Plus de padding en bas pour tagline + scroll */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .seo-title {
        font-size: 0.85rem;
        margin: 10px auto;
        position: relative;
        top: auto;
        transform: none;
    }

    .scroll-indicator {
        display: block;
        bottom: 15px;
    }

    .scroll-indicator i {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .hero-tagline {
        bottom: 50px;
        font-size: 0.75rem;
        padding: 0 15px;
        max-width: 100%;
    }

    /* Stats mobile */
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 25px 10px;
    }

    .stat-number, .stat-number-text {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* How section mobile */
    .how-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 0.8rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .steps-container {
        width: 100%;
        align-items: center;
    }

    .step {
        padding: 30px 20px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-number {
        text-align: center;
    }

    .step-icon {
        margin: 0 auto 15px;
    }

    .step-icon i {
        font-size: 1.4rem;
    }

    .step h3 {
        font-size: 1rem;
        text-align: center;
    }

    .step p {
        font-size: 0.85rem;
        text-align: center;
    }

    /* Features mobile */
    .features-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Usecases mobile */
    .usecases-section {
        padding: 60px 0;
    }

    .usecases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .usecase-card {
        padding: 25px 15px;
    }

    .usecase-icon i {
        font-size: 1.3rem;
    }

    .usecase-content h3 {
        font-size: 0.85rem;
    }

    .usecase-content p {
        font-size: 0.75rem;
    }

    /* CTA mobile */
    .cta-section {
        padding: 80px 20px 50px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-tagline {
        font-size: 0.85rem;
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.85rem;
    }

    .cta-footer {
        margin-top: 60px;
    }

    .logo img {
        width: 180px;
    }

    .logo {
        margin-bottom: 15px;
    }

    /* Barre de recherche : optimisée mobile */
    .search-container {
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .search-input-wrapper {
        flex-direction: row;
        border-radius: 20px;
    }

    .search-input {
        font-size: 16px; /* Empêche le zoom iOS sur focus */
        padding: 12px 10px;
        min-width: 0; /* Permet de rétrécir */
        flex: 1;
    }

    .search-input::placeholder {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-button {
        padding: 12px 12px;
        font-size: 12px;
        white-space: nowrap;
        border-radius: 0 20px 20px 0;
        flex-shrink: 0;
    }

    .search-select {
        font-size: 16px;
    }

    .footer-button {
        font-size: 13px;
        padding: 10px 15px;
    }

    .autocomplete-items {
        max-height: 200px;
    }

    .autocomplete-items div {
        padding: 8px 10px;
    }

    .autocomplete-items .company-name {
        font-size: 14px;
    }

    .autocomplete-items .company-siren {
        font-size: 12px;
    }
}

/* Très petit mobile (max-width: 320px) */
@media (max-width: 320px) {
    .logo img {
        width: 150px;
    }

    .search-container {
        max-width: 98%;
        padding: 0 8px;
    }

    .footer-button {
        font-size: 12px;
        width: 90%;
    }
}

