/* ========================================
   Entreprendre en Santé - Styles
   ======================================== */

/* RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00ff88;
    --hover-green: #00cc6e;
    --dark-green: #004d2e;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-nav.scrolled {
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: translateX(5px);
}

.nav-logo {
    font-size: 2em;
    animation: float 3s ease-in-out infinite;
}

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

.nav-brand-text h1 {
    font-size: 1.3em;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-brand-text p {
    font-size: 0.8em;
    color: #666;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-item a {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-item a:hover {
    color: var(--primary-green);
}

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

.nav-item a.active {
    color: var(--primary-green);
}

.nav-item a.active::after {
    width: 100%;
}

/* Search nav button */
.search-nav-btn {
    background: none;
    border: 1px solid #333;
    border-radius: 8px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    transition: all 0.3s ease;
}

.search-nav-btn:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* ========================================
   SEARCH MODAL
   ======================================== */
.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 4000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    backdrop-filter: blur(4px);
}

.search-modal.active {
    display: flex;
}

.search-modal-inner {
    width: 100%;
    max-width: 680px;
    margin: 0 20px;
    background: #0d1a12;
    border: 1px solid var(--primary-green);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
    overflow: hidden;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
    border-bottom: 1px solid #1a1a1a;
}

.search-input-wrap .search-icon {
    color: var(--primary-green);
    flex-shrink: 0;
}

#searchInput {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1em;
    font-family: inherit;
}

#searchInput::placeholder {
    color: #555;
}

.search-close-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.search-close-btn:hover {
    color: #fff;
    background: #1a1a1a;
}

.search-results {
    max-height: 500px;
    overflow-y: auto;
    padding: 8px 0;
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #0d0d0d;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(0, 255, 136, 0.08);
    padding-left: 24px;
    transition: all 0.2s ease;
}

.search-result-item.exact-match {
    background: rgba(0, 255, 136, 0.03);
    border-left: 3px solid var(--primary-green);
}

.search-result-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    flex-shrink: 0;
}

.search-result-content h4 {
    color: #fff;
    font-size: 0.95em;
    margin: 0 0 4px;
}

.search-result-content p {
    color: #666;
    font-size: 0.82em;
    margin: 0;
    line-height: 1.4;
}

.search-result-tag {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    font-size: 0.72em;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.search-empty {
    padding: 40px 20px;
    text-align: center;
    color: #888;
    font-size: 0.95em;
    line-height: 1.6;
}

.search-hint {
    padding: 16px 20px;
    color: #444;
    font-size: 0.82em;
    text-align: center;
    border-top: 1px solid #111;
}

.search-suggestions {
    padding: 12px 0;
}

.search-suggestion {
    display: inline-block;
    background: rgba(0, 255, 136, 0.08);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.search-suggestion:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   READING PROGRESS BAR
   ======================================== */
.scroll-indicator {
    position: fixed;
    top: 70px;
    left: 0;
    height: 3px;
    background: var(--primary-green);
    z-index: 999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--primary-green);
}

/* ========================================
   QUICK ACTIONS FLOATING MENU
   ======================================== */
.quick-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
}

.quick-action-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    border: 1px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5em;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.quick-action-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.quick-action-btn.bookmark-active {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
    color: #000;
}

/* ========================================
   PROGRESS TRACKER
   ======================================== */
.progress-tracker {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: none;
}

.progress-tracker.active {
    display: block;
}

.progress-step {
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 50%;
    margin: 20px 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-step.active::before {
    opacity: 1;
}

.progress-step:hover {
    transform: scale(1.3);
    border-color: var(--primary-green);
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #333;
}

.progress-step:last-child::after {
    display: none;
}

/* ========================================
   PAGES
   ======================================== */
.page {
    display: none;
    padding-top: 70px;
    min-height: 100vh;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-section h1 {
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.hero-section .subtitle {
    font-size: 1.3em;
    color: #999;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.2em;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.highlight-box {
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.highlight-box p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

/* HERO TRUST BOX - Réassurance */
.hero-trust-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.trust-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.trust-icon {
    color: var(--primary-green);
    font-size: 1.5em;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.trust-item p {
    color: #d0d0d0;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.trust-item strong {
    color: var(--primary-green);
}

/* ========================================
   SECTIONS GRID
   ======================================== */
.section-header {
    text-align: center;
    margin: 80px 0 60px;
}

.section-header h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2em;
    color: #999;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 0 80px;
}

.section-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.section-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.section-card:hover::before {
    transform: scaleX(1);
}

.section-number {
    font-size: 1em;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.section-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-card .description {
    color: #bbb;
    margin-bottom: 25px;
    font-size: 1.05em;
    line-height: 1.7;
}

.section-card ul {
    list-style: none;
    color: #888;
    font-size: 0.95em;
}

.section-card ul li {
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    transition: color 0.3s ease;
}

.section-card:hover ul li {
    color: #aaa;
}

.section-card ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.section-card:hover ul li::before {
    transform: translateX(5px);
}

.section-card ul li:last-child {
    border-bottom: none;
}

.agent-logo {
    display: inline-block;
    font-size: 2em;
    margin-top: auto;
    margin-bottom: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.agent-logo:hover {
    transform: scale(1.2);
}

.bonus-card {
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    border: 2px solid var(--primary-green);
}

.bonus-card::after {
    content: '\1f3ac';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8em;
    opacity: 0.1;
}

.bonus-card:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
    transform: translateY(-10px) scale(1.02);
}

.bonus-card:hover h3,
.bonus-card:hover .description,
.bonus-card:hover ul li {
    color: #000;
}

.bonus-card:hover .section-number {
    color: #000;
}

/* ========================================
   PART PAGE STRUCTURE
   ======================================== */
.part-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.part-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.part-hero h2 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -2px;
    position: relative;
}

.part-hero .subtitle-large {
    font-size: 1.5em;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.part-hero .description {
    font-size: 1.2em;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.content-section {
    padding: 60px 0;
}

.content-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
}

.content-card h3 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.content-card h4 {
    font-size: 1.6em;
    font-weight: 700;
    margin: 30px 0 20px;
    color: var(--primary-green);
}

.content-card p {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-card ul {
    list-style: none;
    margin: 20px 0;
}

.content-card ul li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 1.1em;
    color: #bbb;
    line-height: 1.7;
}

.content-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3em;
}

.content-card ul li strong {
    color: #fff;
}

.tip-box {
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.tip-box h4 {
    color: var(--primary-green) !important;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.tip-box p {
    color: #e0e0e0;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Tip-box with light background — force dark readable text */
.tip-box[style*="background: #fff3e0"],
.tip-box[style*="background: #e8f5e9"],
.tip-box[style*="background: #ffebee"],
.tip-box[style*="background: #e3f2fd"],
.tip-box[style*="background: #f3e5f5"],
.tip-box[style*="background: #fff8e1"],
.tip-box[style*="color: #333"] {
    color: #333 !important;
}

.tip-box[style*="background: #fff3e0"] h4,
.tip-box[style*="background: #e8f5e9"] h4,
.tip-box[style*="background: #ffebee"] h4,
.tip-box[style*="background: #e3f2fd"] h4,
.tip-box[style*="background: #f3e5f5"] h4,
.tip-box[style*="background: #fff8e1"] h4,
.tip-box[style*="color: #333"] h4 {
    color: #1a1a1a !important;
}

.tip-box[style*="background: #fff3e0"] p,
.tip-box[style*="background: #fff3e0"] ul,
.tip-box[style*="background: #fff3e0"] ol,
.tip-box[style*="background: #fff3e0"] li,
.tip-box[style*="background: #fff3e0"] strong,
.tip-box[style*="background: #e8f5e9"] p,
.tip-box[style*="background: #e8f5e9"] ul,
.tip-box[style*="background: #e8f5e9"] ol,
.tip-box[style*="background: #e8f5e9"] li,
.tip-box[style*="background: #e8f5e9"] strong,
.tip-box[style*="background: #ffebee"] p,
.tip-box[style*="background: #ffebee"] ul,
.tip-box[style*="background: #ffebee"] ol,
.tip-box[style*="background: #ffebee"] li,
.tip-box[style*="background: #ffebee"] strong,
.tip-box[style*="background: #e3f2fd"] p,
.tip-box[style*="background: #e3f2fd"] ul,
.tip-box[style*="background: #e3f2fd"] ol,
.tip-box[style*="background: #e3f2fd"] li,
.tip-box[style*="background: #e3f2fd"] strong,
.tip-box[style*="background: #f3e5f5"] p,
.tip-box[style*="background: #f3e5f5"] ul,
.tip-box[style*="background: #f3e5f5"] ol,
.tip-box[style*="background: #f3e5f5"] li,
.tip-box[style*="background: #f3e5f5"] strong,
.tip-box[style*="background: #fff8e1"] p,
.tip-box[style*="background: #fff8e1"] ul,
.tip-box[style*="background: #fff8e1"] ol,
.tip-box[style*="background: #fff8e1"] li,
.tip-box[style*="background: #fff8e1"] strong,
.tip-box[style*="color: #333"] p,
.tip-box[style*="color: #333"] ul,
.tip-box[style*="color: #333"] ol,
.tip-box[style*="color: #333"] li,
.tip-box[style*="color: #333"] strong {
    color: #333 !important;
}

/* Tables in light background tip-box */
.tip-box[style*="color: #333"] table th,
.tip-box[style*="color: #333"] table td {
    color: #333 !important;
    background: white !important;
}

.tip-box[style*="color: #333"] table tr[style*="background"] {
    background: #f0f0f0 !important;
}

.tip-box[style*="color: #333"] table strong {
    color: #333 !important;
}

/* Background boxes inside light background tip-box */
.tip-box[style*="color: #333"] div[style*="background: white"] {
    color: #333 !important;
}

.tip-box[style*="color: #333"] div[style*="background: white"] strong {
    color: #333 !important;
}

/* ========================================
   PART NAVIGATION
   ======================================== */
.part-navigation {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    gap: 20px;
}

.nav-part-btn {
    flex: 1;
    padding: 25px 40px;
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav-part-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.nav-part-btn:hover::before {
    left: 100%;
}

.nav-part-btn:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.nav-part-btn .label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.nav-part-btn .title {
    font-size: 1.3em;
    color: #fff;
    font-weight: 700;
}

.nav-part-btn.prev .label::before {
    content: '\2190 ';
}

.nav-part-btn.next .label::after {
    content: ' \2192';
}

/* ========================================
   AI SECTION
   ======================================== */
.ai-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    padding: 80px 0;
    margin: 80px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.ai-section h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: center;
}

.ai-section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #999;
    margin-bottom: 50px;
}

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

.ai-card {
    background: #0a0a0a;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ai-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.ai-card:hover::after {
    width: 300px;
    height: 300px;
}

.ai-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.ai-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

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

.ai-card h4 {
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ai-card p {
    color: #999;
    font-size: 1em;
    position: relative;
    z-index: 1;
}

/* ========================================
   PILLAR 3 SECTION
   ======================================== */
.pillar3-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    padding: 80px 0;
    margin: 80px 0;
    border-top: 1px solid var(--primary-green);
    border-bottom: 1px solid var(--primary-green);
}

.pillar3-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-size: 2.2em;
}

.pillar3-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pillar3-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pillar3-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pillar3-benefit-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.pillar3-benefit-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.pillar3-icon {
    font-size: 3em;
    display: block;
    margin-top: auto;
    margin-bottom: 0;
}

.pillar3-benefit-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.pillar3-benefit-item p {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.6;
}

.pillar3-cta {
    background: rgba(0, 0, 0, 0.4);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--primary-green);
    text-align: center;
}

.pillar3-cta h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.pillar3-cta p {
    color: #bbb;
    margin-bottom: 30px;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pillar3-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pillar3-benefits {
        grid-template-columns: 1fr;
    }

    .pillar3-section h2 {
        font-size: 1.8em;
    }
}

/* ========================================
   AGENTS PAGE - DETAIL CARDS
   ======================================== */
.agent-detail-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.agent-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
}

.agent-detail-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
    transform: translateY(-4px);
}

.agent-detail-icon {
    font-size: 4em;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.agent-detail-content {
    flex: 1;
}

.agent-detail-content h3 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.agent-detail-content h4 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 25px 0 15px;
    color: var(--primary-green);
}

.agent-mission,
.agent-problem {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.agent-mission strong,
.agent-problem strong {
    color: var(--primary-green);
}

.agent-detail-content ul {
    list-style: none;
    margin: 15px 0;
}

.agent-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05em;
    color: #bbb;
    line-height: 1.6;
}

.agent-detail-content ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2em;
}

.agent-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.benefit-tag {
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

/* ========================================
   AGENTS PAGE - PRICING GRID
   ======================================== */
.agents-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.agents-pricing-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.agents-pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.agents-pricing-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, #0a1a0f 0%, #000 100%);
    transform: scale(1.03);
}

.agents-pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.agents-pricing-badge {
    font-size: 1em;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.agents-pricing-price {
    font-size: 3.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.agents-pricing-period {
    font-size: 1.2em;
    color: #999;
    margin-bottom: 25px;
    font-weight: 500;
}

.agents-pricing-description {
    font-size: 1em;
    color: #999;
    line-height: 1.7;
    margin-bottom: 30px;
}

.agents-pricing-card .cta-button {
    width: 100%;
    text-align: center;
}

/* ========================================
   AGENTS PAGE - COMPARISON TABLE
   ======================================== */
.comparison-table {
    margin: 30px 0;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #1a1a1a;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.comparison-header {
    background: #0a0a0a;
}

.comparison-row.comparison-header .comparison-cell {
    font-weight: 700;
    color: #fff;
    font-size: 1em;
}

.comparison-cell {
    padding: 18px 20px;
    font-size: 0.95em;
    color: #888;
    display: flex;
    align-items: center;
}

.comparison-cell.label {
    font-weight: 600;
    color: #ccc;
}

.comparison-cell.highlight {
    color: var(--primary-green);
    font-weight: 600;
    background: rgba(0, 255, 136, 0.03);
}

/* ========================================
   CTA BUTTON
   ======================================== */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-green);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 40px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 16px 48px;
}

.cta-button.secondary:hover {
    background: var(--primary-green);
    color: #000;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    padding: 50px;
    border-radius: 12px;
    margin: 60px 0;
    text-align: center;
    border: 1px solid var(--primary-green);
}

.cta-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15em;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    margin-top: 80px;
}

.footer-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.footer-content p {
    color: #999;
    margin: 15px 0;
}

.footer-tagline {
    color: var(--primary-green);
    font-size: 1.1em;
    margin-top: 30px;
}

.footer-copyright {
    margin-top: 40px;
    color: #555;
    font-size: 0.9em;
}

/* ========================================
   MODAL NOTES
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.modal-content textarea {
    width: 100%;
    min-height: 200px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 1em;
    resize: vertical;
}

.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: linear-gradient(135deg, var(--dark-green) 0%, #001a0f 100%);
    border: 1px solid var(--primary-green);
    border-radius: 10px;
    padding: 16px 24px;
    color: #fff;
    font-size: 0.95em;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

/* ========================================
   HOW PAGE - PROFILE CARDS
   ======================================== */
.how-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 0 60px;
}

.how-profile-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.how-profile-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.how-profile-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}

.how-profile-card h4 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.how-profile-card p {
    color: #999;
    font-size: 1em;
    line-height: 1.7;
}

/* ========================================
   HOW PAGE - STEPS
   ======================================== */
.how-steps {
    padding: 0 0 60px;
}

.how-step-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.how-step-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.how-step-number {
    font-size: 4em;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    min-width: 80px;
    text-align: center;
    opacity: 0.8;
}

.how-step-content h3 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.how-step-content p {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.how-step-content ul {
    list-style: none;
    margin: 15px 0;
}

.how-step-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05em;
    color: #bbb;
    line-height: 1.6;
}

.how-step-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2em;
}

/* ========================================
   PRICING PAGE
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.pricing-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, #0a1a0f 0%, #000 100%);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #000;
    font-weight: 700;
    font-size: 0.85em;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.pricing-badge {
    font-size: 1em;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 3.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.pricing-price span {
    font-size: 0.35em;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0;
}

.pricing-period {
    font-size: 0.35em;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
    margin-left: 10px;
}

.pricing-description {
    font-size: 1em;
    color: #999;
    line-height: 1.7;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 0.95em;
    color: #bbb;
    border-bottom: 1px solid #111;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.included::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1em;
}

.pricing-features li.not-included {
    color: #444;
}

.pricing-features li.not-included::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #444;
    font-weight: 700;
    font-size: 1.1em;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
}

/* SECTION : POUR QUI ? */
.pricing-for-who {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 50px 0 80px;
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.who-item {
    text-align: center;
}

.who-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.who-item h4 {
    font-size: 1.1em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.who-item p {
    font-size: 0.95em;
    color: #999;
    line-height: 1.6;
}

/* BADGES ET PRIX */
.pricing-badge-secondary {
    display: inline-block;
    font-size: 0.75em;
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 600;
}

.pricing-currency {
    font-size: 0.45em;
    position: relative;
    top: -0.3em;
}

.pricing-price-placeholder {
    font-size: 3.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

/* SECTION TITLES DANS LES CARTES */
.pricing-section-title {
    font-size: 0.85em;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    margin-bottom: 15px;
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid #111;
}

.pricing-section-title:first-of-type {
    border-top: none;
    margin-top: 30px;
}

/* LISTES BÉNÉFICES ET EXPERTS */
.pricing-benefits,
.pricing-experts {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.pricing-benefits li,
.pricing-experts li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 0.95em;
    color: #bbb;
    line-height: 1.5;
}

.pricing-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.pricing-experts li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-green);
    font-weight: 700;
}

/* FOOTER DE CARTE */
.pricing-footer {
    font-size: 0.85em;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border-bottom: 1px solid #1a1a1a;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1.1em;
    font-weight: 600;
    color: #ddd;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-toggle {
    font-size: 1.5em;
    color: var(--primary-green);
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: #999;
    font-size: 1em;
    line-height: 1.8;
}

/* ========================================
   INLINE CALCULATORS
   ======================================== */
.inline-calculator {
    background: linear-gradient(135deg, #0a1f12 0%, #000 100%);
    border: 1px solid var(--primary-green);
    border-radius: 14px;
    padding: 35px 40px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.08);
}

.inline-calculator .calc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.inline-calculator .calc-icon {
    font-size: 2em;
    width: 52px;
    height: 52px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-calculator .calc-title {
    color: var(--primary-green);
    font-size: 1.25em;
    font-weight: 700;
    margin: 0;
}

.inline-calculator .calc-subtitle {
    color: #888;
    font-size: 0.85em;
    margin: 4px 0 0;
}

.inline-calculator .calc-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.inline-calculator .calc-field label {
    display: block;
    color: #aaa;
    font-size: 0.85em;
    margin-bottom: 8px;
    font-weight: 500;
}

.inline-calculator .calc-field input,
.inline-calculator .calc-field select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    padding: 12px 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.inline-calculator .calc-field input:focus,
.inline-calculator .calc-field select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.inline-calculator .calc-btn {
    background: var(--primary-green);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.inline-calculator .calc-btn:hover {
    background: #00cc6a;
    transform: translateY(-1px);
}

.inline-calculator .calc-result {
    display: none;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 24px;
    margin-top: 20px;
}

.inline-calculator .calc-result.visible {
    display: block;
}

.inline-calculator .calc-result-main {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.inline-calculator .calc-result-label {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 16px;
}

.inline-calculator .calc-result-detail {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.7;
    border-top: 1px solid #1a1a1a;
    padding-top: 14px;
    margin-top: 14px;
}

.inline-calculator .calc-result-detail strong {
    color: #fff;
}

.calc-result-alert {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.88em;
    margin-top: 10px;
    font-weight: 600;
}

.calc-result-alert.danger {
    background: rgba(255, 82, 82, 0.15);
    color: #ff7070;
    border-left: 3px solid #ff5252;
}

.calc-result-alert.warning {
    background: rgba(255, 193, 7, 0.12);
    color: #ffd54f;
    border-left: 3px solid #ffc107;
}

.calc-result-alert.success {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    border-left: 3px solid var(--primary-green);
}

/* ========================================
   UTILITY CLASSES (remplacent les styles inline)
   ======================================== */
.next-step-text {
    margin-top: 30px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-item a {
        font-size: 0.85em;
    }

    .sections-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        right: 15px;
        bottom: 15px;
    }

    .progress-tracker {
        display: none !important;
    }

    .part-navigation {
        flex-direction: column;
    }

    .hero-section h1 {
        font-size: 2.5em;
    }

    .hero-trust-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .toast-container {
        right: 15px;
        bottom: 80px;
        left: 15px;
    }

    .toast {
        max-width: 100%;
    }

    .how-profiles-grid {
        grid-template-columns: 1fr;
    }

    .how-step-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .how-step-number {
        font-size: 2.5em;
        min-width: auto;
        text-align: left;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-for-who {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0 60px;
        padding: 40px 0;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-price {
        font-size: 2.8em;
    }

    .agent-detail-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .agent-detail-icon {
        font-size: 3em;
        min-width: auto;
        text-align: left;
    }

    .agent-detail-content h3 {
        font-size: 1.6em;
    }

    .agents-pricing-grid {
        grid-template-columns: 1fr;
    }

    .agents-pricing-card.featured {
        transform: none;
    }

    .agents-pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-row.comparison-header {
        display: none;
    }

    .comparison-cell {
        padding: 12px 20px;
    }

    .comparison-cell.label {
        background: #0a0a0a;
        padding-bottom: 5px;
    }

    .comparison-cell.highlight {
        border-bottom: 1px solid #1a1a1a;
    }
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: #000;
        border-left: 1px solid #1a1a1a;
        flex-direction: column;
        padding: 30px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }
}

/* ========================================
   MEDIA & RESOURCES SECTION
   ======================================== */

/* Hero Section */
.media-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid #1a1a1a;
}

.media-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.media-hero .subtitle {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 500;
}

.media-hero p {
    font-size: 1rem;
    color: #aaa;
    max-width: 800px;
    line-height: 1.8;
}

/* Media Section */
.media-section {
    padding: 60px 0;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Media Card */
.media-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.media-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
    transform: translateY(-5px);
}

/* Media Thumbnail */
.media-thumbnail {
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.media-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.video-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-green);
    opacity: 0.6;
}

/* Media Content */
.media-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.media-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), #00cc6e);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: fit-content;
}

.media-badge.podcast {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.media-badge.editorial {
    background: linear-gradient(135deg, #4ecdc4, #44b7b1);
}

.media-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #fff;
}

.media-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

/* Media CTA */
.media-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: #000;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: center;
}

.media-cta:hover {
    background: var(--hover-green);
    transform: scale(1.02);
}

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

.media-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.media-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    background: #000;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    overflow: auto;
    z-index: 2001;
}

.media-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2002;
    padding: 0;
}

.media-modal-close:hover {
    background: var(--primary-green);
    color: #000;
}

.media-modal-body {
    padding: 0;
}

/* Video Embed Wrapper - Responsive */
.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #0a0a0a;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.media-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    margin-bottom: 60px;
}

.media-cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.media-cta-section p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-hero h1 {
        font-size: 2.2rem;
    }

    .media-hero .subtitle {
        font-size: 1.1rem;
    }

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

    .media-cta-section {
        padding: 40px 30px;
    }

    .media-cta-section h3 {
        font-size: 1.5rem;
    }

    .media-modal-content {
        width: 95%;
        max-height: 70vh;
    }

    .media-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* ========================================
   AGENTS PAGE — STATS BAR
   ======================================== */
.agents-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 30px 40px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.agent-stat {
    text-align: center;
    padding: 10px 40px;
    flex: 1;
    min-width: 120px;
}

.agent-stat-number {
    display: block;
    font-size: 3em;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: -2px;
    line-height: 1;
}

.agent-stat-number small {
    font-size: 0.5em;
    letter-spacing: 0;
}

.agent-stat-label {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 8px;
}

.agent-stat-divider {
    width: 1px;
    height: 50px;
    background: #1a1a1a;
    flex-shrink: 0;
}

/* ========================================
   AGENTS PAGE — QUICK NAVIGATION
   ======================================== */
.agent-quick-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    margin-bottom: 50px;
}

.agent-quick-nav-label {
    font-size: 0.82em;
    color: #555;
    white-space: nowrap;
    margin-right: 5px;
}

.agent-quick-nav-item {
    padding: 7px 15px;
    border: 1px solid #222;
    border-radius: 20px;
    font-size: 0.82em;
    color: #888;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    display: inline-block;
}

.agent-quick-nav-item:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
}

/* ========================================
   AGENTS PAGE — SELECTOR QUIZ
   ======================================== */
.agent-selector-card {
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.quiz-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    color: #ccc;
    font-size: 0.95em;
    font-family: inherit;
}

.quiz-option-btn:hover {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.1);
}

.quiz-opt-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.quiz-opt-text {
    line-height: 1.4;
}

.quiz-result {
    text-align: center;
    padding: 35px 30px;
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    margin-top: 20px;
    animation: fadeIn 0.4s ease;
}

/* ========================================
   AGENTS PAGE — PROFILE TAGS
   ======================================== */
.agent-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.profile-tag {
    padding: 4px 12px;
    border: 1px solid #252525;
    border-radius: 12px;
    font-size: 0.78em;
    color: #777;
    background: #080808;
}

/* ========================================
   AGENTS PAGE — PROMPT CARDS
   ======================================== */
.agent-prompts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.prompt-card {
    background: #070707;
    border: 1px solid #1a1a1a;
    border-left: 3px solid var(--primary-green);
    border-radius: 8px;
    padding: 18px 20px;
}

.prompt-text {
    font-size: 0.92em;
    color: #bbb;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 12px;
}

.copy-prompt-btn {
    background: transparent;
    border: 1px solid #252525;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8em;
    color: #777;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.copy-prompt-btn:hover,
.copy-prompt-btn.copied {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
}

/* ========================================
   AGENTS PAGE — CONVERSATION PREVIEW
   ======================================== */
.conversation-preview {
    background: #070707;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.conv-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.conv-avatar {
    font-size: 1.5em;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
    margin-top: 2px;
}

.conv-bubble {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9em;
    line-height: 1.7;
    max-width: 90%;
}

.conv-user .conv-bubble {
    background: #111;
    border: 1px solid #222;
    color: #ccc;
}

.conv-agent .conv-bubble {
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.12);
    color: #ddd;
}

/* ========================================
   AGENTS PAGE — WORKFLOW CHAINS
   ======================================== */
.workflow-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.workflow-path {
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 28px 32px;
}

.workflow-path-title {
    font-size: 1.15em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.workflow-path-subtitle {
    font-size: 0.88em;
    color: #555;
    margin-bottom: 22px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.workflow-step {
    text-align: center;
    padding: 14px 18px;
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 10px;
    min-width: 105px;
    transition: border-color 0.2s;
}

.workflow-step:hover {
    border-color: rgba(0, 255, 136, 0.3);
}

.workflow-step-icon {
    font-size: 1.8em;
    display: block;
    margin-bottom: 7px;
}

.workflow-step-name {
    font-size: 0.78em;
    font-weight: 600;
    color: var(--primary-green);
    display: block;
    margin-bottom: 3px;
}

.workflow-step-desc {
    font-size: 0.72em;
    color: #555;
}

.workflow-arrow {
    font-size: 1.4em;
    color: var(--primary-green);
    flex-shrink: 0;
    opacity: 0.7;
}

/* ========================================
   AGENTS PAGE — PROFILES USE CASES
   ======================================== */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.profile-usecase-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 22px;
    transition: border-color 0.3s ease;
}

.profile-usecase-card:hover {
    border-color: #2a2a2a;
}

.profile-usecase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.profile-usecase-icon {
    font-size: 1.8em;
}

.profile-usecase-header h4 {
    font-size: 1.05em;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.profile-usecase-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-usecase-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #0f0f0f;
    font-size: 0.87em;
    color: #999;
    line-height: 1.4;
}

.profile-usecase-list li:last-child {
    border-bottom: none;
}

.usecase-agent-badge {
    flex-shrink: 0;
    font-size: 1.05em;
}

/* ========================================
   AGENTS PAGE — RESOURCES SECTION
   ======================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.resource-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.resource-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.resource-type-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.76em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-type-badge.checklist {
    background: rgba(0, 255, 136, 0.08);
    color: var(--primary-green);
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.resource-type-badge.guide {
    background: rgba(100, 150, 255, 0.08);
    color: #7ab3ff;
    border: 1px solid rgba(100, 150, 255, 0.25);
}

.resource-type-badge.template {
    background: rgba(255, 165, 0, 0.08);
    color: #ffb347;
    border: 1px solid rgba(255, 165, 0, 0.25);
}

.resource-agent-tag {
    font-size: 1em;
    color: #444;
}

.resource-card h4 {
    font-size: 1em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.4;
}

.resource-card > p {
    font-size: 0.87em;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.resource-preview {
    background: #060606;
    border: 1px solid #141414;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 14px;
}

.resource-checklist-preview {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checklist-item {
    font-size: 0.84em;
    color: #999;
    padding: 3px 0;
    line-height: 1.4;
}

.checklist-item.muted {
    color: #3a3a3a;
    font-style: italic;
}

.resource-expand-btn {
    background: transparent;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 0.84em;
    color: #777;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 100%;
    text-align: center;
}

.resource-expand-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.resource-full-content {
    margin-top: 14px;
    padding: 16px;
    background: #060606;
    border: 1px solid #141414;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.resource-checklist-full {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.84em;
    color: #999;
}

.resource-checklist-full strong {
    color: var(--primary-green);
    font-size: 0.92em;
    margin-top: 5px;
}

.resource-checklist-full p {
    color: #777;
    font-size: 0.92em;
    line-height: 1.5;
    margin: 3px 0;
}

/* ========================================
   AGENTS PAGE — TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: #282828;
}

.testimonial-stars {
    color: #e8b94a;
    font-size: 0.95em;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 0.91em;
    color: #bbb;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    font-size: 1.8em;
}

.testimonial-author strong {
    display: block;
    font-size: 0.92em;
    color: #ddd;
}

.testimonial-author span {
    display: block;
    font-size: 0.8em;
    color: #555;
}

/* ========================================
   AGENTS PAGE — RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .agents-stats-bar {
        padding: 20px 15px;
        gap: 10px;
    }

    .agent-stat-divider {
        display: none;
    }

    .agent-stat {
        min-width: 80px;
        padding: 10px 15px;
    }

    .agent-stat-number {
        font-size: 2.2em;
    }

    .workflow-steps {
        gap: 8px;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .agent-quick-nav {
        gap: 8px;
    }

    .conv-bubble {
        max-width: 100%;
    }
}
