/* ============================
   NJARIN AI - DEEP TECH LANDING
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --color-bg: #F4ECE2; /* Marron clair / Ocre doux */
    --color-primary: #8B4513; /* Marron plus soutenu */
    --color-text: #3E2723;
    --color-text-dim: #5D4037;
    --color-line: rgba(139, 69, 19, 0.15); /* Ligne marron subtile */
    --color-primary-glow: rgba(139, 69, 19, 0.1);
    --font-main: 'Outfit', sans-serif;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10l10 10M10 20l10-10M30 10l10 10M30 20l10-10M50 10l10 10M50 20l10-10M70 10l10 10M70 20l10-10M90 10l10 10M90 20l10-10M10 30l10 10M10 40l10-10M30 30l10 10M30 40l10-10M50 30l10 10M50 40l10-10M70 30l10 10M70 40l10-10M90 30l10 10M90 40l10-10M10 50l10 10M10 60l10-10M30 50l10 10M30 60l10-10M50 50l10 10M50 60l10-10M70 50l10 10M70 60l10-10M90 50l10 10M90 60l10-10M10 70l10 10M10 80l10-10M30 70l10 10M30 80l10-10M50 70l10 10M50 80l10-10M70 70l10 10M70 80l10-10M90 70l10 10M90 80l10-10M10 90l10 10M10 100l10-10M30 90l10 10M30 100l10-10M50 90l10 10M50 100l10-10M70 90l10 10M70 100l10-10M90 90l10 10M90 100l10-10' stroke='%238B4513' stroke-width='0.5' fill='none' opacity='0.05'/%3E%3Cpath d='M0 0h10v10H0zM20 20h10v10H20zM40 40h10v10H40zM60 60h10v10H60zM80 80h10v10H80zM0 80h10v10H0zM20 60h10v10H20zM40 40h10v10H40zM60 20h10v10H60zM80 0h10v10H80z' fill='%238B4513' opacity='0.03'/%3E%3C/svg%3E");
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* NJARIN CUSTOM SCROLLBAR */
html, body {
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 69, 19, 0.4) transparent;
}

::-webkit-scrollbar { 
    width: 8px; 
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb { 
    background: rgba(139, 69, 19, 0.4); 
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover { 
    background: rgba(139, 69, 19, 0.7); 
}
/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 40px;
    background: transparent;
    backdrop-filter: blur(0px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 6px 40px;
    background: rgba(244, 236, 226, 0.85); /* Correspond à var(--color-bg) avec opacité */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(139, 69, 19, 0.08);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--color-primary);
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-dim);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-text);
}

.btn-primary {
    background: var(--color-primary);
    color: #F4ECE2;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background: #7A3D11;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-primary);
    display: inline-block;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #F4ECE2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-glow {
    background: linear-gradient(135deg, var(--color-primary), #A65D24);
    color: #FFF;
    border: none;
    position: relative;
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.2);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 15px rgba(139, 69, 19, 0.2); }
    50% { box-shadow: 0 0 30px rgba(139, 69, 19, 0.4); }
    100% { box-shadow: 0 0 15px rgba(139, 69, 19, 0.2); }
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), #FFF, var(--color-primary));
    border-radius: 32px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-glow:hover::before {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 55px 20px 30px;
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.hero-left {
    flex: 1.2;
    text-align: justify;
    min-width: 300px;
}

.hero-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
    min-width: 360px; /* Assure que le mockup a toujours sa place */
}

.hero-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(139, 69, 19, 0.05);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: justify;
}

.hero-content-bottom {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.hero-content-bottom p {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    max-width: 800px;
    text-align: justify;
    line-height: 1.6;
}

/* Word Roller (Slot Machine Effect) */
.word-roller {
    display: inline-flex;
    flex-direction: column;
    height: 1.1em;
    overflow: hidden;
    vertical-align: bottom;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 5px;
}

.roller-track {
    display: flex;
    flex-direction: column;
    animation: rollWords 12s infinite cubic-bezier(0.8, 0, 0.2, 1);
}

.roller-item {
    height: 1.1em;
    line-height: 1.1em;
    display: block;
}

@keyframes rollWords {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-1.1em); }
    50%, 70% { transform: translateY(-2.2em); }
    75%, 95% { transform: translateY(-3.3em); }
    100% { transform: translateY(-4.4em); }
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    max-width: 650px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Phone Mockup */
.phone-mockup {
    width: 100%;
    max-width: 360px;
    height: 560px;
    min-height: 560px;
    max-height: 560px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05), inset 0 0 20px rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: floatUp 1s ease forwards 0.5s;
    margin-top: 20px;
}

@media (max-width: 400px) {
    .phone-mockup {
        height: 500px;
        min-height: 500px;
        max-height: 500px;
    }
}

@keyframes floatUp {
    to { transform: translateY(0); opacity: 1; }
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    z-index: 10;
}

.phone-header {
    padding: 20px;
    border-bottom: 1px solid var(--color-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
}

.phone-brand {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--color-text-dim);
}

.phone-dot {
    width: 6px; height: 6px;
    background: #27AE60;
    border-radius: 50%;
}

.phone-screen {
    flex: 1;
    padding: 20px 15px;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0;
}

.phone-input-area {
    padding: 15px;
    border-top: 1px solid var(--color-line);
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
}

.phone-input {
    flex: 1;
    width: 0; /* Important pour stabiliser la largeur en flexbox */
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-align: left;
    border: 1px solid var(--color-line);
    min-height: 40px; /* Stabilisation verticale */
    display: flex;
    align-items: center;
}

.phone-input.typing::after {
    content: '|';
    color: var(--color-primary);
    animation: blink 1s infinite;
}

.phone-send-btn {
    width: 35px; height: 35px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Live Demo Chat */
.live-demo-chat {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.chat-msg {
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    max-width: 90%;
    animation: fadeUpMsg 0.4s ease forwards;
    text-align: justify;
    line-height: 1.5;
    min-width: 180px; /* Base stable pour éviter le rétrécissement au début */
}

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

.chat-msg.user {
    align-self: flex-end;
    background: var(--color-primary);
    color: #FFFFFF;
    border-bottom-right-radius: 5px;
}

.chat-msg.ai {
    align-self: flex-start;
    background: #FFFFFF;
    color: var(--color-text);
    border-bottom-left-radius: 6px;
    min-width: 200px; /* Empêche la bulle de l'IA de "sauter" en largeur pendant le streaming sur mobile */
    border: 1px solid var(--color-line);
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.05);
    min-height: 45px; /* Évite le saut lors du passage des points au texte */
}

.typing-indicator {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 24px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
.typing-indicator span:nth-child(3) { animation-delay: 0; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Features Z-Pattern Layout */
.bento-section {
    padding: 100px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
}

/* Sticky Scroll Layout (Features) */
.sticky-layout {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.sticky-sidebar {
    flex: 1;
    position: sticky;
    top: 150px;
    padding-bottom: 50px;
}

.sticky-sidebar .section-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 1.1;
}

.sticky-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 50px 40px 50px 100px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.3;
    transform: scale(0.9) translateX(20px);
}

.feature-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
}

.feature-num {
    position: absolute;
    top: 45px;
    left: 35px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dim);
    background: rgba(139, 69, 19, 0.1);
    border: none;
    width: 40px; height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card.active .feature-num {
    color: #FFF;
    background: var(--color-primary);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-dim);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Responsive adjustments for Sticky Layout */
@media (max-width: 900px) {
    .sticky-layout {
        flex-direction: column;
        gap: 40px;
    }
    .sticky-sidebar {
        position: static;
        padding-bottom: 0;
    }
    .sticky-sidebar .section-title {
        text-align: center;
        font-size: 2.5rem;
    }
    .sticky-sidebar p {
        text-align: center;
        margin: 0 auto;
    }
    .sticky-content {
        padding-top: 0;
    }
}

/* Pricing Grid */
.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.price-card {
    flex: 1;
    min-width: 300px;
    background: #FFFFFF;
    border: 1px solid var(--color-line);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.05);
}

.price-card.popular {
    background: rgba(139, 69, 19, 0.03);
    border: 1px solid var(--color-primary);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
}

.price-card.popular::before {
    content: 'Le plus choisi';
    position: absolute;
    top: -15px; right: 30px;
    background: var(--color-primary);
    color: #FFF;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.price-card h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--color-text-dim); }
.price-card .price { font-size: 3rem; font-weight: 700; margin-bottom: 20px; color: var(--color-text); }
.price-card .price span { font-size: 1.2rem; color: var(--color-text-dim); }

.feature-list { list-style: none; margin-bottom: 40px; }
.feature-list li {
    margin-bottom: 15px;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
}

/* Comparison Grid */
.comparison-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.compare-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--color-line);
}

.compare-card.negative {
    background: #FAFAFA;
}

.compare-card.negative .compare-header {
    color: #9E9E9E;
    border-bottom: 2px solid #E0E0E0;
}

.compare-card.positive {
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
    border-color: var(--color-primary);
}

.compare-card.positive .compare-header {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.compare-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.compare-list {
    list-style: none;
    padding: 0;
}

.compare-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-text-dim);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.compare-card.negative .compare-list li::before {
    content: '✗';
    color: #E53935;
    font-weight: bold;
}

.compare-card.positive .compare-list li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
}

/* Steps Grid */
.steps-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--color-line);
    position: relative;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--color-text);
}

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

/* Culture Box */
.culture-box {
    background: var(--color-primary);
    border-radius: 30px;
    padding: 60px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.culture-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.culture-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.culture-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.culture-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.culture-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.culture-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

/* Parents Grid */
.section-subtitle {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 1.2rem;
    margin-top: -60px;
    margin-bottom: 60px;
}

.parents-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.parent-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid var(--color-line);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.02);
}

.parent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
    border-color: rgba(139, 69, 19, 0.2);
}

.parent-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.parent-card h3 {
    margin-bottom: 15px;
    color: var(--color-text);
    font-size: 1.4rem;
}

.parent-card p {
    color: var(--color-text-dim);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    width: 90%;
    max-width: 400px;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-dim);
}

.btn-close:hover {
    color: var(--color-text);
}

/* Footer */
.main-footer {
    background: #FFFFFF;
    border-top: 1px solid var(--color-line);
    padding: 80px 20px 30px;
    margin-top: 100px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.05);
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    color: #FFF;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid var(--color-line);
    padding-top: 30px;
    text-align: center;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.mobile-only { display: none; }

/* Responsive */
@media (max-width: 900px) {
    .desktop-only { display: none; }
    .mobile-only { display: flex; justify-content: flex-start; margin-top: 20px; }
    
    .hero {
        padding-top: 45px;
    }
    .hero-content-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-right {
        min-width: 100%;
        width: 100%;
    }
    .hero-left, .hero h1, .hero-content-bottom p {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .culture-box {
        padding: 40px 20px;
    }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-large, .bento-tall { grid-column: span 1; grid-row: span 1; }
    .hero h1 { font-size: 2.2rem; }
    
    .hamburger { 
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 8px;
        z-index: 2100;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger svg {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active svg {
        transform: rotate(90deg);
    }
    
    .nav-links { 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 35px;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-primary);
        text-align: center;
        width: auto;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        transition-delay: 0.1s;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }

    /* Animation en cascade (Staggered) */
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }

    .nav-links a:active {
        transform: scale(0.95);
    }

    /* Re-déclaration du hamburger pour écraser l'ancien display:block si besoin */
    .hamburger { 
        display: flex;
        z-index: 2100;
        position: relative;
    } .hamburger svg line {
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.active svg line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active svg line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active svg line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-brand p {
        margin: 0 0 20px 0;
    }
}
/* B2B Section */
.b2b-box {
    background: #FFFFFF;
    border: 1px solid var(--color-line);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.05);
    transition: all 0.3s ease;
}

.b2b-box:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.1);
}

.b2b-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.b2b-content p {
    font-size: 1.15rem;
    color: var(--color-text-dim);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .b2b-box {
        padding: 40px 20px;
    }
    .b2b-content h2 {
        font-size: 1.8rem;
    }
}
.price-card.card-day {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%238B4513' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.price-card.card-week {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='%238B4513' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.price-card.card-month {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%238B4513' stroke-width='0.5' stroke-opacity='0.05'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='%238B4513' stroke-width='0.5' stroke-opacity='0.03'/%3E%3C/svg%3E");
}

.price-card.card-b2b {
    background: var(--color-primary);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10l10 10M10 20l10-10M30 10l10 10M30 20l10-10M50 10l10 10M50 20l10-10M70 10l10 10M70 20l10-10M90 10l10 10M90 20l10-10M10 30l10 10M10 40l10-10M30 30l10 10M30 40l10-10M50 30l10 10M50 40l10-10M70 30l10 10M70 40l10-10M90 30l10 10M90 40l10-10M10 50l10 10M10 60l10-10M30 50l10 10M30 60l10-10M50 50l10 10M50 60l10-10M70 50l10 10M70 60l10-10M90 50l10 10M90 60l10-10M10 70l10 10M10 80l10-10M30 70l10 10M30 80l10-10M50 70l10 10M50 80l10-10M70 70l10 10M70 80l10-10M90 70l10 10M90 80l10-10M10 90l10 10M10 100l10-10M30 90l10 10M30 100l10-10M50 90l10 10M50 100l10-10M70 90l10 10M70 100l10-10M90 90l10 10M90 100l10-10' stroke='%23FFFFFF' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3Cpath d='M0 0h10v10H0zM20 20h10v10H20zM40 40h10v10H40zM60 60h10v10H60zM80 80h10v10H80zM0 80h10v10H0zM20 60h10v10H20zM40 40h10v10H40zM60 20h10v10H60zM80 0h10v10H80z' fill='%23FFFFFF' opacity='0.05'/%3E%3C/svg%3E");
    border-color: var(--color-primary);
    color: #F4ECE2;
}

.price-card.card-b2b h3, 
.price-card.card-b2b .price, 
.price-card.card-b2b .price span,
.price-card.card-b2b .feature-list li {
    color: #F4ECE2;
}

.price-card.card-b2b .feature-list li::before {
    color: #F4ECE2;
}

.price-card.card-b2b .btn-outline {
    border-color: #F4ECE2;
    color: #F4ECE2;
}

.price-card.card-b2b .btn-outline:hover {
    background: #F4ECE2;
    color: var(--color-primary);
}

/* Freemium Badge */
.freemium-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 50px auto 0;
    padding: 15px 30px;
    background: rgba(139, 69, 19, 0.05);
    border: 1px solid var(--color-line);
    border-radius: 50px;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.freemium-badge p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.freemium-badge strong {
    color: var(--color-primary);
}

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

@media (max-width: 600px) {
    .freemium-badge {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }
}

/* Contact Section - Premium Redesign */
#contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 40px 100px rgba(139, 69, 19, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-dim);
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: #FFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
}

.method-content h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.method-content p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

/* Form Styles */
.contact-form-wrapper {
    background: #FFF;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: #F9F7F5;
    border: 1px solid transparent;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group textarea {
    resize: none;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    background: #FFF;
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1000px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 60px 40px;
    }
    .contact-info h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .contact-container {
        padding: 40px 24px;
        border-radius: 30px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
