/* ============================================
   NEXFLOW AI — SHARED STYLES
   Ultra premium dark luxury theme
   ============================================ */

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

:root {
    --bg: #080808;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #a8893a;
    --white: #F0F0F0;
    --dark-grey: #2a2a2a;
    --grey: #444;
    --text-muted: #b0b0b0;
    --text-dim: #888;
    --text-dimmer: #666;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --nav-height: 72px;
    --radius: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; }
ul { list-style: none; }

/* --- LAYOUT --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; line-height: 1.3; }
p { font-weight: 400; color: var(--text-muted); }

.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.text-center { text-align: center; }

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #999;
    max-width: 640px;
    margin: 16px auto 0;
    font-weight: 400;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
    white-space: nowrap;
    will-change: transform;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

/* --- SKIP LINK (A11y) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--bg);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 100000;
    transition: top 0.3s ease;
}
.skip-link:focus { top: 16px; }

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.splash.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-hidden { display: none !important; }

.splash-logo-wrapper {
    perspective: 800px;
}

.splash-logo {
    width: 140px;
    height: 140px;
    animation: splashLogoIn 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
}

@keyframes splashLogoIn {
    0% {
        transform: rotateY(-180deg) scale(0.3);
        opacity: 0;
        filter: drop-shadow(0 0 0px rgba(201, 168, 76, 0));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.5));
    }
    80% {
        transform: rotateY(15deg) scale(1.02);
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
    }
}

.splash-text {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: splashTextIn 0.8s ease 1s forwards;
}

.splash-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.splash-tagline {
    opacity: 0;
    transform: translateY(10px);
    animation: splashTextIn 0.6s ease 1.6s forwards;
    font-size: 1rem;
    color: #666;
    font-style: italic;
    letter-spacing: 0.05em;
}

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

.splash-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    animation: splashGlow 2s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes splashGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 1; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                backdrop-filter 0.5s ease,
                box-shadow 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}
.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }

.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.nav-logo-text .ai-sup {
    font-size: 0.7em;
    color: var(--gold);
    vertical-align: super;
    font-weight: 800;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
    padding: 10px 22px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    z-index: 1001;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 800px 600px at 25% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 75% 30%, rgba(201,168,76,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 400px 400px at 50% 80%, rgba(201,168,76,0.03) 0%, transparent 70%),
        var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.svg') center/cover no-repeat;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.35;
}

.hero .container { position: relative; z-index: 2; }
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-content { max-width: 100%; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .gold { display: inline; }

/* ============================================
   HERO VISUAL — MOCKUP DASHBOARD
   ============================================ */
.hero-visual {
    position: relative;
    padding-bottom: 30px;
    padding-right: 24px;
}

.mockup-window {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(201, 168, 76, 0.04);
}

.mockup-bar {
    background: rgba(201, 168, 76, 0.04);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.mockup-dots { display: flex; gap: 6px; flex-shrink: 0; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.mockup-bar-title { font-size: 0.72rem; color: #555; font-weight: 500; letter-spacing: 0.02em; }

.mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mockup-agent-row { display: flex; align-items: center; gap: 12px; }
.mockup-agent-icon {
    width: 38px; height: 38px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mockup-agent-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.mockup-agent-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.mockup-agent-status { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: #777; margin-top: 3px; }
.mockup-pulse {
    width: 6px; height: 6px; border-radius: 50%; background: #27c93f; flex-shrink: 0;
    animation: mock-pulse 1.5s ease-in-out infinite;
}
@keyframes mock-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.mockup-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    background: rgba(0, 0, 0, 0.4); border-radius: 10px; padding: 12px 10px;
}
.mockup-metric { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mockup-metric-val { font-size: 1.15rem; font-weight: 800; color: var(--gold); line-height: 1; }
.mockup-metric-lbl { font-size: 0.65rem; color: #555; text-align: center; }

.mockup-progress-wrap { display: flex; flex-direction: column; gap: 6px; }
.mockup-progress-top { display: flex; justify-content: space-between; font-size: 0.72rem; color: #666; }
.mockup-progress-track { width: 100%; height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.mockup-progress-fill {
    width: 73%; height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 3px;
    animation: mock-progress 2s ease-out forwards;
}
@keyframes mock-progress { from { width: 0%; } to { width: 73%; } }

.mockup-logs { display: flex; flex-direction: column; gap: 5px; }
.mockup-log {
    font-size: 0.7rem; padding: 5px 9px; border-radius: 5px;
    font-family: 'SF Mono', 'Courier New', monospace;
}
.mockup-log.ok { color: #27c93f; background: rgba(39, 201, 63, 0.05); }
.mockup-log.running {
    color: var(--gold); background: rgba(201, 168, 76, 0.06);
    animation: log-blink 1.8s ease-in-out infinite;
}
@keyframes log-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.mockup-badge {
    position: absolute; bottom: 0; right: 0;
    background: linear-gradient(135deg, #a8893a, var(--gold));
    color: var(--bg); border-radius: 12px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.35);
}
.mockup-badge svg { flex-shrink: 0; }
.mockup-badge-label { font-size: 0.65rem; font-weight: 600; opacity: 0.75; line-height: 1; margin-bottom: 3px; }
.mockup-badge-val { font-size: 1.2rem; font-weight: 800; line-height: 1; }

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #999;
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat { text-align: left; }
.hero-stat .stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 4px;
    font-weight: 400;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 28px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    background: rgba(201, 168, 76, 0.015);
}
.trust-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.trust-label {
    font-size: 0.72rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.trust-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-logo {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    cursor: default;
    user-select: none;
}
.trust-logo:hover { color: #555; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-alt {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    position: relative;
}
.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25), transparent);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* ============================================
   PROBLÈME — STAT CARDS
   ============================================ */
.probleme-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat-card {
    background: var(--dark-grey);
    border: 1px solid #333;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 44px rgba(201, 168, 76, 0.12);
}

.stat-card .stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}
.stat-card .stat-desc {
    font-size: 1rem;
    color: #999;
    line-height: 1.5;
}

/* ============================================
   AGENTS GRID
   ============================================ */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.agent-card {
    background: var(--dark-grey);
    border: 1px solid #333;
    border-radius: 14px;
    padding: 22px 18px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.agent-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, var(--gold), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.agent-card:hover::before { opacity: 1; }
.agent-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.1);
}

.agent-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.agent-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}
.agent-card h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.agent-card p {
    font-size: 0.83rem;
    color: var(--text-dim);
    line-height: 1.5;
    flex: 1;
}
.agent-card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.agent-card:hover .agent-card-link {
    opacity: 1;
    transform: translateX(0);
}
.agent-card {
    display: flex;
    flex-direction: column;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    border-top: 2px dashed var(--gold);
    opacity: 0.4;
}

.timeline-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.timeline-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.timeline-step h3 {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-step .timeline-week {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-step p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid #333;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 1px solid #222;
}

.comparison-table thead th {
    background: var(--dark-grey);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--white);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    background: rgba(201, 168, 76, 0.08);
}
.comparison-table th:nth-child(2) {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.check { color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.cross { color: #666; font-size: 1.2rem; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: var(--dark-grey);
    border: 1px solid #333;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.highlighted {
    border-color: var(--gold);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.12);
    overflow: visible;
}
.pricing-card.highlighted::after {
    display: none;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.pricing-price {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #999;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-features li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-dimmer);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item { border-bottom: 1px solid #1a1a1a; }
.faq-item:first-child { border-top: 1px solid #1a1a1a; }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
    width: 18px; height: 18px;
    stroke: currentColor; flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
    padding-bottom: 22px;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.75;
}
.faq-answer strong { color: var(--text-muted); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 44px; height: 44px;
    background: var(--dark-grey);
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(12px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 900; cursor: pointer;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--gold); }

/* Active nav link */
.nav-links a.active { color: var(--white); }

/* ============================================
   FLUIDITY — MICRO-INTERACTIONS & AMBIANCE
   ============================================ */

/* Hero CTA glow pulse */
@keyframes hero-cta-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
    50%       { box-shadow: 0 8px 50px rgba(201,168,76,0.5); }
}
.hero-ctas .btn-gold {
    animation: hero-cta-pulse 3s ease-in-out infinite;
}

/* Gold text — moving gradient sweep */
@keyframes gold-sweep {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
.hero h1 .gold {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 25%, #fff8dc 50%, var(--gold) 75%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-sweep 4s linear infinite;
    display: inline;
}

/* Pricing card highlighted pulse */
@keyframes pricing-pulse {
    0%, 100% { box-shadow: 0 0 60px rgba(201,168,76,0.12); }
    50%       { box-shadow: 0 0 90px rgba(201,168,76,0.22); }
}
.pricing-card.highlighted { animation: pricing-pulse 3.5s ease-in-out infinite; }
.pricing-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
    will-change: transform;
}
.pricing-card:hover { transform: translateY(-6px); }

/* Mockup badge float */
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}
.mockup-badge { animation: badge-float 3.2s ease-in-out infinite; }

/* Timeline step hover */
.timeline-number {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
}
.timeline-step:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(201,168,76,0.35);
}
.timeline-step { transition: transform 0.3s ease; }
.timeline-step:hover { transform: translateY(-3px); }

/* Comparison table row hover */
.comparison-table tbody tr {
    transition: background 0.2s ease;
}
.comparison-table tbody tr:hover td {
    background: rgba(201,168,76,0.025);
}

/* Footer links hover */
.footer-links a {
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}
.footer-links a:hover { transform: translateX(3px); }

/* Scroll-top arrow bounce on hover */
.scroll-top svg { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1); }
.scroll-top:hover svg { transform: translateY(-3px); }

/* Nav link hover smoother */
.nav-links a { transition: color 0.25s ease; }

/* Agent icon hover */
.agent-card:hover .agent-icon {
    background: rgba(201,168,76,0.18);
    transition: background 0.3s ease;
}

/* Stat card transition */
.stat-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease, border-color 0.3s ease;
    will-change: transform;
}

/* Contact benefit icon hover */
.contact-benefit:hover .contact-benefit-icon {
    background: rgba(201,168,76,0.16);
    transition: background 0.3s ease;
}

/* FAQ question hover arrow */
.faq-question svg { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s; }

/* Mockup progress fill glow */
.mockup-progress-fill {
    box-shadow: 0 0 8px rgba(201,168,76,0.3);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group input.error,
.form-group textarea.error {
    border-color: #c9534c;
}
.form-group .error-msg {
    font-size: 0.78rem;
    color: #c9534c;
    display: none;
}
.form-group input.error ~ .error-msg,
.form-group textarea.error ~ .error-msg {
    display: block;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* === CONTACT BENEFITS === */
.contact-benefits {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-benefit-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}
.contact-benefit-icon svg { width: 17px; height: 17px; stroke: var(--gold); }
.contact-benefit-text strong {
    display: block; font-size: 0.88rem; font-weight: 700;
    color: var(--white); margin-bottom: 2px;
}
.contact-benefit-text span { font-size: 0.8rem; color: #666; line-height: 1.4; }

.contact-guarantee {
    padding: 12px 16px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 9px;
    display: flex; align-items: center; gap: 9px;
    font-size: 0.83rem; font-weight: 600; color: var(--gold);
    margin-bottom: 24px;
}
.contact-guarantee svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; }

.contact-info-divider {
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group--checkbox { margin-top: 4px; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #1a1a1a;
    margin-top: 1px;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: 2px solid #080808;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}
.form-group--checkbox.error .checkbox-custom { border-color: #c9534c; }
.checkbox-label a { color: var(--gold); text-decoration: underline; }

.ohnohoney { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}
.form-success.active { display: block; }
.form-success h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-info { padding-top: 8px; }
.contact-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 24px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #999;
    font-size: 0.95rem;
}
.contact-info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--gold);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.legal-page .legal-updated {
    font-size: 0.9rem;
    color: var(--text-dimmer);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 1.3rem;
    color: var(--gold);
    margin: 40px 0 12px;
}
.legal-page h2:first-of-type { margin-top: 0; }

.legal-page h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin: 24px 0 8px;
}

.legal-page p,
.legal-page li {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.legal-page ul li {
    list-style: disc;
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-page a:hover { color: var(--gold-light); }

.legal-page .legal-contact {
    background: var(--dark-grey);
    border: 1px solid #333;
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.legal-page .legal-contact p { margin-bottom: 4px; }

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
}

.page-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    opacity: 0.15;
}

.page-404 h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: -40px;
}

.page-404 p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 480px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    border-top: 1px solid var(--gold);
    padding: 48px 0 32px;
    background: var(--bg);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-dimmer);
    font-style: italic;
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
    padding: 4px 0;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.85rem;
    color: #555;
}
.footer-bottom a { color: #777; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}
.cookie-banner.active { display: block; }

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-inner p {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex: 1;
}
.cookie-inner p a {
    color: var(--gold);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cookie-accept {
    background: var(--gold);
    color: var(--bg);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.cookie-decline:hover { background: rgba(201,168,76,0.08); }

.footer-cookie-btn {
    background: none;
    border: none;
    padding: 0;
    color: #888;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.footer-cookie-btn:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .agents-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-layout { grid-template-columns: 1fr; gap: 0; }
    .hero-visual { display: none; }
    .hero-content { max-width: 700px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta-wrapper { display: none; }
    .hamburger { display: flex; }

    .hero { padding-top: calc(var(--nav-height) + 24px); min-height: auto; padding-bottom: 60px; }
    .hero-stats { gap: 32px; }

    .agents-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .timeline::before { display: none; }
    .timeline-step { text-align: left; padding: 0; display: flex; gap: 20px; align-items: flex-start; }
    .timeline-number { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1rem; }
    .timeline-text { flex: 1; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .footer-grid { flex-direction: column; gap: 32px; }

    section { padding: 72px 0; }
}

@media (max-width: 480px) {
    .agents-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .container { padding: 0 16px; }
    .splash-logo { width: 100px; height: 100px; }
}

/* ============================================
   PERFORMANCE — GPU ACCELERATION HINTS
   ============================================ */
.fade-in,
.agent-card,
.testimonial-card,
.blog-card,
.pricing-card,
.stat-card,
.agent-feat,
.mockup-window {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Smooth everything globally */
* {
    -webkit-tap-highlight-color: transparent;
}

/* (nav underline handled above) */

/* ============================================
   READING PROGRESS BAR
   ============================================ */
.reading-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 100001;
    pointer-events: none;
    transition: width 0.08s linear;
    transform-origin: left center;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(4px);
}
.exit-overlay.active { opacity: 1; visibility: visible; }
.exit-popup {
    background: #111;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: var(--radius-lg);
    padding: 48px 40px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.94) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.06);
}
.exit-overlay.active .exit-popup { transform: scale(1) translateY(0); }
.exit-popup-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    background: none;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.exit-popup-close:hover { color: var(--white); border-color: #444; background: rgba(255,255,255,0.04); }
.exit-popup-icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.exit-popup-icon svg { width: 30px; height: 30px; stroke: var(--gold); }
.exit-popup h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.exit-popup > p { font-size: 0.95rem; color: #888; line-height: 1.65; margin-bottom: 32px; }
.exit-popup-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.exit-popup-skip {
    display: block;
    font-size: 0.8rem;
    color: #444;
    margin-top: 16px;
    background: none; border: none;
    cursor: pointer;
    transition: color 0.2s;
    width: 100%;
}
.exit-popup-skip:hover { color: #777; }

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 90px; left: 28px;
    z-index: 890;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.chat-btn {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
    border: none;
    position: relative;
    order: 2;
}
.chat-btn:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(201,168,76,0.5); }
.chat-btn svg { width: 22px; height: 22px; stroke: #080808; }
.chat-online-dot {
    position: absolute;
    top: -2px; right: -2px;
    width: 13px; height: 13px;
    background: #27c93f;
    border-radius: 50%;
    border: 2px solid var(--bg);
    animation: mock-pulse 2s ease-in-out infinite;
}
.chat-bubble {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px 10px 10px 0;
    padding: 9px 14px;
    font-size: 0.8rem;
    color: #bbb;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    order: 1;
    max-width: 220px;
    white-space: normal;
    line-height: 1.4;
}
.chat-widget:hover .chat-bubble { opacity: 1; transform: translateX(0); }
@media (max-width: 768px) { .chat-widget { display: none; } }

/* ============================================
   LIVE COUNTER TICKER
   ============================================ */
.live-ticker {
    padding: 10px 0;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.06);
    overflow: hidden;
    position: relative;
}
.live-ticker::before,
.live-ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.live-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.live-ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.live-ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
}
.live-ticker-track:hover { animation-play-state: paused; }
.live-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 36px;
    border-right: 1px solid #181818;
    font-size: 0.78rem;
    color: #444;
    white-space: nowrap;
    flex-shrink: 0;
}
.live-ticker-val { font-weight: 800; color: var(--gold); }
.live-ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: #27c93f; animation: mock-pulse 2.2s ease-in-out infinite; flex-shrink: 0; }
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   CLIENTS / SECTEURS BAND
   ============================================ */
.clients-band {
    padding: 72px 0;
    text-align: center;
}
.clients-logos-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
.client-pill {
    padding: 9px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #1c1c1c;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3a3a3a;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s ease;
    user-select: none;
}
.client-pill:hover { color: #777; border-color: #2e2e2e; background: rgba(255,255,255,0.04); transform: translateY(-2px); }
.client-pill svg { width: 14px; height: 14px; stroke: #2e2e2e; transition: stroke 0.3s; flex-shrink: 0; }
.client-pill:hover svg { stroke: var(--gold); }
.clients-disclaimer {
    margin-top: 24px;
    font-size: 0.72rem;
    color: #2a2a2a;
    font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #0e0e0e;
    border: 1px solid #1c1c1c;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                border-color 0.3s, box-shadow 0.3s;
    will-change: transform;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars span { color: var(--gold); font-size: 0.9rem; }
.testimonial-quote {
    font-size: 0.94rem;
    color: #c0c0c0;
    line-height: 1.78;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #181818;
}
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.05));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem; color: var(--gold);
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,0.15);
}
.testimonial-info { flex: 1; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--white); margin-bottom: 2px; }
.testimonial-role { font-size: 0.75rem; color: #4a4a4a; }
.testimonial-sector {
    font-size: 0.68rem;
    font-weight: 700;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #1c1c1c;
    border-radius: 20px;
    white-space: nowrap;
}

/* ============================================
   DARK / LIGHT TOGGLE
   ============================================ */
.theme-toggle {
    width: 36px; height: 36px;
    background: none;
    border: 1px solid #222;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.theme-toggle:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.theme-toggle svg { width: 15px; height: 15px; stroke: #555; transition: stroke 0.3s; }
.theme-toggle:hover svg { stroke: var(--gold); }
.icon-sun { display: none; }
.icon-moon { display: block; }
html.light-mode .icon-sun { display: block; }
html.light-mode .icon-moon { display: none; }

/* Light mode */
html.light-mode {
    --bg: #f5f4f0;
    --dark-grey: #eceae5;
    --white: #181818;
    --text-muted: #3a3a3a;
    --text-dim: #555;
    --text-dimmer: #888;
}
html.light-mode body { background: var(--bg); }
html.light-mode .splash { background: var(--bg); }
html.light-mode .navbar.scrolled { background: rgba(245,244,240,0.92); border-bottom-color: rgba(201,168,76,0.15); }
html.light-mode .mobile-menu { background: rgba(245,244,240,0.98); }
html.light-mode .mobile-menu a { color: var(--white); }
html.light-mode .hero { background: radial-gradient(ellipse 800px 600px at 25% 50%, rgba(201,168,76,0.07) 0%, transparent 70%), var(--bg); }
html.light-mode #hero-canvas { opacity: 0.12; }
html.light-mode .hero::after { background: linear-gradient(to top, var(--bg) 0%, transparent 100%); }
html.light-mode .section-alt { background: linear-gradient(180deg, #eeebe4 0%, #e9e6de 100%); }
html.light-mode .section-alt::before { display: none; }
html.light-mode .agent-card,
html.light-mode .stat-card,
html.light-mode .pricing-card { background: #fff; border-color: #ddd; }
html.light-mode .pricing-card.highlighted { border-color: var(--gold); }
html.light-mode .comparison-wrapper { border-color: #ddd; }
html.light-mode .comparison-table thead th { background: #eceae5; color: #1a1a1a; }
html.light-mode .comparison-table th,
html.light-mode .comparison-table td { border-bottom-color: #eee; }
html.light-mode .comparison-table tbody tr:hover td { background: rgba(201,168,76,0.04); }
html.light-mode .mockup-window { background: rgba(235,232,226,0.95); }
html.light-mode .mockup-bar { background: rgba(201,168,76,0.04); border-bottom-color: rgba(201,168,76,0.12); }
html.light-mode .mockup-metrics { background: rgba(0,0,0,0.06); }
html.light-mode .mockup-log.ok { background: rgba(39,201,63,0.06); }
html.light-mode .mockup-log.running { background: rgba(201,168,76,0.06); }
html.light-mode .form-group input,
html.light-mode .form-group textarea { background: #fff; border-color: #ccc; color: #1a1a1a; }
html.light-mode .checkbox-custom { background: #fff; border-color: #ccc; }
html.light-mode .faq-item { border-color: #ddd; }
html.light-mode .faq-item:first-child { border-color: #ddd; }
html.light-mode .trust-bar { background: rgba(201,168,76,0.03); }
html.light-mode .live-ticker { background: rgba(0,0,0,0.04); }
html.light-mode .live-ticker::before { background: linear-gradient(90deg, var(--bg), transparent); }
html.light-mode .live-ticker::after { background: linear-gradient(-90deg, var(--bg), transparent); }
html.light-mode .testimonial-card { background: #fff; border-color: #ddd; }
html.light-mode .client-pill { border-color: #ddd; }
html.light-mode footer { background: #eceae5; }
html.light-mode .cookie-banner { background: #fff; border-color: #ddd; }
html.light-mode .cookie-inner p { color: #555; }
html.light-mode .scroll-top { background: #eceae5; border-color: #ccc; }
html.light-mode .theme-toggle { border-color: #ccc; }

/* ============================================
   BLOG PAGE — LISTING
   ============================================ */
.blog-page {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: 70vh;
}
.blog-hero { text-align: center; margin-bottom: 60px; }
.blog-hero h1 { margin-bottom: 16px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--dark-grey);
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                border-color 0.3s, box-shadow 0.3s;
    will-change: transform;
    text-decoration: none;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.28); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
.blog-card-thumb {
    height: 172px;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(0,0,0,0.3));
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid #202020;
    position: relative;
    overflow: hidden;
}
.blog-card-thumb svg { width: 44px; height: 44px; stroke: rgba(201,168,76,0.45); }
.blog-card-cat {
    position: absolute; top: 12px; left: 12px;
    background: rgba(201,168,76,0.12);
    color: var(--gold); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 20px; padding: 4px 12px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-date { font-size: 0.74rem; color: #3a3a3a; }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.4; transition: color 0.2s; }
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 0.83rem; color: #555; line-height: 1.6; flex: 1; }
.blog-card-footer {
    padding: 14px 22px;
    border-top: 1px solid #1e1e1e;
    display: flex; align-items: center; justify-content: space-between;
}
.blog-card-cta { font-size: 0.8rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.blog-card:hover .blog-card-cta { gap: 9px; }
.blog-card-time { font-size: 0.74rem; color: #3a3a3a; }

/* Blog article layout */
.blog-article {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
}
.blog-article-header {
    max-width: 760px; margin: 0 auto 48px; text-align: center;
}
.article-cat {
    display: inline-block;
    background: rgba(201,168,76,0.1); color: var(--gold);
    border-radius: 20px; padding: 5px 16px;
    font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px;
}
.blog-article-header h1 { font-size: clamp(1.7rem,4vw,2.6rem); margin-bottom: 16px; color: var(--white); }
.article-meta { font-size: 0.82rem; color: #444; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.article-content {
    max-width: 760px; margin: 0 auto;
}
.article-content h2 { font-size: clamp(1.3rem,3vw,1.75rem); color: var(--white); margin: 48px 0 16px; }
.article-content h3 { font-size: 1.15rem; color: var(--gold); margin: 32px 0 10px; }
.article-content p { font-size: 1rem; color: #aaa; line-height: 1.85; margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
.article-content li { font-size: 1rem; color: #aaa; line-height: 1.75; margin-bottom: 7px; list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content strong { color: #e0e0e0; }
.article-callout {
    background: rgba(201,168,76,0.05);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px; margin: 32px 0;
}
.article-callout p { margin-bottom: 0; }
.article-cta {
    background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius-lg);
    padding: 40px; text-align: center; margin-top: 64px;
}
.article-cta h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.article-cta p { color: #888; margin-bottom: 24px; font-size: 0.95rem; }

/* ============================================
   AGENT DEDICATED PAGES
   ============================================ */
.agent-page { padding-top: calc(var(--nav-height) + 60px); padding-bottom: 80px; }
.agent-hero { padding: 64px 0 80px; }
.agent-header-wrap { display: flex; gap: 24px; align-items: flex-start; max-width: 680px; }
.agent-page-icon {
    width: 68px; height: 68px;
    background: rgba(201,168,76,0.09);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.agent-page-icon svg { width: 34px; height: 34px; stroke: var(--gold); }
.agent-header-text { flex: 1; }
.agent-live-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(39,201,63,0.08); color: #27c93f;
    border: 1px solid rgba(39,201,63,0.18);
    border-radius: 20px; padding: 5px 14px;
    font-size: 0.74rem; font-weight: 700; margin-bottom: 14px;
}
.agent-live-badge span { width: 6px; height: 6px; border-radius: 50%; background: #27c93f; animation: mock-pulse 2s ease-in-out infinite; }
.agent-hero h1 { margin-bottom: 16px; }
.agent-hero-sub { font-size: 1.1rem; color: #888; line-height: 1.7; max-width: 620px; margin-bottom: 36px; }
.agent-hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.agent-hero-stat .val { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.agent-hero-stat .lbl { font-size: 0.8rem; color: #555; margin-top: 4px; }
.agent-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.agent-feat {
    background: var(--dark-grey); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 26px;
    transition: transform 0.3s ease, border-color 0.3s;
}
.agent-feat:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.2); }
.agent-feat-icon { width: 38px; height: 38px; background: rgba(201,168,76,0.07); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.agent-feat-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.agent-feat h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 7px; }
.agent-feat p { font-size: 0.84rem; color: #555; line-height: 1.55; }
.agent-integrations { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.integ-badge { padding: 6px 14px; background: rgba(255,255,255,0.02); border: 1px solid #1e1e1e; border-radius: 6px; font-size: 0.78rem; font-weight: 600; color: #444; }

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .agent-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .agent-header-wrap { flex-direction: column; }
    .agent-hero-stats { gap: 24px; }
    .agent-features-grid { grid-template-columns: 1fr; }
    .exit-popup { padding: 36px 24px 28px; }
    .exit-popup h3 { font-size: 1.2rem; }
}

/* ============================================
   VISUAL ENHANCEMENTS — PREMIUM LAYER
   ============================================ */

/* --- CURSOR GLOW --- */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.7s ease;
    will-change: transform;
    mix-blend-mode: screen;
}

/* --- HERO TAG (live badge above h1) --- */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 40px;
    background: rgba(201,168,76,0.05);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(201,168,76,0.9);
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-tag-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #27c93f;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(39,201,63,0.7);
    animation: mock-pulse 2s ease-in-out infinite;
}
html.light-mode .hero-tag { border-color: rgba(168,137,58,0.3); background: rgba(201,168,76,0.08); color: var(--gold-dark); }

/* --- HERO AMBIENT ORBS --- */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: 0;
    will-change: transform;
}
.hero-orb-1 {
    width: 700px; height: 700px;
    top: -20%; left: -15%;
    background: radial-gradient(circle, rgba(201,168,76,0.055) 0%, transparent 65%);
    animation: orb-drift-1 14s ease-in-out infinite;
}
.hero-orb-2 {
    width: 480px; height: 480px;
    top: 10%; right: -5%;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%);
    animation: orb-drift-2 17s ease-in-out infinite;
}
.hero-orb-3 {
    width: 350px; height: 350px;
    bottom: 5%; left: 35%;
    background: radial-gradient(circle, rgba(201,168,76,0.03) 0%, transparent 65%);
    animation: orb-drift-3 20s ease-in-out infinite;
}
@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(50px, -40px) scale(1.06); }
    66%       { transform: translate(-30px, 25px) scale(0.94); }
}
@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-60px, 35px) scale(1.1); }
}
@keyframes orb-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(35px, -25px) scale(0.9); }
    80%       { transform: translate(-15px, 15px) scale(1.08); }
}

/* --- AGENT CARD SCAN LIGHT --- */
.agent-card::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.07) 50%, transparent 100%);
    transform: skewX(-12deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
}
.agent-card:hover::after {
    opacity: 1;
    animation: card-scan 0.65s ease-out forwards;
}
@keyframes card-scan {
    0%   { left: -80%; }
    100% { left: 160%; }
}

/* --- SECTION HEADER DECORATIVE LINE --- */
.section-header::before {
    content: '';
    display: block;
    width: 36px; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(201,168,76,0.5);
    animation: bar-glow 3s ease-in-out infinite;
}
@keyframes bar-glow {
    0%, 100% { width: 36px; box-shadow: 0 0 8px rgba(201,168,76,0.4); opacity: 0.65; }
    50%       { width: 56px; box-shadow: 0 0 22px rgba(201,168,76,0.9); opacity: 1; }
}

/* --- STAT VALUE HOVER GLOW --- */
.stat-value {
    position: relative;
}
.stat-value::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.stat-card:hover .stat-value::after { opacity: 1; }

/* --- HERO STATS COUNT-UP FLASH --- */
@keyframes counter-done {
    0%   { color: var(--gold); }
    50%  { color: var(--gold-light); text-shadow: 0 0 20px rgba(201,168,76,0.6); }
    100% { color: var(--gold); }
}
.stat-number.counted { animation: counter-done 0.5s ease; }

/* --- MOCKUP WINDOW GLOW ON HOVER --- */
.mockup-window {
    transition: box-shadow 0.5s ease;
}
.hero-visual:hover .mockup-window {
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.08);
}

/* --- PRICING CARD BORDER GRADIENT HOVER --- */
.pricing-card {
    position: relative;
    overflow: hidden;
}
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.05) 50%, transparent 100%);
    transform: skewX(-10deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
}
.pricing-card:hover::after {
    opacity: 1;
    animation: card-scan 0.7s ease-out forwards;
}

/* --- TESTIMONIAL CARD QUOTE GLOW --- */
.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

/* --- TRUST LOGO HOVER INDIVIDUAL --- */
.trust-logo {
    position: relative;
}
.trust-logo::after {
    content: attr(data-name);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: rgba(201,168,76,0.5);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.trust-logo:hover::after { opacity: 1; }

/* Light mode: gradient text falls back to solid */
html.light-mode .hero h1 .gold {
    background: linear-gradient(90deg, #8a6f28 0%, var(--gold) 25%, #c9a84c 50%, var(--gold) 75%, #8a6f28 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive: disable cursor glow & heavy effects on touch */
@media (hover: none) {
    .cursor-glow { display: none; }
    .hero-orb { display: none; }
}
/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: wa-pulse 2.5s ease-in-out infinite;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    background: transparent;
    display: block;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
    animation: none;
}
.whatsapp-float::before {
    content: 'Discutons sur WhatsApp';
    position: absolute;
    right: 66px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.8rem;
    font-family: Inter, sans-serif;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    border: 1px solid #333;
}
.whatsapp-float:hover::before { opacity: 1; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}
@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .whatsapp-float::before { display: none; }
}
