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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

:root {
    --color-primary: #1974fc;
    --color-secondary: #062d63;
    --color-bg: #ffffff;
    --color-bg-soft: #f7f9fc;
    --color-text: #0d1b2a;
    --color-text-muted: #5a6a7e;
    --color-border: #e2e8f0;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Mockup light theme */
    --mock-bg: #ffffff;
    --mock-surface: #f8fafc;
    --mock-surface-2: #f1f5f9;
    --mock-border: #e2e8f0;
    --mock-text: #0f172a;
    --mock-text-muted: #64748b;
    --mock-accent: #1974fc;
    --mock-cyan: #062d63;
    --mock-green: #059669;
    --mock-orange: #d97706;
    --mock-red: #ef4444;
    --mock-purple: #8b5cf6;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: clip;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: linear-gradient(90deg, var(--color-secondary) 0%, #0a3d7a 50%, var(--color-secondary) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 9px 0;
    overflow: hidden;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    flex-wrap: wrap;
}

.topbar-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.topbar-meta-logo {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
}

.topbar-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    height: 72px;
    display: flex;
    align-items: center;
}

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

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo .logo-img {
    height: 38px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-signin {
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-signin:hover {
    border-color: var(--color-text);
    background: var(--color-bg-soft);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    background: var(--color-secondary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 116, 252, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25, 116, 252, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(25, 116, 252, 0.08);
    border: 1px solid rgba(25, 116, 252, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-center h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.08;
    color: var(--color-secondary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-center h1 .highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    background: var(--color-primary);
    color: #ffffff;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 45, 99, 0.25);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 10px;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all 0.25s;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(25, 116, 252, 0.04);
    transform: translateY(-2px);
}

/* ============================================
   SHOWCASE (Mockup Window + Tabs)
   ============================================ */
.showcase {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.showcase-window {
    background: var(--mock-bg);
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--color-border);
    border-top: none;
    overflow: hidden;
    height: 480px;
    position: relative;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 20px 60px rgba(6,45,99,0.08),
        0 40px 80px rgba(6,45,99,0.04);
}

.mockup-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.mockup-screen.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Showcase Tabs */
.showcase-tabs {
    display: flex;
    justify-content: center;
    background: var(--color-bg-soft);
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--color-border);
    border-bottom: none;
    padding: 6px 6px 0;
    gap: 4px;
}

.showcase-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 10px 10px 0 0;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.showcase-tab:hover {
    color: var(--color-text);
}

.showcase-tab.active {
    color: var(--color-primary);
    background: var(--mock-bg);
    font-weight: 600;
}

.showcase-tab svg {
    flex-shrink: 0;
}

/* ============================================
   MOCK APP LAYOUT
   ============================================ */
.mock-app {
    display: flex;
    height: 100%;
    font-family: var(--font-body);
}

/* Mini sidebar */
.mock-sidebar-mini {
    width: 48px;
    background: var(--mock-surface);
    border-right: 1px solid var(--mock-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 8px;
    flex-shrink: 0;
}

.mock-sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mock-text-muted);
    transition: all 0.2s;
    cursor: pointer;
}

.mock-sidebar-icon.active {
    background: rgba(25, 116, 252, 0.1);
    color: var(--mock-accent);
}

/* ============================================
   MOCK: CHAT
   ============================================ */
.mock-chat-list {
    width: 260px;
    background: var(--mock-surface);
    border-right: 1px solid var(--mock-border);
    overflow: hidden;
    flex-shrink: 0;
}

.mock-chat-search {
    padding: 12px;
    border-bottom: 1px solid var(--mock-border);
}

.mock-search-input {
    background: var(--mock-bg);
    border: 1px solid var(--mock-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--mock-text-muted);
}

.mock-chat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid var(--mock-border);
    cursor: pointer;
    transition: background 0.15s;
}

.mock-chat-item:hover {
    background: rgba(25, 116, 252, 0.03);
}

.mock-chat-item.active {
    background: rgba(25, 116, 252, 0.06);
    border-left: 2px solid var(--mock-accent);
}

.mock-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.mock-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.mock-chat-info {
    flex: 1;
    min-width: 0;
}

.mock-chat-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--mock-text);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-badge-wa {
    font-size: 9px;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.mock-badge-ig {
    font-size: 9px;
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.mock-chat-last {
    font-size: 11px;
    color: var(--mock-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-chat-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.mock-time {
    font-size: 10px;
    color: var(--mock-text-muted);
}

.mock-unread {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mock-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat window */
.mock-chat-window {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--mock-bg);
}

.mock-chat-header-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--mock-border);
    background: var(--mock-surface);
}

.mock-contact-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--mock-text);
}

.mock-contact-status {
    font-size: 10px;
    color: var(--mock-green);
}

.mock-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.mock-msg {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
    position: relative;
    animation: msgFadeIn 0.5s ease both;
}

.mock-msg p {
    margin: 0;
}

.mock-msg.received {
    background: var(--mock-surface-2);
    color: var(--mock-text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.mock-msg.sent {
    background: var(--mock-accent);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mock-msg.sent.ia {
    background: linear-gradient(135deg, var(--mock-purple), #6d28d9);
}

.mock-ia-tag {
    font-size: 9px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
}

.mock-msg-time {
    font-size: 9px;
    opacity: 0.6;
    display: block;
    text-align: right;
    margin-top: 4px;
}

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

.mock-msg:nth-child(1) { animation-delay: 0.1s; }
.mock-msg:nth-child(2) { animation-delay: 0.25s; }
.mock-msg:nth-child(3) { animation-delay: 0.4s; }
.mock-msg:nth-child(4) { animation-delay: 0.55s; }

.mock-chat-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--mock-border);
    background: var(--mock-surface);
}

.mock-input-box {
    flex: 1;
    background: var(--mock-bg);
    border: 1px solid var(--mock-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--mock-text-muted);
}

.mock-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--mock-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

/* ============================================
   MOCK: PIPELINE
   ============================================ */
.mock-pipeline-content,
.mock-dashboard-content,
.mock-ia-content,
.mock-campaign-content {
    flex: 1;
    padding: 20px;
    overflow: hidden;
}

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

.mock-page-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--mock-text);
    font-family: var(--font-heading);
}

.mock-filters {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mock-filter-chip {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--mock-text-muted);
    background: var(--mock-bg);
    border: 1px solid var(--mock-border);
}

.mock-filter-chip.active {
    background: rgba(25, 116, 252, 0.12);
    color: var(--mock-accent);
    border-color: rgba(25, 116, 252, 0.25);
}

.mock-filter-chip.active-green {
    background: rgba(5, 150, 105, 0.12);
    color: var(--mock-green);
    border-color: rgba(5, 150, 105, 0.25);
}

/* Kanban board */
.mock-kanban {
    display: flex;
    gap: 12px;
    height: calc(100% - 50px);
    overflow: hidden;
}

.mock-kanban-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-col-header {
    font-size: 11px;
    font-weight: 600;
    color: var(--mock-text-muted);
    padding: 8px 10px;
    background: var(--mock-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mock-col-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-col-count {
    margin-left: auto;
    font-size: 10px;
    color: var(--mock-text-muted);
    background: var(--mock-bg);
    padding: 1px 6px;
    border-radius: 4px;
}

.mock-deal-card {
    background: var(--mock-surface);
    border: 1px solid var(--mock-border);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.2s;
    animation: cardSlideIn 0.4s ease both;
}

.mock-deal-card.highlight-card {
    border-color: rgba(25, 116, 252, 0.25);
    box-shadow: 0 2px 8px rgba(25, 116, 252, 0.08);
}

.mock-deal-card.won {
    border-color: rgba(5, 150, 105, 0.3);
}

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

.mock-deal-card:nth-child(2) { animation-delay: 0.1s; }
.mock-deal-card:nth-child(3) { animation-delay: 0.2s; }

.mock-deal-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--mock-text);
    margin-bottom: 4px;
}

.mock-deal-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.mock-deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-temp {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.mock-temp.hot {
    background: rgba(239, 68, 68, 0.12);
    color: var(--mock-red);
}

.mock-temp.warm {
    background: rgba(217, 119, 6, 0.12);
    color: var(--mock-orange);
}

.mock-temp.won {
    background: rgba(5, 150, 105, 0.12);
    color: var(--mock-green);
}

.mock-deal-origin {
    font-size: 9px;
    color: var(--mock-text-muted);
}

/* ============================================
   MOCK: DASHBOARD
   ============================================ */
.mock-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.mock-kpi-card {
    background: var(--mock-surface);
    border: 1px solid var(--mock-border);
    border-radius: 10px;
    padding: 14px;
    animation: cardSlideIn 0.4s ease both;
}

.mock-kpi-card:nth-child(2) { animation-delay: 0.08s; }
.mock-kpi-card:nth-child(3) { animation-delay: 0.16s; }
.mock-kpi-card:nth-child(4) { animation-delay: 0.24s; }

.mock-kpi-label {
    font-size: 11px;
    color: var(--mock-text-muted);
    margin-bottom: 6px;
}

.mock-kpi-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--mock-text);
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.mock-kpi-trend {
    font-size: 11px;
    font-weight: 600;
}

.mock-kpi-trend.up {
    color: var(--mock-green);
}

/* Charts row */
.mock-charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mock-chart-card {
    background: var(--mock-surface);
    border: 1px solid var(--mock-border);
    border-radius: 10px;
    padding: 16px;
}

.mock-chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--mock-text);
    margin-bottom: 16px;
}

/* Funnel chart */
.mock-funnel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-funnel-bar {
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    animation: barGrow 0.6s ease both;
}

.mock-funnel-bar:nth-child(2) { animation-delay: 0.1s; }
.mock-funnel-bar:nth-child(3) { animation-delay: 0.2s; }
.mock-funnel-bar:nth-child(4) { animation-delay: 0.3s; }

@keyframes barGrow {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

/* Bar chart */
.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 130px;
    padding-top: 10px;
}

.mock-bar {
    flex: 1;
    background: var(--mock-accent);
    border-radius: 4px 4px 0 0;
    opacity: 0.35;
    animation: barRise 0.5s ease both;
    min-height: 4px;
}

.mock-bar.highlight-bar {
    opacity: 1;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(25, 116, 252, 0.2);
}

.mock-bar:nth-child(1) { animation-delay: 0.05s; }
.mock-bar:nth-child(2) { animation-delay: 0.1s; }
.mock-bar:nth-child(3) { animation-delay: 0.15s; }
.mock-bar:nth-child(4) { animation-delay: 0.2s; }
.mock-bar:nth-child(5) { animation-delay: 0.25s; }
.mock-bar:nth-child(6) { animation-delay: 0.3s; }
.mock-bar:nth-child(7) { animation-delay: 0.35s; }
.mock-bar:nth-child(8) { animation-delay: 0.4s; }
.mock-bar:nth-child(9) { animation-delay: 0.45s; }
.mock-bar:nth-child(10) { animation-delay: 0.5s; }
.mock-bar:nth-child(11) { animation-delay: 0.55s; }
.mock-bar:nth-child(12) { animation-delay: 0.6s; }

@keyframes barRise {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================
   MOCK: IA
   ============================================ */
.mock-ia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: calc(100% - 50px);
}

.mock-ia-config {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.mock-ia-section {
    animation: cardSlideIn 0.4s ease both;
}

.mock-ia-section:nth-child(2) { animation-delay: 0.1s; }
.mock-ia-section:nth-child(3) { animation-delay: 0.2s; }

.mock-ia-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--mock-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mock-ia-input {
    background: var(--mock-bg);
    border: 1px solid var(--mock-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--mock-text);
}

.mock-ia-textarea {
    background: var(--mock-bg);
    border: 1px solid var(--mock-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 11px;
    color: var(--mock-text-muted);
    line-height: 1.6;
    max-height: 80px;
    overflow: hidden;
}

.mock-ia-rules {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-rule {
    background: var(--mock-bg);
    border: 1px solid var(--mock-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: var(--mock-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mock-rule-badge {
    font-size: 9px;
    font-weight: 700;
    color: var(--mock-purple);
    background: rgba(139, 92, 246, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.mock-rule-arrow {
    color: var(--color-primary);
    font-weight: 700;
}

.mock-rule-action {
    color: var(--mock-text);
    font-weight: 600;
}

/* IA Preview */
.mock-ia-preview {
    background: var(--mock-surface);
    border: 1px solid var(--mock-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mock-ia-preview-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--mock-text-muted);
    padding: 12px 14px;
    border-bottom: 1px solid var(--mock-border);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mock-ia-chat {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

/* ============================================
   MOCK: CAMPANHAS
   ============================================ */
.mock-campaign-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mock-camp-stat {
    background: var(--mock-surface);
    border: 1px solid var(--mock-border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    animation: cardSlideIn 0.4s ease both;
}

.mock-camp-stat:nth-child(2) { animation-delay: 0.08s; }
.mock-camp-stat:nth-child(3) { animation-delay: 0.16s; }
.mock-camp-stat:nth-child(4) { animation-delay: 0.24s; }

.mock-camp-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--mock-text);
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.mock-camp-stat-label {
    font-size: 10px;
    color: var(--mock-text-muted);
}

.mock-btn-create {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: var(--mock-accent);
    border: none;
    cursor: pointer;
}

/* Campaign table */
.mock-campaign-table {
    background: var(--mock-surface);
    border: 1px solid var(--mock-border);
    border-radius: 10px;
    overflow: hidden;
}

.mock-table-header,
.mock-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 8px;
    padding: 10px 14px;
    font-size: 11px;
    align-items: center;
}

.mock-table-header {
    background: var(--mock-surface-2);
    border-bottom: 1px solid var(--mock-border);
    color: var(--mock-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 10px;
}

.mock-table-row {
    color: var(--mock-text);
    border-bottom: 1px solid var(--mock-border);
    animation: cardSlideIn 0.3s ease both;
}

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

.mock-table-row:nth-child(2) { animation-delay: 0.05s; }
.mock-table-row:nth-child(3) { animation-delay: 0.1s; }
.mock-table-row:nth-child(4) { animation-delay: 0.15s; }
.mock-table-row:nth-child(5) { animation-delay: 0.2s; }

.mock-status {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.mock-status.finished {
    background: rgba(5, 150, 105, 0.12);
    color: var(--mock-green);
}

.mock-status.sending {
    background: rgba(25, 116, 252, 0.12);
    color: var(--mock-accent);
}

.mock-status.draft {
    background: rgba(100, 116, 139, 0.1);
    color: var(--mock-text-muted);
}

.mock-cat {
    font-size: 9px;
    font-weight: 600;
    color: var(--mock-text-muted);
    background: var(--mock-surface-2);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   LOGOS SECTION
   ============================================ */
.logos-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.logos-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 32px;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos-grid img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   STEPS SECTION (COMO FUNCIONA)
   ============================================ */
.steps-section {
    padding: 100px 0;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    padding: 40px 28px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

.step-icon {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.step-divider {
    color: var(--color-border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin-top: 60px;
}

/* ============================================
   FEATURES SECTION — BENTO GRID
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.bento-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    box-shadow: 0 8px 30px rgba(6, 45, 99, 0.06);
}

.bento-card.bento-wide {
    grid-column: span 2;
}

.bento-info {
    margin-bottom: 24px;
}

.bento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(25, 116, 252, 0.08);
    color: var(--color-primary);
    border-radius: 10px;
    margin-bottom: 14px;
}

.bento-icon-purple {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.bento-icon-green {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.bento-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.bento-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.bento-visual {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

/* --- Bento: Chat Notifications --- */
.bento-chat-demo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-notif {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    animation: bentoSlideIn 0.5s ease both;
}

.bento-notif-1 { animation-delay: 0.1s; }
.bento-notif-2 { animation-delay: 0.3s; }
.bento-notif-3 { animation-delay: 0.5s; }

@keyframes bentoSlideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

.bento-notif-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bento-notif-content {
    flex: 1;
    min-width: 0;
}

.bento-notif-name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
}

.bento-notif-msg {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-notif-channel {
    font-size: 9px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

.bento-notif-channel.wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.bento-notif-channel.ig {
    background: rgba(228, 64, 95, 0.12);
    color: #e4405f;
}

.bento-notif-channel.msg {
    background: rgba(0, 132, 255, 0.12);
    color: #0084ff;
}

.bento-notif-badge {
    font-size: 9px;
    font-weight: 700;
    background: var(--color-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
    animation: bentoPulse 2s ease-in-out infinite;
}

@keyframes bentoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.bento-notif-time {
    font-size: 10px;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

/* --- Bento: Kanban --- */
.bento-kanban {
    width: 100%;
    display: flex;
    gap: 8px;
}

.bento-kb-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-kb-header {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.bento-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bento-kb-card {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bento-kb-card.sliding {
    animation: bentoSlide 3s ease-in-out infinite;
}

@keyframes bentoSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); box-shadow: 0 2px 8px rgba(25,116,252,0.12); }
}

.bento-kb-card.won {
    border-color: rgba(5, 150, 105, 0.2);
    background: rgba(5, 150, 105, 0.04);
}

.bento-kb-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text);
}

.bento-kb-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.bento-kb-tag {
    font-size: 9px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
    width: fit-content;
}

.bento-kb-tag.hot {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.bento-kb-tag.warm {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
}

.bento-kb-tag.won-tag {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

/* --- Bento: IA Demo --- */
.bento-ia-demo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-ia-bubble {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
    max-width: 85%;
    animation: bentoSlideIn 0.4s ease both;
}

.bento-ia-bubble:nth-child(2) { animation-delay: 0.2s; }
.bento-ia-bubble:nth-child(3) { animation-delay: 0.4s; }

.bento-ia-bubble.customer {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bento-ia-bubble.ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(25, 116, 252, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: var(--color-text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bento-ia-label {
    font-size: 9px;
    font-weight: 700;
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

.bento-ia-typing {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(25, 116, 252, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    animation: bentoSlideIn 0.4s ease 0.6s both;
}

.bento-typing-dots {
    display: flex;
    gap: 3px;
}

.bento-typing-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8b5cf6;
    animation: bentoTyping 1.4s ease-in-out infinite;
}

.bento-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.bento-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bentoTyping {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-3px); }
}

/* --- Bento: Metrics --- */
.bento-metrics {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.bento-metric-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bento-metric-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

.bento-metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-secondary);
    font-family: var(--font-heading);
}

.bento-metric-trend {
    font-size: 11px;
    font-weight: 600;
    color: #059669;
}

.bento-mini-chart {
    flex: 1.2;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 64px;
}

.bento-mini-bar {
    flex: 1;
    height: var(--h);
    background: rgba(25, 116, 252, 0.15);
    border-radius: 3px 3px 0 0;
    animation: barRise 0.6s ease both;
}

.bento-mini-bar:nth-child(1) { animation-delay: 0.05s; }
.bento-mini-bar:nth-child(2) { animation-delay: 0.1s; }
.bento-mini-bar:nth-child(3) { animation-delay: 0.15s; }
.bento-mini-bar:nth-child(4) { animation-delay: 0.2s; }
.bento-mini-bar:nth-child(5) { animation-delay: 0.25s; }
.bento-mini-bar:nth-child(6) { animation-delay: 0.3s; }
.bento-mini-bar:nth-child(7) { animation-delay: 0.35s; }
.bento-mini-bar:nth-child(8) { animation-delay: 0.4s; }
.bento-mini-bar:nth-child(9) { animation-delay: 0.45s; }
.bento-mini-bar:nth-child(10) { animation-delay: 0.5s; }

.bento-bar-accent {
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(25, 116, 252, 0.25);
}

/* --- Bento: Campaigns --- */
.bento-campaign-demo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-camp-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 11px;
}

.bento-camp-name {
    flex: 1;
    font-weight: 600;
    color: var(--color-text);
}

.bento-camp-status {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.bento-camp-status.done {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.bento-camp-status.active {
    background: rgba(25, 116, 252, 0.1);
    color: var(--color-primary);
    animation: bentoPulse 2s ease-in-out infinite;
}

.bento-camp-status.draft {
    background: rgba(100, 116, 139, 0.1);
    color: var(--color-text-muted);
}

.bento-camp-num {
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 28px;
    text-align: right;
}

.bento-camp-bar {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.bento-camp-bar-fill {
    height: 100%;
    width: 95.3%;
    background: linear-gradient(90deg, var(--color-primary), #059669);
    border-radius: 3px;
    animation: bentoBarFill 1.5s ease 0.3s both;
}

@keyframes bentoBarFill {
    from { width: 0; }
}

.bento-camp-caption {
    font-size: 10px;
    color: #059669;
    font-weight: 600;
}

/* --- Bento: Timeline --- */
.bento-timeline {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 16px;
}

.bento-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--color-border);
}

.bento-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    animation: bentoSlideIn 0.4s ease both;
    position: relative;
}

.bento-tl-item:nth-child(2) { animation-delay: 0.15s; }
.bento-tl-item:nth-child(3) { animation-delay: 0.3s; }
.bento-tl-item:nth-child(4) { animation-delay: 0.45s; }

.bento-tl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    position: absolute;
    left: -16px;
    z-index: 1;
}

.bento-tl-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.bento-tl-action {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text);
}

.bento-tl-time {
    font-size: 10px;
    color: var(--color-text-muted);
}

/* ============================================
   COMPARE SECTION
   ============================================ */
.compare-section {
    padding: 100px 0;
}

.compare-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-table th,
.compare-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.compare-table thead th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-bg-soft);
    border-bottom: 2px solid var(--color-border);
}

.compare-table thead th.compare-highlight {
    color: var(--color-primary);
}

.compare-table td {
    color: var(--color-text-muted);
}

.compare-table td:first-child {
    font-weight: 600;
    color: var(--color-text);
}

.compare-table td.compare-highlight {
    color: var(--color-text);
    background: rgba(25, 116, 252, 0.03);
}

.check-yes {
    color: var(--mock-green);
    font-weight: 700;
    margin-right: 4px;
}

.check-no {
    color: var(--mock-red);
    font-weight: 700;
    margin-right: 4px;
}

.check-partial {
    color: var(--mock-orange);
    font-weight: 700;
    margin-right: 4px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(6, 45, 99, 0.06);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-role {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 36px 28px 28px;
    position: relative;
    transition: box-shadow 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 8px 30px rgba(6, 45, 99, 0.06);
}

.pricing-card-featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 30px rgba(25, 116, 252, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
}

.pricing-header {
    margin-bottom: 28px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
}

.price-big {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
}

.pricing-card-featured .price-big {
    color: var(--color-primary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    padding-left: 24px;
    position: relative;
}

.pricing-features li.pf-check {
    color: var(--color-text);
}

.pricing-features li.pf-check::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #059669;
    font-size: 13px;
}

.pricing-features li.pf-x {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.pricing-features li.pf-x::before {
    content: '—';
    position: absolute;
    left: 0;
    font-weight: 400;
    color: var(--color-text-muted);
}

.btn-pricing {
    display: block;
    width: 100%;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    background: var(--color-primary);
    color: #ffffff;
    text-align: center;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn-pricing:hover {
    background: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(6, 45, 99, 0.15);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-pricing-outline:hover {
    background: var(--color-bg-soft);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.pricing-trial-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.pricing-trial-note strong {
    color: var(--color-text);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 100px 0;
}

.cta-final-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-final h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-final p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-final-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-logo .logo-img {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-pitch {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 13px;
    line-height: 1.8;
}

.footer-contact strong {
    color: rgba(255, 255, 255, 0.9);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .header-nav.active {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 900px) {
    .hero-center h1 {
        font-size: 2.8rem;
    }

    .showcase-window {
        height: 380px;
    }

    .mock-chat-list {
        width: 200px;
    }

    .mock-kpi-row,
    .mock-campaign-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-charts-row {
        grid-template-columns: 1fr;
    }

    .mock-ia-grid {
        grid-template-columns: 1fr;
    }

    .mock-ia-preview {
        display: none;
    }

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

    .bento-card.bento-wide {
        grid-column: span 1;
    }

    .bento-metrics {
        flex-wrap: wrap;
    }

    .bento-mini-chart {
        width: 100%;
        flex-basis: 100%;
        margin-top: 8px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-divider {
        transform: rotate(90deg);
        margin: 0;
        padding: 0;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .cta-final h2 {
        font-size: 1.8rem;
    }

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

@media (max-width: 768px) {
    .showcase-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .showcase-tabs::-webkit-scrollbar {
        display: none;
    }

    .showcase-tab {
        padding: 10px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .topbar-inner {
        font-size: 10px;
        gap: 8px;
    }

    .logos-grid {
        gap: 24px;
    }

    .logos-grid img {
        height: 28px;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .hero-center h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .showcase {
        display: none;
    }

    .hero-center {
        margin-bottom: 0;
    }

    .header-actions {
        display: none;
    }

    .hero-buttons,
    .cta-final-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .pricing-card {
        padding: 40px 24px 28px;
    }
}

@media (max-width: 480px) {
    .mock-chat-list {
        display: none;
    }

    .mock-kanban-col:nth-child(3),
    .mock-kanban-col:nth-child(4) {
        display: none;
    }

    .mock-table-header span:nth-child(4),
    .mock-table-header span:nth-child(5),
    .mock-table-row span:nth-child(4),
    .mock-table-row span:nth-child(5) {
        display: none;
    }

    .mock-table-header,
    .mock-table-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .topbar-inner {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 9px;
        gap: 4px;
    }

    .compare-table th,
    .compare-table td {
        padding: 8px 6px;
        font-size: 11px;
    }

    .compare-table td:first-child {
        word-break: break-word;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-center h1 {
        font-size: 1.8rem;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
