/* ==========================================================================
   NEXALE BUSINESS OS - STYLESHEET OFICIAL v5.0
   O Sistema Operacional Comercial Completo
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #07090e;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-card-hover: rgba(26, 38, 66, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 242, 254, 0.35);
    
    /* Brand Accents */
    --primary-blue: #2563eb;
    --primary-cyan: #00f2fe;
    --primary-purple: #7f00ff;
    --emerald-green: #25D366;
    --coral-orange: #ff5252;
    --gold-accent: #ffd700;

    /* Text Colors */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Fonts & Radii */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Transitions */
    --tr-fast: 0.2s ease;
    --tr-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    position: relative;
    line-height: 1.6;
    min-height: 100vh;
}

.bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}
.bg-glow-1 {
    top: -10%; left: 20%; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary-cyan), var(--primary-blue));
}
.bg-glow-2 {
    top: 40%; right: -10%; width: 700px; height: 700px;
    background: radial-gradient(circle, var(--primary-purple), var(--primary-blue));
}
.bg-glow-3 {
    bottom: 5%; left: -5%; width: 500px; height: 500px;
    background: radial-gradient(circle, var(--emerald-green), var(--primary-cyan));
}

/* Top Urgency Bar */
.top-urgency-bar {
    background: linear-gradient(90deg, #091224 0%, #0d2149 50%, #091224 100%);
    border-bottom: 1px solid rgba(0, 242, 254, 0.25);
    padding: 8px 16px;
    font-size: 0.82rem;
    color: #e2e8f0;
    text-align: center;
    position: relative;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.urgency-badge {
    background: rgba(255, 82, 82, 0.2);
    border: 1px solid var(--coral-orange);
    color: #ff8a80;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 800;
}
.top-urgency-bar a {
    color: var(--primary-cyan);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.top-urgency-bar a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-cyan) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--primary-cyan); }
.text-blue { color: var(--primary-blue); }
.text-purple { color: var(--primary-purple); }
.text-emerald { color: var(--emerald-green); }
.text-coral { color: var(--coral-orange); }
.text-gold { color: var(--gold-accent); }
.text-white { color: #ffffff; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--tr-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    color: #07090e;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border-color: var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(0, 242, 254, 0.4);
}
.btn-outline:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-xs { padding: 4px 10px; font-size: 0.75rem; }
.btn-block { width: 100%; }

.glow-effect {
    position: relative;
    overflow: hidden;
}
.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg);
    transition: var(--tr-normal);
    opacity: 0;
}
.glow-effect:hover::after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--tr-normal);
}
.glass-card:hover {
    border-color: rgba(0, 242, 254, 0.25);
}

/* Header Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 85px;
    z-index: 1000;
    transition: var(--tr-normal);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(7, 9, 14, 0.92);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-img-logo {
    height: 44px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.2);
    object-fit: contain;
}
.brand-os-tag {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--primary-cyan);
    border-radius: var(--radius-pill);
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 22px;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--tr-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link:hover {
    color: var(--primary-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mobile-toggle {
    display: none;
    background: none; border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 155px;
    padding-bottom: 80px;
    position: relative;
}
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
}

.hero-title {
    font-size: clamp(2.3rem, 4.8vw, 4.2rem);
    max-width: 980px;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-muted);
    max-width: 850px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats-pill {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}
.stat-pill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
}
.stat-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.stat-divider {
    width: 1px; height: 30px;
    background: var(--border-color);
}

/* Hero Preview Window */
.hero-preview-wrapper {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}
.preview-card {
    border-color: rgba(0, 242, 254, 0.2);
    overflow: hidden;
}
.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(10, 15, 26, 0.9);
    border-bottom: 1px solid var(--border-color);
}
.window-controls { display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }
.window-title { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.window-badge {
    font-size: 0.75rem; color: var(--emerald-green); font-weight: 700;
    display: flex; align-items: center; gap: 6px;
}
.live-indicator {
    width: 8px; height: 8px;
    background: var(--emerald-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--emerald-green);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.preview-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.75);
    border-bottom: 1px solid var(--border-color);
    padding: 0 16px;
    overflow-x: auto;
}
.tab-btn {
    background: none; border: none;
    color: var(--text-muted);
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--tr-fast);
    border-bottom: 2px solid transparent;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.tab-btn:hover { color: var(--text-main); }
.tab-btn.active {
    color: var(--primary-cyan);
    border-bottom-color: var(--primary-cyan);
    background: rgba(0, 242, 254, 0.05);
}

.preview-body {
    padding: 24px;
    min-height: 460px;
    background: rgba(8, 12, 20, 0.95);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }

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

/* Niche Selector Bar */
.niche-selector-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}
.niche-lbl { font-size: 0.85rem; font-weight: 700; color: var(--text-main); }
.niche-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.niche-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--tr-fast);
    display: flex; align-items: center; gap: 6px;
}
.niche-pill:hover, .niche-pill.active {
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

/* Kanban Component */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    overflow-x: auto;
}
.kanban-col {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}
.col-header {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}
.badge-sla {
    font-size: 0.68rem; padding: 2px 6px; border-radius: 4px;
    background: rgba(255, 82, 82, 0.2); color: var(--coral-orange);
    animation: pulseGlow 1.5s infinite;
}
.col-sum { color: var(--text-muted); }
.kanban-card {
    background: rgba(26, 38, 66, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: left;
    transition: var(--tr-fast);
}
.kanban-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}
.card-tag {
    display: inline-block;
    font-size: 0.68rem; padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    margin-bottom: 6px;
}
.card-tag.tag-cyan { background: rgba(0, 242, 254, 0.15); color: var(--primary-cyan); }
.card-tag.tag-emerald { background: rgba(37, 211, 102, 0.15); color: var(--emerald-green); }
.card-tag.tag-coral { background: rgba(255, 82, 82, 0.15); color: var(--coral-orange); }

.kanban-card h5 { font-size: 0.88rem; margin-bottom: 4px; }
.kanban-card p { font-size: 0.78rem; color: var(--text-muted); }
.highlight-val { color: var(--primary-cyan); font-weight: 700; }
.card-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 10px; font-size: 0.72rem;
}
.user-avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.65rem; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
}
.user-avatar.bg-emerald { background: var(--emerald-green); color: #000; }
.user-avatar.bg-purple { background: var(--primary-purple); }
.user-avatar.bg-gold { background: var(--gold-accent); color: #000; }

.card-resgate { border-color: rgba(255, 82, 82, 0.4); background: rgba(255, 82, 82, 0.05); }
.card-won { border-color: rgba(37, 211, 102, 0.4); background: rgba(37, 211, 102, 0.05); }

/* WhatsApp & Chat Component */
.chat-preview-container { text-align: left; }
.chat-header-bar {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border-color); padding-bottom: 12px;
}
.chat-user { display: flex; align-items: center; gap: 14px; }
.chat-body-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.chat-item-box {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}
.chat-item-box h4 { font-size: 0.9rem; margin-bottom: 10px; color: var(--primary-cyan); }
.code-snippet {
    background: rgba(10, 15, 26, 0.9);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px; font-size: 0.82rem; color: var(--text-muted);
}

/* IA RAG Component */
.ia-rag-box { text-align: left; }
.ia-rag-header {
    display: flex; align-items: center; gap: 16px;
    border-bottom: 1px solid var(--border-color); padding-bottom: 14px;
}
.ia-avatar-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff;
}
.personas-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.persona-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px; display: flex; flex-direction: column; gap: 6px;
}
.persona-card i { font-size: 1.4rem; margin-bottom: 6px; }
.persona-card strong { font-size: 0.9rem; color: var(--text-main); }
.persona-card span { font-size: 0.78rem; color: var(--text-muted); }

/* Orçamentos Component */
.orcamento-preview-box { text-align: left; }
.preview-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.preview-table th, .preview-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border-color); }
.preview-table th { color: var(--text-muted); font-weight: 700; font-size: 0.75rem; }

.status-pill {
    display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px;
    border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700;
}
.pill-success { background: rgba(37, 211, 102, 0.15); color: var(--emerald-green); }
.pill-warning { background: rgba(255, 189, 46, 0.15); color: #ffbd2e; }
.pill-purple { background: rgba(127, 0, 255, 0.15); color: var(--primary-purple); }

/* Finance DRE Component */
.finance-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.fin-summary-box {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px; display: flex; flex-direction: column; gap: 8px; text-align: left;
}
.fin-label { font-size: 0.85rem; color: var(--text-muted); }
.fin-amount { font-size: 1.6rem; font-family: var(--font-heading); font-weight: 800; }
.fin-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; margin-top: 8px; }
.fin-progress { height: 100%; border-radius: 3px; }
.fin-sub { font-size: 0.78rem; color: var(--emerald-green); font-weight: 700; }

/* BI Component */
.bi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Features Section */
.features-section { padding: 110px 0; }
.section-header { max-width: 760px; margin: 0 auto 64px auto; }
.section-tag {
    font-size: 0.8rem; font-weight: 800; color: var(--primary-cyan);
    letter-spacing: 1.5px; display: block; margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 18px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px;
}
.feature-card {
    padding: 36px; display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 242, 254, 0.15);
}
.feature-icon {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 24px;
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.feature-checklist {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
    font-size: 0.88rem; color: var(--text-main); font-weight: 600;
}

/* Pricing Section */
.pricing-section { padding: 110px 0; position: relative; }
.billing-toggle-container {
    display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px;
}
.billing-lbl { font-weight: 700; color: var(--text-muted); font-size: 0.95rem; }
.billing-lbl.active { color: var(--text-main); }
.discount-badge {
    background: rgba(37, 211, 102, 0.2); color: var(--emerald-green);
    font-size: 0.75rem; padding: 3px 8px; border-radius: var(--radius-pill); margin-left: 6px;
}

.switch { position: relative; display: inline-block; width: 56px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider.round {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.15); transition: .4s; border-radius: 34px;
}
.slider.round:before {
    position: absolute; content: ""; height: 22px; width: 22px;
    left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--primary-cyan); }
input:checked + .slider:before { transform: translateX(26px); background-color: #07090e; }

.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px; margin-top: 60px;
}
.pricing-card {
    padding: 40px; display: flex; flex-direction: column; justify-content: space-between; position: relative;
}
.popular-card {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.2);
    transform: scale(1.03);
}
.popular-tag {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-accent), #ff9100);
    color: #000; font-size: 0.78rem; font-weight: 800;
    padding: 6px 18px; border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); white-space: nowrap;
}

.plan-header h3 { font-size: 1.5rem; margin-bottom: 8px; }
.plan-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px; min-height: 42px; }
.plan-price { font-family: var(--font-heading); font-weight: 900; margin-bottom: 30px; }
.plan-price .currency { font-size: 1.2rem; vertical-align: top; margin-right: 4px; }
.plan-price .amount { font-size: 3.2rem; line-height: 1; }
.plan-price .period { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }

.plan-features {
    list-style: none; display: flex; flex-direction: column; gap: 14px;
    font-size: 0.92rem; margin-bottom: 36px; text-align: left;
}

/* FAQ Section */
.faq-section { padding: 80px 0 110px 0; }
.faq-wrapper { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 22px 28px; cursor: pointer; overflow: hidden; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem;
}
.faq-icon { transition: transform 0.3s ease; color: var(--primary-cyan); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding-top 0.35s ease;
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; text-align: left;
}
.faq-item.active .faq-answer { max-height: 250px; padding-top: 14px; }

/* CTA Banner Section */
.cta-banner-section { padding: 60px 0 110px 0; }
.cta-banner {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(0, 242, 254, 0.15));
    border-color: var(--primary-cyan);
}
.cta-content h2 { font-size: 2.6rem; margin-bottom: 16px; }
.cta-content p { font-size: 1.15rem; color: var(--text-muted); max-width: 680px; margin: 0 auto 36px auto; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
    background: #040609; border-top: 1px solid var(--border-color); padding: 80px 0 40px 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
    margin-bottom: 60px; text-align: left;
}
.brand-col p { color: var(--text-muted); font-size: 0.9rem; margin: 18px 0; max-width: 320px; }
.social-links { display: flex; gap: 14px; }
.social-links a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06); color: var(--text-main);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: var(--tr-fast);
}
.social-links a:hover { background: var(--primary-cyan); color: #000; }

.footer-col h4 { font-size: 1.05rem; margin-bottom: 20px; color: var(--text-main); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: var(--tr-fast); }
.footer-col a:hover { color: var(--primary-cyan); }
.footer-col li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }

.footer-bottom {
    border-top: 1px solid var(--border-color); padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: var(--text-dim); flex-wrap: wrap; gap: 16px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-dim); text-decoration: none; }
.footer-legal a:hover { color: var(--text-muted); }

/* Lead Capture Modal */
.modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 6, 9, 0.85); backdrop-filter: blur(12px);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none; transition: var(--tr-normal);
}
.modal-backdrop.active { opacity: 1; pointer-events: all; }
.modal-container {
    width: 100%; max-width: 480px; padding: 40px; position: relative;
    border-color: var(--primary-cyan); transform: translateY(20px); transition: var(--tr-normal);
}
.modal-backdrop.active .modal-container { transform: translateY(0); }
.modal-close {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    color: var(--text-muted); font-size: 1.8rem; cursor: pointer; line-height: 1;
}
.modal-header { margin-bottom: 24px; text-align: center; }
.badge-modal {
    display: inline-block; font-size: 0.75rem; font-weight: 800; color: var(--gold-accent);
    margin-bottom: 8px;
}
.modal-header h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal-header p { font-size: 0.88rem; color: var(--text-muted); }

.modal-form { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-main); }
.form-group input, .custom-select {
    width: 100%; padding: 12px 16px;
    background: rgba(10, 15, 26, 0.9); border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); color: var(--text-main);
    font-family: var(--font-body); font-size: 0.92rem; outline: none; transition: var(--tr-fast);
}
.form-group input:focus, .custom-select:focus {
    border-color: var(--primary-cyan); box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}
.form-disclaimer { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 4px; }

.toast-container {
    position: fixed; bottom: 30px; right: 30px; z-index: 3000;
    transform: translateY(100px); opacity: 0; transition: var(--tr-normal);
}
.toast-container.active { transform: translateY(0); opacity: 1; }
.toast-content {
    background: rgba(10, 15, 26, 0.95); border: 1px solid var(--emerald-green);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25); border-radius: var(--radius-md);
    padding: 16px 24px; display: flex; align-items: center; gap: 14px; backdrop-filter: blur(12px);
}
.toast-icon { font-size: 1.5rem; color: var(--emerald-green); }
.toast-msg { display: flex; flex-direction: column; font-size: 0.85rem; text-align: left; }
.toast-msg strong { color: #fff; }
.toast-msg span { color: var(--text-muted); }

/* Calendar Specific Styles */
.calendar-wrapper {
background: rgba(17, 24, 39, 0.8);
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: 20px;
text-align: center;
}

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

.calendar-header h4 {
font-size: 1.2rem;
color: var(--text-main);
}

.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 8px;
}

.calendar-day {
padding: 10px 5px;
border-radius: var(--radius-sm);
font-size: 0.9rem;
color: var(--text-main);
background-color: rgba(255, 255, 255, 0.05);
cursor: pointer;
transition: var(--tr-fast);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 70px;
border: 1px solid transparent;
}

.calendar-day:hover:not(.inactive) {
background-color: rgba(0, 242, 254, 0.15);
border-color: var(--primary-cyan);
}

.calendar-day.inactive {
color: var(--text-dim);
background-color: rgba(255, 255, 255, 0.02);
cursor: not-allowed;
}

.calendar-day.today {
border-color: var(--emerald-green);
box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

.calendar-day.has-event {
background-color: rgba(127, 0, 255, 0.1);
border-color: var(--primary-purple);
}

.calendar-day.selected {
background-color: var(--primary-blue);
border-color: var(--primary-cyan);
box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.calendar-day .day-number {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 5px;
}

.calendar-day .event-count {
font-size: 0.75rem;
background-color: var(--primary-purple);
color: #fff;
border-radius: var(--radius-pill);
padding: 2px 8px;
margin-top: 5px;
}

.add-event-form, .event-list {
background: var(--bg-card);
padding: 25px;
border-radius: var(--radius-md);
border: 1px solid var(--border-color);
}

.add-event-form h5, .event-list h5 {
font-size: 1.1rem;
margin-bottom: 20px;
color: var(--text-main);
display: flex;
align-items: center;
gap: 10px;
}

.form-group.row {
display: flex;
gap: 15px;
}

.form-group.row .col {
flex: 1;
}

.alert {
padding: 12px 18px;
border-radius: var(--radius-sm);
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
}

.alert-danger {
background: rgba(255, 82, 82, 0.15);
color: var(--coral-orange);
border: 1px solid var(--coral-orange);
}

.event-item {
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--border-color);
border-left: 4px solid var(--primary-purple);
border-radius: var(--radius-sm);
padding: 12px;
margin-bottom: 10px;
display: flex;
flex-direction: column;
text-align: left;
position: relative;
}

.event-item h6 {
font-size: 1rem;
color: var(--text-main);
margin-bottom: 5px;
}

.event-item p {
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 3px;
}

.event-item .event-time {
font-size: 0.8rem;
color: var(--primary-cyan);
font-weight: 600;
}

.event-actions {
display: flex;
gap: 10px;
margin-top: 10px;
}

.event-actions .btn-sm {
padding: 6px 12px;
font-size: 0.75rem;
}

@media (max-width: 992px) {
.nav-menu { display: none; }
.mobile-toggle { display: block; }
.nav-menu.active {
    display: flex; flex-direction: column; position: absolute;
    top: 85px; left: 0; width: 100%; background: rgba(7, 9, 14, 0.98);
    padding: 30px; border-bottom: 1px solid var(--border-color);
}
.chat-body-grid, .bi-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.calendar-grid { grid-template-columns: repeat(auto-fit, minmax(calc(100%/7 - 10px), 1fr)); }
.form-group.row { flex-direction: column; gap: 10px; }
}

@media (max-width: 600px) {
.hero-stats-pill { flex-direction: column; gap: 14px; border-radius: var(--radius-lg); }
.stat-divider { width: 100%; height: 1px; }
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   INTERACTIVE COMPONENTS ADDITIONS (V5.1 REDESIGN)
   ========================================================================== */

/* 1. Brand Logo Marquee */
.logo-marquee-section {
    padding: 30px 0;
    background: rgba(10, 15, 26, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.marquee-title {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}
.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}
.marquee-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.65;
    transition: opacity var(--tr-fast);
}
.marquee-logo:hover {
    opacity: 1;
    color: var(--primary-cyan);
}
.marquee-logo i {
    font-size: 1.5rem;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. Interactive ROI Calculator */
.roi-section {
    padding: 100px 0;
    position: relative;
}
.roi-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 242, 254, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}
.roi-slider-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.roi-header h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.roi-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.slider-group {
    margin-bottom: 35px;
}
.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 700;
}
.slider-value-display {
    font-size: 1.4rem;
    color: var(--primary-cyan);
    font-family: var(--font-heading);
}
.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: var(--tr-fast);
}
.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-cyan));
    border-radius: var(--radius-pill);
}
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--primary-blue);
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 0 15px var(--primary-cyan);
    transition: transform var(--tr-fast);
}
.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.roi-results-container {
    background: rgba(7, 9, 14, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}
.result-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.result-row:last-child {
    border-bottom: none;
}
.result-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.result-info {
    display: flex;
    flex-direction: column;
}
.result-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.result-value {
    font-size: 1.45rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* 3. Live IA Nexa Chat Simulator */
.chat-sim-container {
    border: 1px solid rgba(127, 0, 255, 0.25);
    background: rgba(10, 15, 26, 0.9);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 380px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.chat-sim-header {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-sim-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07090e;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}
.chat-sim-status {
    display: flex;
    flex-direction: column;
}
.chat-sim-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
}
.chat-sim-online {
    font-size: 0.72rem;
    color: var(--emerald-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.chat-sim-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow 1.5s infinite;
}
.chat-sim-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: radial-gradient(circle at top right, rgba(127, 0, 255, 0.05), transparent 60%);
}
.chat-sim-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    line-height: 1.4;
    animation: messagePop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.chat-sim-msg.user {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    border: 1px solid var(--border-color);
}
.chat-sim-msg.ia {
    background: rgba(127, 0, 255, 0.12);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(127, 0, 255, 0.2);
}
.chat-sim-typing-bubble {
    align-self: flex-start;
    background: rgba(127, 0, 255, 0.08);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border-bottom-left-radius: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes messagePop {
    0% { opacity: 0; transform: scale(0.9) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-sim-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.4);
}
.chat-sim-prompt-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.chat-sim-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chat-sim-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 14px;
    font-size: 0.78rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--tr-fast);
    text-align: left;
}
.chat-sim-btn:hover {
    background: rgba(127, 0, 255, 0.15);
    border-color: var(--primary-purple);
    color: var(--text-main);
    transform: translateY(-1px);
}
.chat-sim-btn:active {
    transform: translateY(0);
}

/* 4. Masonry Testimonials Grid */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at bottom center, rgba(37, 99, 235, 0.08), transparent 70%);
}
.testimonials-grid {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 26px;
    margin-bottom: 24px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    transition: var(--tr-normal);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0;
    transition: var(--tr-fast);
}
.testimonial-card:hover {
    border-color: rgba(0, 242, 254, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.testimonial-card:hover::before {
    opacity: 1;
}
.testimonial-rating {
    color: var(--gold-accent);
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}
.testimonial-text {
    font-size: 0.94rem;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 18px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
}
.author-company {
    font-size: 0.78rem;
    color: var(--primary-cyan);
    font-weight: 500;
}

/* ==========================================================================
   SEÇÕES DE ALTA CONVERSÃO & DESIGN EXPANDIDO
   ========================================================================== */

/* 1. Hero Social Proof Avatar Bar */
.hero-proof-bar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    margin-top: 24px;
}
.avatar-stack {
    display: flex;
    align-items: center;
}
.avatar-stack-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.avatar-stack-item:first-child { margin-left: 0; }
.proof-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
}
.proof-text strong {
    color: #fff;
}
.proof-stars {
    color: var(--gold-accent);
    font-size: 0.75rem;
    margin-right: 4px;
}

/* 2. Seção "Como Funciona em 3 Passos" */
.steps-section {
    padding: 90px 0;
    position: relative;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    position: relative;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--tr-normal);
    overflow: hidden;
}
.step-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.1);
}
.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}
.step-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
}
.step-icon-1 { background: rgba(0, 242, 254, 0.12); color: var(--primary-cyan); border: 1px solid rgba(0, 242, 254, 0.3); }
.step-icon-2 { background: rgba(37, 211, 102, 0.12); color: var(--emerald-green); border: 1px solid rgba(37, 211, 102, 0.3); }
.step-icon-3 { background: rgba(127, 0, 255, 0.12); color: var(--primary-purple); border: 1px solid rgba(127, 0, 255, 0.3); }

.step-card h3 {
    font-size: 1.22rem;
    margin-bottom: 12px;
    color: #fff;
}
.step-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 3. Tabela Comparativa de Alta Conversão */
.comparison-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at top center, rgba(0, 242, 254, 0.04), transparent 70%);
}
.comparison-table-wrap {
    margin-top: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.94rem;
}
.comparison-table th {
    background: rgba(15, 23, 42, 0.85);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.5px;
}
.th-feature { width: 40%; color: var(--text-muted); }
.th-traditional { width: 30%; color: var(--coral-orange); text-align: center; }
.th-nexale { 
    width: 30%; 
    color: var(--primary-cyan); 
    text-align: center;
    background: rgba(0, 242, 254, 0.08) !important;
    position: relative;
}
.th-nexale::after {
    content: '👑 RECOMENDADO';
    display: block;
    font-size: 0.65rem;
    color: var(--gold-accent);
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: 1px;
}
.td-traditional {
    text-align: center;
    color: var(--text-dim);
}
.td-nexale {
    text-align: center;
    background: rgba(0, 242, 254, 0.03);
    color: #fff;
    font-weight: 600;
}
.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
.comparison-table tr:hover .td-nexale {
    background: rgba(0, 242, 254, 0.06);
}
.badge-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: var(--emerald-green);
    font-size: 0.85rem;
}
.badge-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 82, 82, 0.15);
    color: var(--coral-orange);
    font-size: 0.85rem;
}

/* 4. Garantia Blindada */
.guarantee-box {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(26, 38, 66, 0.9));
    border: 1px solid rgba(0, 242, 254, 0.35);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.1);
}
.guarantee-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2), rgba(37, 99, 235, 0.2));
    border: 2px solid var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold-accent);
}
.guarantee-content h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 8px;
}
.guarantee-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 5. Botão Flutuante de WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--tr-normal);
}
.floating-whatsapp-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    position: relative;
    transition: var(--tr-normal);
}
.floating-whatsapp:hover .floating-whatsapp-btn {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}
.floating-whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: waPulse 2s infinite;
    z-index: -1;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
.floating-whatsapp-tooltip {
    background: #0f172a;
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 14px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transform: translateX(0);
    transition: var(--tr-normal);
}
.online-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: dotBlink 1.5s infinite;
}
@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* 6. Integrações Bar */
.integrations-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}
.integration-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--tr-fast);
}
.integration-pill:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
    background: rgba(0, 242, 254, 0.08);
}

/* 7. Responsividade para as novas seções */
@media (max-width: 992px) {
    .roi-card {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        column-count: 2;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }
    .floating-whatsapp-tooltip {
        display: none;
    }
}
@media (max-width: 600px) {
    .testimonials-grid {
        column-count: 1;
    }
    .roi-card {
        padding: 24px;
    }
    .comparison-table th, .comparison-table td {
        padding: 14px 12px;
        font-size: 0.82rem;
    }
    .hero-proof-bar {
        flex-direction: column;
        gap: 8px;
    }
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    .floating-whatsapp-btn {
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }
}

/* 8. Rotating Niche Dynamic Text */
.rotating-niche-text {
    display: inline-block;
    color: var(--primary-cyan);
    font-weight: 800;
    position: relative;
    border-bottom: 2px solid rgba(0, 242, 254, 0.4);
    padding-bottom: 2px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 9. Transformation Section (Antes vs Depois) */
.transformation-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(127, 0, 255, 0.05), transparent 70%);
}
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.trans-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--tr-normal);
}
.trans-card-before {
    background: rgba(35, 12, 22, 0.4);
    border: 1px solid rgba(255, 82, 82, 0.25);
}
.trans-card-before:hover {
    border-color: rgba(255, 82, 82, 0.45);
    box-shadow: 0 16px 36px rgba(255, 82, 82, 0.1);
}
.trans-card-after {
    background: rgba(12, 35, 30, 0.45);
    border: 1px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 16px 40px rgba(0, 242, 254, 0.08);
}
.trans-card-after:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.2);
    transform: translateY(-4px);
}
.trans-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trans-header h3 {
    font-size: 1.3rem;
    color: #fff;
}
.trans-icon-bad {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255, 82, 82, 0.15); color: var(--coral-orange);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.trans-icon-good {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(0, 242, 254, 0.15); color: var(--primary-cyan);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.trans-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.trans-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    line-height: 1.5;
}
.trans-list-before li { color: #cbd5e1; }
.trans-list-before li i { color: var(--coral-orange); margin-top: 4px; }
.trans-list-after li { color: #f8fafc; font-weight: 500; }
.trans-list-after li i { color: var(--emerald-green); margin-top: 4px; }

/* 10. Exit Intent Modal */
.exit-modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    z-index: 10005;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.exit-modal-backdrop.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}
.exit-modal-card {
    background: linear-gradient(135deg, #0d1527 0%, #152238 100%);
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: var(--radius-lg);
    max-width: 540px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
}
.exit-modal-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(0, 242, 254, 0.12);
    border: 2px solid var(--primary-cyan);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--gold-accent);
    margin: 0 auto 18px;
}
.exit-modal-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}
.exit-modal-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.exit-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* 11. Humanized Support & Real People Section */
.human-support-section {
    padding: 90px 0;
    position: relative;
}
.human-support-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(20, 35, 60, 0.9));
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.human-support-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15), transparent 70%);
    pointer-events: none;
}
.human-support-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}
.human-support-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.human-support-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.human-support-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #f8fafc;
}
.human-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25D366;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.expert-profile-box {
    background: rgba(10, 16, 28, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.expert-chat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}
.expert-avatar-real {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #00f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    border: 2px solid #25D366;
}
.expert-meta h5 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}
.expert-meta span {
    font-size: 0.8rem;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 5px;
}
.human-chat-sample {
    background: #075e54;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px 14px 2px 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-left: auto;
    max-width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .human-support-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
}


/* ==========================================================================
   CASES & RESULTADOS SECTION — Social Proof com Números em Destaque
   ========================================================================== */

.cases-section {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.cases-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0.5;
}

/* --- Global Metrics Bar --- */
.global-metrics-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(26, 38, 66, 0.9));
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    margin: 48px 0 60px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 242, 254, 0.06), inset 0 1px 0 rgba(255,255,255,0.05);
}

.global-metrics-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 242, 254, 0.03) 50%, transparent 100%);
    animation: metrics-shimmer 4s ease-in-out infinite;
}

@keyframes metrics-shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.global-metric-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
    padding: 0 12px;
}

.global-metric-item > i {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px currentColor);
    flex-shrink: 0;
}

.gm-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gm-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s;
}

.gm-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.gm-divider {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    flex-shrink: 0;
}

/* --- Case Cards Grid --- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.case-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--tr-normal);
    position: relative;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 242, 254, 0.2);
}

/* Featured card */
.case-card-featured {
    border-color: rgba(0, 242, 254, 0.3) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 242, 254, 0.15), inset 0 1px 0 rgba(0, 242, 254, 0.1) !important;
}

.case-featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: #07090e;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

/* Card Header */
.case-card-header {
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.case-header-imob { background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(0, 242, 254, 0.05)); }
.case-header-epoxi { background: linear-gradient(135deg, rgba(127, 0, 255, 0.18), rgba(0, 242, 254, 0.08)); }
.case-header-saude { background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(0, 242, 254, 0.05)); }

.case-niche-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-cyan);
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-company {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Card Body */
.case-card-body {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.case-quote {
    position: relative;
    padding-left: 8px;
}

.case-quote-icon {
    font-size: 1.2rem;
    color: var(--primary-cyan);
    opacity: 0.4;
    margin-bottom: 6px;
    display: block;
}

.case-quote p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-style: italic;
    border-left: 2px solid rgba(0, 242, 254, 0.2);
    padding-left: 14px;
}

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

.case-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.case-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 700;
}

.case-author span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Case Metrics Row */
.case-metrics-row {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--border-color);
    gap: 0;
}

.case-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.cm-value {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    filter: drop-shadow(0 0 8px currentColor);
    transition: all 0.3s;
}

.cm-label {
    font-size: 0.68rem;
    color: var(--text-dim);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.case-metric-divider {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent);
    flex-shrink: 0;
    margin: 0 6px;
}

/* --- Results Strip --- */
.results-strip {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(26, 38, 66, 0.95));
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-top: 16px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.results-strip::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), var(--primary-purple), var(--primary-cyan), transparent);
    opacity: 0.6;
}

.results-strip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.results-strip-header i {
    font-size: 1rem;
    filter: drop-shadow(0 0 6px var(--primary-cyan));
}

.results-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.rs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.rs-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.rs-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rs-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    filter: drop-shadow(0 0 6px currentColor);
}

.rs-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 500;
}

.rs-separator {
    color: var(--text-dim);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.results-strip-cta {
    display: flex;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

/* --- Counter Animation --- */
.counter-animated {
    animation: counter-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes counter-pop {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .global-metrics-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px 20px;
    }

    .gm-divider {
        display: none;
    }

    .global-metric-item {
        flex: 0 0 calc(50% - 20px);
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .global-metrics-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .global-metric-item {
        flex: none;
        width: 100%;
    }

    .results-strip {
        padding: 24px 20px;
    }

    .results-strip-grid {
        gap: 16px;
    }

    .rs-item {
        min-width: 100px;
        flex: 0 0 calc(50% - 8px);
    }

    .rs-separator {
        display: none;
    }

    .case-metrics-row {
        padding: 14px 16px;
    }

    .cm-value {
        font-size: 1.3rem;
    }
}

