/* QUNOX - Design unique et moderne */

/* Base responsive */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    overflow-x: hidden;
}

:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* Curseur personnalisé */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    /* display: none; */
}

/* Conteneur logo rond séparé */
.nav-logo-container {
    position: fixed;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.nav-logo-container:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 20px 40px rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.35);
}

.nav-logo-container a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(1.4) contrast(1.2);
    transition: all 0.3s ease;
}

.nav-logo-container:hover .nav-logo-img {
    filter: brightness(0) invert(1);
}

/* Navigation */
.nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.nav:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 20px 40px rgba(99, 102, 241, 0.4);
    background: rgba(255, 255, 255, 0.35);
}

.nav:hover ~ .cursor {
    opacity: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

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

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

/* Couleurs spécifiques pour chaque lien */
.nav-link[href="#top"]::after,
.nav-link[href="index.html"]::after {
    background: #ff2e93; /* Rose flashy */
}

.nav-link[href="#concept"]::after,
.nav-link[href="concept.html"]::after {
    background: #00ff9d; /* Vert néon */
}

.nav-link[href="#work"]::after {
    background: #ffffff; /* Blanc */
}

.nav-link[href="#contact"]::after {
    background: #ff9d00; /* Orange */
}

/* Hero section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.moving-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.element-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-100px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 16px 33px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(45deg, var(--dark), #1e293b);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-stats {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    min-width: 120px;
}

.stat-number, .stat-mult {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    font-family: inherit;
    display: inline;
}

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

.stat-mult {
    color: red !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    background: yellow !important;
    font-family: inherit;
    font-size: 3.2rem;
    font-weight: 800;
    display: inline;
}

.concept-logo {
    margin-bottom: 50px;
}

.concept-logo img {
    height: 250px;
    animation: logoGlow 1.5s ease-out forwards;
    will-change: transform, filter, opacity;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.concept-logo img:hover {
    transform: scale(1.15);
    filter: brightness(1.8) contrast(1.5) drop-shadow(0 0 50px rgba(99, 102, 241, 0.9));
}

@keyframes logoGlow {
    0% {
        filter: brightness(1.0) contrast(1.0);
        transform: scale(0.6);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.6) contrast(1.3) drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
    }
}

.concept-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-logo-bubble {
    margin-bottom: 40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-logo-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                -20px 0 30px var(--primary), /* Bleu à gauche, lueur plus faible */
                20px 0 30px #ff2e93, /* Rose à droite, lueur plus faible */
                0 0 0 3px var(--white); /* Liseret blanc */
}

.concept-logo-bubble img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(1.4) contrast(1.2);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.concept-logo-bubble:hover img {
    filter: brightness(0) invert(1);
}

.concept-header h2 {
    font-size: 48px;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.concept-card {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.concept-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4); /* Accent color glow */
}

.card-icon {
    display: block;
    margin: 0 auto 20px auto;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.concept-card:hover .card-icon {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.concept-card:hover .card-icon svg {
    transform: scale(1.1);
    color: #ff2e93; /* Rose flashy */
}

.concept-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.concept-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Section réalisations */
.work {
    padding: 100px 5%;
    background: rgba(255, 255, 255, 0.02);
}

.work-header {
    text-align: center;
    margin-bottom: 80px;
}

.work-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.work-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.work-showcase {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0 auto;
}

.project-card.featured {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    position: relative;
    height: 700px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: var(--white);
}

.project-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.project-stats {
    display: flex;
    gap: 20px;
}

.project-stats span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.project-mini {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1.15;
    cursor: pointer;
    width: 100%;
    min-width: 0;
}

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

.project-mini:hover img {
    transform: scale(1.05);
}

.mini-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: var(--white);
}

.mini-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.mini-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact */
.contact {
    padding: 100px 5%;
    background: linear-gradient(45deg, var(--dark), #1e293b);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 40px;
    align-items: start;
}

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

.contact-video {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-video video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Logo QUNOX dans la section contact */
.contact-logo {
    justify-content: center;
    margin: 40px 0;
}

.contact-logo-img {
    height: 160px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    color: white;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.info-item:hover .info-icon svg {
    color: #6366f1;
}

.info-item span, .info-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #6366f1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 18px 20px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
}

/* Footer */
.footer {
    padding: 30px 5% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray);
    font-weight: 500;
}

.footer-info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.footer-icon svg {
    width: 100%;
    height: 100%;
}

.footer-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-item a:hover {
    color: var(--accent);
}

.footer-copy p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .floating-stats {
        right: 20px;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .contact-logo-img {
        height: 140px;
    }
}

@media (max-width: 992px) {
    .nav {
        padding: 15px 25px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
        transform: none;
        gap: 40px;
    }
    
    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .work-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-video {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-logo-img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    body#index section.contact .contact-logo,
    body#index section.contact .contact-logo *,
    body#index section.contact img.contact-logo-img {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        pointer-events: none !important;
    }
    body {
        padding-top: 60px;
    }
    
    .cursor {
        display: none !important;
    }
    
    .nav {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 100%;
        padding: 12px 15px;
        gap: 15px;
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
    }
    
    .nav-logo-container {
        top: 14px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        flex-shrink: 0;
    }
    
    .nav-logo-img {
        height: 35px;
        filter: brightness(1.6) contrast(1.3);
    }
    
    .nav-menu {
        gap: 6px;
        background: rgba(255, 255, 255, 0.1);
        padding: 6px;
        border-radius: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 6px 10px;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero {
        padding-top: 0px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding-bottom: 140px;
    }
    
    .hero-left {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.1;
        text-align: center;
    }
    .hero-title .line {
        font-size: 1.35em;
        display: block;
        text-align: center;
    }
    .hero-title .line:not(.highlight) {
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
    .hero-title .highlight {
        font-size: 1.35em;
        letter-spacing: 0.01em;
        text-transform: uppercase;
    }
    
    .hero-subtitle {
        margin-left: 55px;
        margin-right: 55px;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-stats {
        position: static;
        flex-direction: column;
        justify-content: center;
        margin-top: 40px;
        transform: none;
        gap: 20px;
        width: 100%;
    }
    
    .stat-card {
        padding: 20px 15px;
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number, .stat-mult {
        font-size: 2.6rem;
        font-weight: 800;
        color: var(--accent);
        line-height: 1;
        letter-spacing: -1px;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .concept {
        padding: 60px 15px;
    }
    
    .concept-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .concept-card {
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .work {
        padding: 60px 15px;
    }
    
    .work-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .contact {
        padding: 60px 15px;
    }
    
    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }
    
    .contact-logo-img {
        height: 100px;
        margin: 20px 0;
    }
    
    .contact-form {
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-video {
        width: 100%;
        max-width: 100%;
        height: 300px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .contact-video video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #111827;
    }
    
    .footer {
        padding: 40px 15px 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-brand img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .nav {
        top: 10px;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .nav-logo-container {
        width: 45px;
        height: 45px;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hero {
        padding: 100px 5% 60px;
    }
    
    .hero-title {
        font-size: calc(2rem * 1.8);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .concept,
    .work,
    .contact {
        padding: 50px 5% 60px;
    }
    
    .concept-title,
    .work-title,
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-logo-img {
        height: 80px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-video {
        height: 250px;
    }
    
    .footer {
        padding: 30px 5% 20px;
    }
}

/* Styles pour la page Concept */
.concept-hero {
    min-height: 80vh;
}

.concept-principles {
    padding: 100px 5%;
    background: linear-gradient(45deg, var(--dark), #1e293b);
}

.concept-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4); /* Lueur accent (turquoise) */
    background: rgba(255, 255, 255, 0.1); /* Ajouté pour correspondre à l'effet de survol de concept-card */
}

.principle-card .principle-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.principle-card:hover .principle-icon img {
    transform: scale(1.1);
}

.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover .principle-icon {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.principle-icon-pink {
    color: #ff2e93; /* New class for pink color, to be added/removed by JS */
    transition: color 0.3s ease; /* Ensure smooth transition for color */
}

.principle-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.principle-card p {
    color: var(--gray);
    line-height: 1.6;
}

.concept-advantages {
    padding: 100px 5%;
    background: var(--dark);
}

.advantages-content {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(45deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
}

.advantage-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.advantage-item p {
    color: var(--gray);
    line-height: 1.6;
}

.concept-cta {
    padding: 100px 5%;
    background: linear-gradient(45deg, var(--dark), #1e293b);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Responsive pour la page Concept */
@media (max-width: 992px) {
    .concept-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .concept-content {
        grid-template-columns: 1fr;
    }
    
    .principle-card {
        padding: 30px;
    }
    
    .advantage-item {
        padding: 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Styles pour la page Réalisations */
.realisations-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.realisations-projects {
    padding: 100px 5%;
    background: var(--dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
}

.project-card.featured {
    grid-column: 1 / -1;
}

.project-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 133%; /* 3/4 portrait */
    overflow: hidden;
}

.project-image img,
.project-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img,
.project-card:hover .project-image video {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.project-stats {
    display: flex;
    gap: 20px;
}

.project-stats span {
    font-size: 14px;
    color: var(--accent);
}

/* Section Témoignages */
.testimonials {
    padding: 100px 5%;
    background: linear-gradient(45deg, var(--dark), #1a1f35);
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: var(--accent);
}

.author-role {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA Réalisations */
.realisations-cta {
    padding: 100px 5%;
    background: var(--dark);
    text-align: center;
}

.realisations-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.realisations-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.realisations-cta p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
    }
}
@media (max-width: 600px) {
    .project-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        width: 100%;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .project-grid::-webkit-scrollbar {
        display: none;
    }
    .project-mini {
        min-width: 70vw;
        max-width: 80vw;
        flex: 0 0 auto;
        aspect-ratio: 1/1.15;
        border-radius: 18px;
    }
    .mini-info h4, .mini-info p {
        font-size: 1rem;
        text-align: left;
        padding-left: 8px;
    }
}

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

.realisations-hero .hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-bubbles {
    position: relative;
    width: 100%;
    height: 400px;
}

.bubble {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.bubble-1 {
    top: 20%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

.bubble-2 {
    bottom: 20%;
    right: 40%;
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.bubble-3 {
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bubble-3 img {
    padding: 20px 20px 40px 20px;
    filter: brightness(1.4) contrast(1.2);
}

.bubble-3:hover img {
    filter: brightness(0) invert(1);
}

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

@media (max-width: 992px) {
    .realisations-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-bubbles {
        height: 300px;
    }

    .bubble {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 600px) {
    .realisations-hero .bubble-3 {
        position: absolute;
        left: 24px;
        bottom: 24px;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 120px;
        height: 120px;
        background: rgba(255,255,255,0.13) !important;
        backdrop-filter: blur(10px) !important;
        border: 1.5px solid rgba(255,255,255,0.25) !important;
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .realisations-hero .bubble-3 img {
        width: 80% !important;
        height: 80% !important;
        object-fit: contain !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        padding: 0 !important;
        filter: none !important;
    }
    .realisations-hero .floating-bubbles {
        height: 180px !important;
        padding-bottom: 40px !important;
        overflow: visible !important;
    }
    .realisations-hero .hero-visual {
        overflow: visible !important;
    }

    .realisations-hero .hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .realisations-hero .hero-title .highlight,
    .realisations-hero .hero-title .line:last-child {
        display: inline-block;
        width: 90vw;
        max-width: 340px;
        text-align: center;
        white-space: normal;
        font-size: 2.1rem;
        letter-spacing: 0.01em;
    }
}

.concept-logo-bubble {
    text-align: center;
    margin-bottom: 50px;
}

.concept-logo-bubble .bubble {
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.concept-logo-bubble .bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 
                0 0 40px rgba(99, 102, 241, 0.7), /* Primary color glow */
                0 0 80px rgba(139, 92, 246, 0.7), /* Secondary color glow */
                0 0 120px rgba(6, 182, 212, 0.7); /* Accent color glow */
}

.concept-logo-bubble .bubble img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(1.4) contrast(1.2);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.concept-logo-bubble .bubble:hover img {
    filter: brightness(0) invert(1);
}

/* Styles pour la bulle du logo dans le hero de la page Concept */
.concept-hero-logo-bubble {
    position: absolute;
    top: auto;
    bottom: 30px;
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: auto;
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
}

.concept-hero-logo-bubble:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                -20px 0 30px var(--primary),
                20px 0 30px #ff2e93,
                0 0 0 3px var(--white);
}

.concept-hero-logo-bubble img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(1.4) contrast(1.2);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.concept-hero-logo-bubble:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
    .concept-hero-logo-bubble {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .concept-hero-logo-bubble {
        top: auto;
        bottom: 20px;
        right: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .concept-header,
    .concept-card,
    .work-header,
    .project-info,
    .contact-info,
    .footer,
    body {
        hyphens: none !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }
    .hero-title .line:last-child:not(.highlight) {
        font-size: 0.50em;
    }
}

/* Section logos clients */
.trusted-by {
    padding: 70px 0 40px 0;
    background: none;
    text-align: center;
}
.trusted-by h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.logos-slider {
    overflow: hidden;
    width: 900px;
    max-width: 100vw;
    position: relative;
    height: 120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    will-change: transform;
    transition: none;
}
.logo-card {
    position: relative;
    width: 90px;
    height: 90px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo-front,
.logo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-front {
    transform: rotateY(0deg);
}
.logo-back {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}
.logo-card:hover .logo-front {
    transform: rotateY(-180deg);
}
.logo-card:hover .logo-back {
    transform: rotateY(0deg);
}
.logos-track img {
    height: 90px;
    width: 90px;
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: transform 0.3s, opacity 0.3s;
    background: transparent;
}
.logo-qunox {
    filter: brightness(1.4) contrast(1.2) !important;
    opacity: 1 !important;
}
.logos-track img.logo-byd {
    width: 130px;
    max-width: 130px;
}
.logo-card .logo-byd {
    width: 130px;
    height: 130px;
}
.logo-card .logo-byd img {
    width: 130px;
    max-width: 130px;
    height: 130px;
    max-height: 130px;
}
.logo-card:has(img[src*="logo4.svg"]) {
    width: 156px;
    height: 156px;
}
.logo-card:has(img[src*="logo4.svg"]) img {
    width: 156px;
    max-width: 156px;
    height: 156px;
    max-height: 156px;
}
@keyframes logos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .logos-slider {
        width: 100%;
        max-width: 100%;
    }
    .logos-track {
        gap: 30px;
    }
    .logos-track img {
        height: 40px;
    }
}

.logo-card:has(.logo-front img[src*="logo4.svg"]) .logo-back .logo-qunox {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

/* Popup cookies RGPD */
#cookie-popup-bg {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(24,31,42,0.35) !important;
    backdrop-filter: blur(5px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
#cookie-popup {
    background: rgba(36,41,61,0.78) !important;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35) !important;
    padding: 36px 32px;
    max-width: 370px;
    width: 90vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: box-shadow 0.3s, transform 0.3s !important;
    z-index: 10000;
    pointer-events: auto !important;
    cursor: pointer;
}
#cookie-popup:hover {
    box-shadow: 0 16px 48px 0 rgba(99,102,241,0.35), 0 0 24px 0 #8b5cf6 !important;
    transform: translateY(-8px) scale(1.04) !important;
    background: rgba(35,41,70,0.55) !important;
    outline: 1px solid #fff !important;
}
#cookie-popup a {
    color: #8b5cf6;
    text-decoration: underline;
}
#cookie-accept {
    background: linear-gradient(90deg,#6366f1,#06b6d4);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(99,102,241,0.15);
    margin-top: 8px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
#cookie-accept:hover {
    background: linear-gradient(90deg,#7c3aed,#06b6d4);
    box-shadow: 0 2px 12px 2px rgba(99,102,241,0.18);
    transform: translateY(-2px) scale(1.07);
}

#cookie-popup:hover {
    /* Désactive tout effet de hover sur le panneau popup */
    box-shadow: 0 8px 32px rgba(0,0,0,0.35) !important;
    background: rgba(36,41,61,0.78) !important;
    transform: none !important;
}
#cookie-popup-bg:hover {
    background: rgba(24,31,42,0.35) !important;
}

.mail-link {
  color: #4f8cff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
}

@media (max-width: 768px) {
    .hero-title .highlight {
        font-size: 1.25em;
    }
}

@media (max-width: 480px) {
    .hero-title .highlight {
        font-size: 1.15em;
    }
}

@media (max-width: 768px) {
    .hero,
    .concept,
    .work,
    .contact {
        padding-left: 15px;
        padding-right: 15px;
    }
    .logos-slider {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero,
    .concept,
    .work,
    .contact {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
  .footer-desktop { display: none !important; }
  .footer-mobile { display: block !important; }
}
@media (min-width: 769px) {
  .footer-desktop { display: block !important; }
  .footer-mobile { display: none !important; }
}

@media (max-width: 768px) {
  .phone-mockup {
    padding-bottom: 70px;
  }
  .stat-top-mobile {
    left: 18px;
    top: 18px;
    transform: none;
  }
  .stat-bottom-mobile {
    right: 18px;
    left: auto;
    bottom: 18px;
    transform: none;
  }
  .floating-stats {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .stat-top-mobile, .stat-bottom-mobile {
    display: none !important;
  }
}

.calendly-bubble {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  position: fixed !important;
  right: 24px;
  bottom: 24px;
  z-index: 10020;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(34,211,238,0.18);
  visibility: visible !important;
  opacity: 1 !important;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0;
}
.calendly-bubble svg {
  width: 48px;
  height: 48px;
  display: block;
}
.calendly-icon-bg { display: contents; }

.calendly-bubble:hover {
  background: rgba(255,255,255,0.22);
  box-shadow: 0 8px 32px rgba(34,211,238,0.25);
  transform: translateY(-3px) scale(1.07);
  transition: all 0.25s cubic-bezier(.4,1.3,.6,1);
}

@media (max-width: 600px) {
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .phone-mockup {
    width: 92vw;
    max-width: 420px;
    min-width: 0;
    height: auto;
    background: linear-gradient(45deg, var(--dark), #1e293b);
    border-radius: 32px;
    padding: 18px 0 18px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .stat-top-mobile, .stat-bottom-mobile {
    margin: 0 auto 8px auto;
    width: 80%;
    min-width: 0;
    border-radius: 18px;
    padding: 12px 0;
  }
  .screen {
    width: 80%;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    border-radius: 18px;
    margin-bottom: 8px;
    overflow: hidden;
    background: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .screen video {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #111827;
    display: block;
  }
}

