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

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

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

/* Ensure all containers respect viewport */
.container,
.nav-container,
.hero-container,
.footer-klik-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-y: visible; /* Pas de scroll local */
}

/* Force all sections to respect viewport */
section,
.hero,
.services,
.analyses,
.sectors,
.contact,
.navbar {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible; /* Permet le scroll de la page principale */
    position: relative;
}

/* Ensure all child elements respect parent width */
section > *,
.hero > *,
.services > *,
.analyses > *,
.sectors > *,
.contact > * {
    max-width: 100%;
    box-sizing: border-box;
    overflow-y: visible; /* Pas de scroll local, seulement le scroll de la page */
}

/* Prevent text overflow */
p, h1, h2, h3, h4, h5, h6, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure buttons don't overflow */
.btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .btn {
        white-space: normal;
    }
}

:root {
    /* Couleurs du logo - Bleu et Gris */
    --logo-blue: #38b6ff;
    --logo-blue-dark: #0088cc;
    --logo-blue-light: #5ec9ff;
    --logo-gray: #68696e;
    --logo-gray-dark: #4a4b50;
    --logo-gray-light: #8a8c92;
    
    /* Couleurs principales (basées sur le logo) */
    --primary-color: #38b6ff;
    --secondary-color: #5ec9ff;
    --accent-color: #0088cc;
    
    /* Light Mode */
    --bg-light: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-dark: #1e293b;
    --text-gray: #68696e;
    --text-light-gray: #8a8c92;
    --border-color: #e2e8f0;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, #38b6ff 0%, #5ec9ff 100%);
    --gradient-2: linear-gradient(135deg, #5ec9ff 0%, #7fd4ff 100%);
    --gradient-3: linear-gradient(135deg, #0088cc 0%, #38b6ff 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        max-width: 100%;
    }
}

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

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}


.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

/* Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1001;
    padding: 0.5rem 1rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.menu-btn:hover {
    color: var(--primary-color);
}

.menu-btn:focus {
    outline: none;
}

/* Modal Menu */
.modal-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-menu.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-close:focus {
    outline: none;
}

.modal-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-links li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
}

.modal-links li:last-child {
    border-bottom: none;
}

.modal-link {
    display: block;
    padding: 1.2rem 0;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.modal-link:hover {
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .modal-content {
        width: 95% !important;
        max-width: 95vw !important;
        padding: 1.5rem 1rem !important;
        border-radius: 15px;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .modal-link {
        padding: 1rem 0;
        font-size: 1rem;
    }
    
    .modal-close {
        font-size: 1.5rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Mobile Menu Button Visible */
@media (max-width: 768px) {
    .menu-btn {
        display: block !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .logo-text {
        font-size: 1.2rem !important;
    }
    
    /* Prevent text overlap */
    body {
        overflow-x: hidden !important;
    }
    
    p, h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .menu-btn {
        font-size: 1.5rem;
        padding: 0.5rem 0.5rem;
    }
    
    .logo-text {
        font-size: 1rem !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
    
    p, h1, h2, h3, h4, h5, h6 {
        font-size: 0.95em !important;
        line-height: 1.5 !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    left: 0;
    right: 0;
}

.hero-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-top: 100px; /* Pour éviter que le logo soit caché par la navbar */
}

.hero-logo {
    width: 300px;
    height: 300px;
    max-width: 90vw;
    max-height: 90vw;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.4);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    overflow: hidden;
}

.market-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    overflow: hidden;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    max-width: 100%;
}

@media (max-width: 768px) {
    .particle {
        display: none;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 10px !important;
        gap: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
}

.hero-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 100px; /* Pour éviter que le logo soit caché par la navbar */
}

@media (max-width: 1024px) {
    .hero-logo-section {
        grid-column: 1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-logo-section {
        margin-bottom: 1.5rem;
        order: -1;
        padding-top: 80px; /* Pour éviter que le logo soit caché par la navbar */
    }
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .hero-content {
        order: 0;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
}

.hero-title .title-highlight {
    color: var(--logo-blue);
}

.title-main {
    display: block;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-highlight {
    display: block;
    color: var(--logo-blue);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* Dashboard */
.hero-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 1s ease-out 0.5s both;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible; /* Pas de scroll local */
}

@media (max-width: 1024px) {
    .hero-dashboard {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-dashboard {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1rem !important;
    }
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible; /* Pas de scroll local */
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trend-up {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.mini-chart {
    height: 120px;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    overflow-y: visible; /* Pas de scroll local */
}

.competitor-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 768px) {
    .bar-item {
        gap: 0.5rem;
    }
}

.bar-label {
    min-width: 100px;
    max-width: 30%;
    font-size: 0.85rem;
    color: var(--text-gray);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .bar-label {
        min-width: 70px;
        max-width: 25%;
        font-size: 0.75rem;
    }
}

.bar {
    flex: 1;
    min-width: 0;
    height: 8px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.bar-fill {
    height: 100%;
    width: var(--width);
    background: var(--gradient-1);
    border-radius: 10px;
    animation: barFill 1.5s ease-out;
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes barFill {
    from {
        width: 0;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.bar-value {
    min-width: 40px;
    max-width: 20%;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .bar-value {
        min-width: 35px;
        max-width: 18%;
        font-size: 0.75rem;
    }
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stats-card .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.stats-card .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stats-card .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stats-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Djibouti Card */
.djibouti-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.djibouti-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.djibouti-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.djibouti-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.2) 0%, rgba(0, 136, 204, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.djibouti-text {
    padding: 2rem;
    text-align: center;
    background: var(--bg-light);
}

.djibouti-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.djibouti-text strong {
    color: var(--primary-color);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 182, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(56, 182, 255, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}

.carousel-btn:hover {
    background: rgba(56, 182, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.5);
}

.carousel-btn svg {
    stroke: white;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(56, 182, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: rgba(56, 182, 255, 1);
    border-color: rgba(56, 182, 255, 1);
    transform: scale(1.2);
}

.dot:hover {
    border-color: rgba(56, 182, 255, 1);
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 1rem;
    }
    
    .carousel {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-gray);
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-gray);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--logo-blue);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .section-subtitle {
        text-align: center;
    }
}

/* Centrer les sous-titres spécifiques */
#expertise .section-subtitle,
#services .section-subtitle {
    text-align: center !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    overflow-y: visible; /* Pas de scroll local */
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--logo-blue);
    text-transform: capitalize;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: justify;
}

/* Sectors Section */
.sectors {
    padding: 100px 0;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .sectors {
        padding: 60px 0;
    }
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.sector-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.sector-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 250px;
    overflow: hidden;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(37, 99, 235, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.sector-content {
    padding: 1.5rem;
}

.sector-content h3 {
    font-size: 1.5rem;
    color: var(--logo-blue);
    margin-bottom: 0.75rem;
}

.sector-content > p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sector-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sector-stats span {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
}

/* Analyses Section */
.analyses {
    padding: 100px 0;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .analyses {
        padding: 60px 0;
    }
}

.analyses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-y: visible; /* Pas de scroll local */
}

@media (max-width: 768px) {
    .analyses-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        width: 100% !important;
        max-width: 100% !important;
    }
}

.analyses-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--logo-blue);
    text-align: center;
}

.analyses-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.chart-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: visible; /* Pas de scroll local */
}

.chart-container canvas {
    max-width: 100%;
    height: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-y: visible; /* Pas de scroll local */
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        width: 100% !important;
        max-width: 100% !important;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 2rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--logo-blue);
}

.info-item p {
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Footer KLIK */
.footer-klik {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

.footer-klik.scrolled {
    transform: translateY(calc(100% - 20px));
}

.footer-klik.visible {
    transform: translateY(0);
}

.footer-klik-container {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-klik-bg {
    background: #9333ea;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    transition: min-height 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-klik.scrolled .footer-klik-bg {
    min-height: 20px;
}

.footer-waves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
}

.wave {
    position: absolute;
    top: 0;
    width: 200%;
    height: 100%;
    left: -50%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .wave {
        width: 300%;
        left: -100%;
    }
}

.wave-1 {
    animation: wave-slow 20s linear infinite;
    opacity: 0.6;
}

.wave-2 {
    animation: wave-medium 15s linear infinite;
    opacity: 0.4;
}

.wave-3 {
    animation: wave-fast 10s linear infinite;
    opacity: 0.5;
}

.wave-4 {
    animation: wave-reverse 12s linear infinite;
    opacity: 0.3;
}

@keyframes wave-slow {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

@keyframes wave-medium {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

@keyframes wave-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

@keyframes wave-reverse {
    0% { transform: translateX(50%); }
    100% { transform: translateX(0); }
}

.footer-klik-content {
    position: relative;
    z-index: 10;
    padding: 1rem 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-klik.scrolled .footer-klik-content {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.footer-klik-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-klik-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-klik-logo-wrapper {
    background: white;
    backdrop-filter: none;
    border-radius: 50%;
    padding: 0.25rem;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    width: 60px;
    height: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-klik-logo {
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: block !important;
    object-fit: contain;
    filter: none;
    opacity: 1 !important;
    visibility: visible !important;
    background: white;
    border-radius: 50%;
    padding: 0.25rem;
    transform: scale(1);
}

.footer-klik-text {
    text-align: center;
    color: white;
}

.footer-klik-main-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.footer-klik-bold {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.footer-klik-copyright {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-klik-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0.5;
}

.footer-klik-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    flex: 1;
    max-width: 4rem;
}

.footer-klik-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Desktop Large */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .hero-dashboard {
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 80px 10px 40px !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
    }
    
    .hero-logo-section {
        margin-bottom: 1.5rem !important;
        order: -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 80px !important; /* Pour éviter que le logo soit caché par la navbar */
    }
    
    .hero-logo {
        width: 200px !important;
        height: 200px !important;
        max-width: 70vw !important;
        max-height: 70vw !important;
        border-width: 6px;
    }
    
    .hero-content {
        order: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-badge {
        font-size: 0.85rem !important;
        padding: 0.4rem 1.2rem !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-dashboard {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1rem !important;
    }
    
    .dashboard-card {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .stats-card {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .bar-label {
        min-width: 60px !important;
        max-width: 25% !important;
        font-size: 0.75rem !important;
    }
    
    .bar-value {
        min-width: 35px !important;
        max-width: 18% !important;
        font-size: 0.75rem !important;
    }
    
    .competitor-bars {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .bar-item {
        width: 100% !important;
        max-width: 100% !important;
        gap: 0.5rem !important;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Analyses */
    .analyses-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-top: 2rem !important;
    }
    
    .analyses-text h3 {
        font-size: 1.5rem;
    }
    
    .chart-container {
        height: 300px !important;
        padding: 1rem !important;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-top: 2rem !important;
    }
    
    .info-item {
        padding: 1rem !important;
        flex-direction: column;
        text-align: center;
    }
    
    /* Buttons */
    .btn {
        width: 100% !important;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    /* Footer KLIK */
    .footer-klik-logo-wrapper {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
    }
    
    .footer-klik-logo {
        height: 100% !important;
        width: 100% !important;
    }
    
    .footer-klik-content {
        padding: 0.75rem 1rem !important;
    }
}


/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 70px 10px 30px !important;
    }
    
    .hero-logo {
        width: 150px !important;
        height: 150px !important;
        border-width: 4px;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-badge {
        padding: 0.35rem 1rem;
        font-size: 0.75rem;
    }
    
    .service-card {
        padding: 1.25rem !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .analyses-text h3 {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 10px !important;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .footer-klik-logo-wrapper {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
    }
    
    .footer-klik-main-text {
        font-size: 0.75rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .hero-logo {
        width: 120px !important;
        height: 120px !important;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

/* Amélioration pour les boutons WhatsApp et Email */
@media (max-width: 768px) {
    .analyses-text > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .analyses-text > div[style*="display: flex"] .btn {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }

    .nav-link {
        font-size: 1rem;
    }

    .analyses-content {
        gap: 2rem;
    }

    .contact-content {
        gap: 2rem;
    }
}

/* Amélioration pour les très petits écrans */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .logo-text {
        font-size: 1rem;
    }
}

