/* Base et réinitialisation */
:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-muted: #9e9e9e;
    --color-accent: #ff3e6c;
    --color-secondary: #3d5afe;
    --color-card: #111111;
    --color-overlay: rgba(0, 0, 0, 0.7);
    --font-primary: 'Space Grotesk', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header et Navigation */
header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo-container {
    z-index: 1001;
}

.logo {
    height: 150px;
}

.main-nav {
    position: relative;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-medium);
}

.nav-links a:hover::after,
.nav-links li.active a::after {
    width: 100%;
}

/* Boutons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    font-size: 0.9rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-100%);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none;
}

.btn-outline:hover:before {
    width: 100%;
    transform: translateX(0);
}

.btn-outline:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Sections communes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

/* Services Section */
.services-preview {
    padding: 2rem 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
}

.service-svg {
    width: 100%;
    height: 100%;
    fill: var(--color-accent);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    color: var(--color-muted);
    text-align: center;
}

/* Page Hero */
.hero-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 62, 108, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.accent-text {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    opacity: 0.6;
}

.tagline-container {
    margin-bottom: 40px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--color-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Client bubbles */
.client-bubbles {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.client-bubble {
    background: linear-gradient(135deg, rgba(255, 62, 108, 0.05) 0%, rgba(61, 90, 254, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.client-bubble h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.client-bubble p {
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.client-bubble p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.client-bubble.pro {
    border-left: 3px solid var(--color-accent);
    animation: slideInLeft 0.7s ease-out forwards;
}

.client-bubble.perso {
    border-left: 3px solid var(--color-accent);
    animation: slideInRight 0.7s ease-out forwards;
    animation-delay: 0.2s;
}

/* Page titles */
.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

/* Legal page */
.legal-page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 220px);
    justify-content: center;
}

.legal-info-section {
    padding: 4rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legal-info-section .container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-info-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.legal-status {
    text-align: center;
}

.status-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    opacity: 0.9;
}

.legal-status h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.legal-status p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.coming-soon p {
    font-weight: 500;
    margin-bottom: 1rem;
}

.coming-soon ul {
    list-style-type: none;
    padding: 0;
}

.coming-soon ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.coming-soon ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

.contact-info {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Portfolio */
.portfolio-hero {
    text-align: center;
    padding: 3rem 1rem;
}

.subtitle {
    color: var(--color-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.portfolio-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--color-accent);
    color: white;
}

.portfolio-item {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: auto;
}

.portfolio-details {
    padding: 2rem;
}

.portfolio-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}


.project-description {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail h3 {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.project-links {
    margin-top: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--color-accent);
}

.arrow-right {
    width: 16px;
    height: 16px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
}

.cta-section {
    text-align: center;
    padding: 4rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer */
footer {
    background-color: var(--color-card);
    padding: 1%;
    position: relative;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .client-bubbles {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .client-bubble {
        flex: 1;
        max-width: 400px;
    }
}

@media (max-width: 1440px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 20px 5%;
        position: relative;
        z-index: 100;
    }
    
    .logo-container {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .logo {
        height: 200px;
    }
    
    .main-nav {
        width: 100%;
        padding: 5px;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }
    
    section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 150px;
    }
    
    .logo-container {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .nav-links {
        display: flex;
        gap: 40px;
        align-items: flex-end;
        align-content: flex-end;
        justify-content: space-evenly;
        flex-direction: column;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .legal-info-section {
        padding: 3rem 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-status h2 {
        font-size: 1.5rem;
    }
    
    .legal-status p {
        font-size: 1rem;
    }
    
    section {
        padding: 40px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .services-preview {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        gap: 25px !important;
    }
    
    .service-card {
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 150px;
    }
    
    .logo-container {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 5px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
}

/* Styles supplémentaires pour les informations légales - Version sobre avec effet givré */
.legal-date {
    text-align: center;
    color: var(--color-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.section-icon svg {
    margin-right: 0.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.legal-details, .privacy-info, .cgu-content {
    display: grid;
    gap: 1rem;
}

.legal-item, .privacy-item, .cgu-item {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.legal-item:hover, .privacy-item:hover, .cgu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.legal-item strong, .privacy-item strong, .cgu-item strong {
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    min-width: 140px;
    font-weight: 600;
}

.legal-item a, .privacy-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-item a:hover, .privacy-item a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.contact-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-section .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section .contact-info a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-item strong, .privacy-item strong, .cgu-item strong {
        display: block;
        margin-bottom: 0.3rem;
        min-width: auto;
    }
    
    .section-icon {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .legal-section h2 {
        justify-content: center;
        text-align: center;
    }
}

/* Bannière de cookies - Version claire */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #ff3e6c;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #ff3e6c;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.cookie-accept {
    background: linear-gradient(135deg, #ff3e6c 0%, #e6356a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 62, 108, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 108, 0.4);
}

.cookie-refuse {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #dee2e6;
}

.cookie-refuse:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-2px);
}

.cookie-link {
    color: #ff3e6c;
    text-decoration: underline;
    font-size: 0.85em;
    margin-left: 10px;
    font-weight: 500;
}

.cookie-link:hover {
    color: #e6356a;
}

.trust-teaser {
    padding: 60px 0;
    text-align: center;
}

.trust-teaser .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-teaser h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 15px;
}

.trust-teaser p {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-trust {
    background: #ff3e6c;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-trust:hover {
    background: #e6356a;
    transform: translateY(-2px);
}

.btn-trust .arrow {
    transition: transform 0.3s ease;
}

.btn-trust:hover .arrow {
    transform: translateX(5px);
}

/* Responsive pour la bannière de cookies */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .cookie-text p {
        font-size: 0.85em;
        line-height: 1.3;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.85em;
    }
    
    .cookie-link {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }
    
    .cookie-text h3 {
        font-size: 1em;
    }
    
    .cookie-text p {
        font-size: 0.8em;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.8em;
    }
}
/* ===== POPUPS SMARTPIX & SILLAGE NOMADE ===== */
.smartpix-popups-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    pointer-events: none !important;
}

.smartpix-popup {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

.smartpix-popup-content {
    background: linear-gradient(135deg, rgba(255, 62, 108, 0.95) 0%, rgba(255, 80, 120, 0.95) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    width: 420px !important;
    box-shadow: 0 12px 40px rgba(255, 62, 108, 0.5) !important;
    position: relative !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.smartpix-popup-content.smartpix-popup-blue {
    background: linear-gradient(135deg, rgba(61, 90, 254, 0.95) 0%, rgba(80, 110, 255, 0.95) 100%) !important;
    box-shadow: 0 12px 40px rgba(61, 90, 254, 0.5) !important;
}

.smartpix-popup-close {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    color: white !important;
    cursor: pointer !important;
    padding: 6px 10px !important;
    font-size: 20px !important;
    line-height: 1 !important;
    transition: all 0.2s !important;
}

.smartpix-popup-close:hover {
    background: rgba(0, 0, 0, 0.4) !important;
    transform: rotate(90deg) !important;
}

.smartpix-popup-emoji {
    font-size: 32px !important;
    flex-shrink: 0 !important;
    animation: popupFloat 3s ease-in-out infinite !important;
}

@keyframes popupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.smartpix-popup-text-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.smartpix-popup-title {
    font-family: var(--font-primary) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.smartpix-popup-text {
    font-family: var(--font-primary) !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.smartpix-popup-btn {
    display: inline-block !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    font-family: var(--font-primary) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: all 0.2s !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.smartpix-popup-btn:hover {
    background: rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Section Sillage Nomade */
.sillage-nomade-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.sillage-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.sillage-logo {
    flex-shrink: 0;
}

.sillage-logo a {
    display: block;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.sillage-logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.sillage-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.sillage-content {
    flex: 1;
}

.sillage-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    text-align: left;
    font-family: 'Satisfy', cursive;
}

.sillage-text {
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-align: left;
}

.sillage-text p {
    margin: 0;
}

.sillage-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

.sillage-text em {
    font-style: italic;
    color: var(--color-text);
}

.sillage-btn-container {
    text-align: left;
}

.sillage-btn {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: var(--color-accent);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color var(--transition-fast);
}

.sillage-btn:hover {
    background-color: #e6395f;
}

/* Responsive */
@media (max-width: 768px) {
    .sillage-nomade-section {
        padding: 3rem 1.5rem;
    }
    
    .sillage-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sillage-logo img {
        max-width: 300px;
    }
    
    .sillage-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .sillage-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .sillage-btn-container {
        text-align: center;
    }
    
    .sillage-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
}

.sillage-text em {
    font-style: italic;
    color: var(--color-text);
    font-family: 'Satisfy', cursive;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .sillage-nomade-section {
        padding: 3rem 1.5rem;
    }
    
    .sillage-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sillage-logo img {
        max-width: 300px;
    }
    
    .sillage-title {
        font-size: 1.8rem;
        text-align: center;
        font-family: 'Satisfy', cursive;
    }
    
    .sillage-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .sillage-btn-container {
        text-align: center;
    }
    
    .sillage-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
}