:root {
    --bg-dark: #060A17;
    --bg-surface: #0E1426;
    --surface-glass: rgba(14, 20, 38, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);

    --primary-color: #2F80ED;
    --accent-color: #00E4B1;
    --wa-color: #25D366;
    --gold-color: #F5A623;
    --green-color: #10B981;
    --purple-color: #8B5CF6;
    --red-color: #EF4444;

    --gradient-primary: linear-gradient(135deg, #2F80ED, #00D2FF);
    --gradient-wa: linear-gradient(135deg, #25D366, #128C7E);
    --gradient-gold: linear-gradient(135deg, #F5A623, #F7CA5B);
    --gradient-purple: linear-gradient(135deg, #8B5CF6, #6366F1);
    --gradient-teal: linear-gradient(135deg, #00E4B1, #0EA5E9);

    --text-primary: #FFFFFF;
    --text-secondary: #8B9AB4;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; }

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

.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
}

/* ── BADGE ── */
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    background: rgba(37,211,102,0.12);
    color: var(--wa-color);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 30px;
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 28px;
}

/* ── NAV ── */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 14px 0; border-bottom: 1px solid var(--border-glass);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-links li a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.9rem; font-weight: 600; transition: color 0.3s ease;
}
.nav-links li a:hover { color: var(--text-primary); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 700; text-decoration: none; transition: var(--transition);
    border: none; cursor: pointer;
}
.btn-primary {
    background: var(--gradient-primary); color: white;
    box-shadow: 0 12px 28px rgba(47,128,237,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgba(47,128,237,0.45); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; border-radius: 12px; }

/* ── HERO ── */
.hero {
    position: relative;
    padding: 160px 0 60px;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.blob {
    position: absolute; filter: blur(110px); border-radius: 50%;
    opacity: 0.4; animation: float 22s infinite alternate linear;
}
.blob-1 { top: -15%; right: -8%; width: 550px; height: 550px; background: #1a6ed8; }
.blob-2 { bottom: -15%; left: -10%; width: 500px; height: 500px; background: #128C7E; opacity: 0.35; animation-delay: -7s; }
.blob-3 { top: 50%; right: 25%; width: 280px; height: 280px; background: var(--purple-color); opacity: 0.2; animation-delay: -14s; }

@keyframes float {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(-60px, 60px) scale(1.12); }
}

.hero-content {
    display: flex; align-items: center; gap: 70px;
    margin-bottom: 60px;
}
.hero-text { flex: 1; max-width: 560px; }

h1 {
    font-size: 3.6rem; line-height: 1.08; margin-bottom: 24px;
    letter-spacing: -1px;
}
h1 span {
    background: var(--gradient-wa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
}
h2 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 24px; }
h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
}
h3 { font-size: 1.8rem; margin-bottom: 20px; line-height: 1.2; }

p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 28px; }
.hero-sub { font-size: 1.15rem; line-height: 1.7; }

.hero-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 32px;
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat strong {
    display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
    background: var(--gradient-wa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat span { font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-glass); flex-shrink: 0; margin: 0 4px; }

/* ── PHONE MOCKUP (hero) ── */
.hero-image { flex: 1; display: flex; justify-content: center; position: relative; }

.phone-hero {
    position: relative; display: inline-block;
}
.phone-frame {
    width: 310px;
    background: #0d1120;
    border-radius: 44px;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow:
        0 0 0 6px rgba(255,255,255,0.04),
        0 40px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(37,211,102,0.1);
    overflow: hidden;
    position: relative;
}
.phone-notch {
    width: 90px; height: 22px;
    background: #0d1120;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative; z-index: 10;
    border: 2px solid rgba(255,255,255,0.08);
    border-top: none;
}
.phone-screen {
    background: #ECE5DD;
    display: flex; flex-direction: column;
    min-height: 560px;
}

/* WhatsApp Header */
.wa-header-bar {
    display: flex; align-items: center; gap: 10px;
    background: #075E54; padding: 10px 14px;
    position: sticky; top: 0; z-index: 5;
}
.wa-back { color: white; font-size: 0.85rem; cursor: pointer; }
.wa-contact-info { display: flex; align-items: center; gap: 10px; flex: 1; }
.wa-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.wa-avatar.green-av { background: var(--gradient-wa); color: white; }
.wa-avatar.xs { width: 28px; height: 28px; font-size: 0.72rem; }
.wa-avatar.sm { width: 30px; height: 30px; font-size: 0.78rem; }
.wa-name { font-size: 0.82rem; font-weight: 700; color: white; line-height: 1.2; }
.wa-status { font-size: 0.65rem; color: rgba(255,255,255,0.7); }
.wa-icons { display: flex; gap: 14px; color: rgba(255,255,255,0.85); font-size: 0.8rem; }

/* Chat body */
.wa-chat-body {
    flex: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4b5a0' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 12px 10px;
    display: flex; flex-direction: column; gap: 6px;
    overflow-y: auto; overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Chat bubbles */
.chat-bubble {
    max-width: 80%;
    padding: 8px 10px 14px;
    border-radius: 10px;
    position: relative;
    font-size: 0.75rem;
    line-height: 1.4;
}
.chat-bubble.received {
    background: white;
    align-self: flex-start;
    border-radius: 0 10px 10px 10px;
    color: #111;
}
.chat-bubble.sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-radius: 10px 0 10px 10px;
    color: #111;
}
.chat-bubble.confirm-bubble {
    background: linear-gradient(135deg, #DCF8C6, #b8f0d0);
    display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
}
.chat-bubble.sm-bubble { padding: 6px 8px 12px; }
.time {
    display: block; font-size: 0.6rem; color: #999;
    text-align: right; margin-top: 2px; position: absolute;
    bottom: 4px; right: 8px;
}

/* Slot buttons */
.chat-slots {
    align-self: flex-end;
    display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end;
    max-width: 85%;
}
.slot-btn {
    background: white; border: 1.5px solid #25D366;
    color: #075E54; padding: 5px 10px; border-radius: 16px;
    font-size: 0.68rem; font-weight: 600; cursor: pointer;
}
.active-slot {
    background: #25D366; color: white; border-color: #25D366;
}

/* NPS in phone */
.nps-msg {
    background: white; border-radius: 10px;
    padding: 10px 12px; align-self: flex-end;
    max-width: 85%; text-align: center;
}
.nps-title { font-size: 0.7rem; font-weight: 700; color: #333; margin-bottom: 6px; }
.nps-stars { color: #F5A623; font-size: 0.9rem; display: flex; gap: 3px; justify-content: center; }

/* Floating badges on phone */
.float-badge {
    position: absolute;
    display: flex; align-items: center; gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 30px; padding: 8px 16px;
    font-size: 0.78rem; font-weight: 700; color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    white-space: nowrap;
}
.float-badge i { font-size: 0.85rem; }
.badge-top-right {
    top: 40px; right: -60px;
    background: rgba(139,92,246,0.15);
    border-color: rgba(139,92,246,0.4);
    color: #A78BFA;
    animation: badge-float 3s ease-in-out infinite alternate;
}
.badge-bottom-left {
    bottom: 60px; left: -60px;
    background: rgba(37,211,102,0.12);
    border-color: rgba(37,211,102,0.35);
    color: var(--wa-color);
    animation: badge-float 3s ease-in-out infinite alternate;
    animation-delay: -1.5s;
}
@keyframes badge-float {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* ── JOURNEY MINI (hero bottom) ── */
.journey-mini {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px 32px;
    margin: 0 0 0;
}
.jm-step {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 8px 20px;
    color: var(--text-secondary);
    font-size: 0.78rem; font-weight: 600;
    transition: color 0.3s;
}
.jm-step i { font-size: 1.2rem; }
.jm-step.active-step { color: var(--wa-color); }
.jm-arrow { color: rgba(255,255,255,0.15); font-size: 0.7rem; padding: 0 4px; }

/* ── SECTIONS ── */
.features { padding: 80px 0 100px; position: relative; }
.alt-section { background: linear-gradient(180deg, rgba(14,20,38,0.5) 0%, rgba(6,10,23,0.5) 100%); }

.section-header {
    text-align: center; max-width: 760px; margin: 0 auto 80px;
}
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; border-radius: 30px;
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
}
.wa-badge { background: rgba(37,211,102,0.12); color: var(--wa-color); border: 1px solid rgba(37,211,102,0.25); }
.blue-badge { background: rgba(47,128,237,0.12); color: var(--primary-color); border: 1px solid rgba(47,128,237,0.25); }
.gold-badge { background: rgba(245,166,35,0.12); color: var(--gold-color); border: 1px solid rgba(245,166,35,0.25); }
.teal-badge { background: rgba(0,228,177,0.12); color: var(--accent-color); border: 1px solid rgba(0,228,177,0.25); }
.section-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }

/* ── FEATURE ROW ── */
.feature-row {
    display: flex; align-items: center; gap: 80px; margin-bottom: 120px;
}
.feature-row.row-reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; max-width: 480px; }
.feature-image { flex: 1; }

.check-list { list-style: none; margin-top: 28px; }
.check-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px; color: var(--text-primary); font-weight: 500;
    font-size: 0.95rem;
}
.check-list i { color: var(--accent-color); font-size: 0.9rem; flex-shrink: 0; margin-top: 3px; }

/* ── ICON BOX ── */
.icon-box {
    width: 52px; height: 52px;
    background: rgba(47,128,237,0.1); color: var(--primary-color);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 24px;
    border: 1px solid rgba(47,128,237,0.25);
}
.icon-box.wa-icon { background: rgba(37,211,102,0.12); color: var(--wa-color); border-color: rgba(37,211,102,0.3); }
.icon-box.gold { background: rgba(245,166,35,0.1); color: var(--gold-color); border-color: rgba(245,166,35,0.3); }
.icon-box.green { background: rgba(16,185,129,0.1); color: var(--green-color); border-color: rgba(16,185,129,0.3); }
.icon-box.teal { background: rgba(0,228,177,0.1); color: var(--accent-color); border-color: rgba(0,228,177,0.3); }
.icon-box.purple { background: rgba(139,92,246,0.1); color: var(--purple-color); border-color: rgba(139,92,246,0.3); }

/* ── META BADGE ── */
.meta-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: 12px; padding: 14px 18px;
    margin-top: 28px;
}
.meta-badge i { font-size: 1.6rem; color: #0081FB; }
.meta-badge strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.meta-badge span { font-size: 0.75rem; color: var(--text-secondary); }

/* ── CAPTURE VISUAL ── */
.capture-visual {
    display: flex; flex-direction: column; align-items: center; gap: 0;
}
.ad-card {
    background: white; border-radius: 14px;
    width: 100%; max-width: 320px;
    overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.ad-header { padding: 10px 14px; border-bottom: 1px solid #eee; }
.ad-logo-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white; padding: 4px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700;
}
.ad-body { display: flex; gap: 12px; padding: 14px; }
.ad-img-placeholder {
    width: 52px; height: 52px; border-radius: 10px;
    background: linear-gradient(135deg, #2F80ED, #00E4B1);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem; flex-shrink: 0;
}
.ad-text strong { display: block; font-size: 0.85rem; color: #111; margin-bottom: 4px; }
.ad-text p { font-size: 0.78rem; color: #555; margin-bottom: 0; }
.ad-cta-btn {
    margin: 0 14px 14px; background: #25D366; color: white;
    text-align: center; padding: 10px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.flow-arrow-down {
    color: var(--wa-color); font-size: 1.2rem; padding: 10px;
    animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

.wa-preview-card {
    background: var(--bg-surface);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 14px; padding: 16px;
    width: 100%; max-width: 320px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(37,211,102,0.08);
}
.wp-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wp-msg { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.response-time-pill {
    background: rgba(37,211,102,0.15); color: var(--wa-color);
    padding: 3px 10px; border-radius: 20px; font-size: 0.68rem; font-weight: 700;
    margin-left: auto;
}

/* ── BOT FLOW DIAGRAM ── */
.bot-flow-diagram {
    display: flex; flex-direction: column; align-items: center;
    gap: 0; padding: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.bf-node {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 14px 24px; border-radius: 14px;
    font-size: 0.82rem; font-weight: 700; color: var(--text-primary);
    min-width: 120px; text-align: center;
}
.bf-node i { font-size: 1.3rem; }
.bf-start { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: var(--wa-color); }
.bf-ai { background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3); color: var(--purple-color); }
.bf-auto { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: var(--green-color); }
.bf-human { background: rgba(47,128,237,0.12); border: 1px solid rgba(47,128,237,0.3); color: var(--primary-color); }
.bf-done { background: rgba(0,228,177,0.12); border: 1px solid rgba(0,228,177,0.3); color: var(--accent-color); }
.bf-arrow { color: var(--text-secondary); font-size: 0.9rem; padding: 8px 0; }
.bf-split {
    display: flex; gap: 28px; align-items: flex-start;
    padding: 10px 0;
}
.bf-branch { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bf-tag {
    font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 12px;
}
.green-tag { background: rgba(16,185,129,0.15); color: var(--green-color); }
.blue-tag { background: rgba(47,128,237,0.15); color: var(--primary-color); }
.bf-merge-arrow { color: var(--text-secondary); font-size: 0.9rem; padding: 8px 0; }

/* ── KANBAN BOARD ── */
.kanban-board {
    display: flex; gap: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 18px; padding: 18px 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow-x: auto;
}
.kanban-col {
    min-width: 150px; flex: 1;
    display: flex; flex-direction: column; gap: 8px;
}
.kanban-col-header {
    font-size: 0.72rem; font-weight: 700; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 6px 4px; display: flex; align-items: center; gap: 6px;
}
.kanban-count {
    margin-left: auto; background: rgba(255,255,255,0.08);
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; font-weight: 700; color: var(--text-secondary);
}
.kanban-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-gray   { background: #64748B; }
.dot-blue   { background: var(--primary-color); }
.dot-green  { background: var(--green-color); }
.dot-yellow { background: var(--gold-color); }
.dot-teal   { background: var(--accent-color); }

.kanban-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 10px;
    display: flex; flex-direction: column; gap: 5px;
    transition: var(--transition);
}
.kanban-card.active-card {
    border-color: rgba(37,211,102,0.3);
    background: rgba(37,211,102,0.06);
    box-shadow: 0 0 12px rgba(37,211,102,0.1);
}
.kc-name { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); }
.kc-meta { font-size: 0.66rem; color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }
.kc-tag {
    display: inline-block; padding: 2px 8px; border-radius: 10px;
    font-size: 0.62rem; font-weight: 700; width: fit-content;
}
.tag-new      { background: rgba(139,92,246,0.15); color: var(--purple-color); }
.tag-active   { background: rgba(37,211,102,0.15); color: var(--wa-color); }
.tag-scheduled{ background: rgba(16,185,129,0.15); color: var(--green-color); }
.tag-followup { background: rgba(245,166,35,0.15); color: var(--gold-color); }

/* ── DESKTOP CHAT MOCKUP ── */
.desktop-chat-mockup {
    display: flex;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    height: 380px;
}
.dcm-sidebar {
    width: 200px; flex-shrink: 0;
    background: rgba(255,255,255,0.02);
    border-right: 1px solid var(--border-glass);
    display: flex; flex-direction: column;
}
.dcm-search {
    padding: 12px 14px; font-size: 0.72rem; color: var(--text-secondary);
    border-bottom: 1px solid var(--border-glass);
    display: flex; align-items: center; gap: 6px;
}
.dcm-conv {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dcm-conv:hover { background: rgba(255,255,255,0.04); }
.dcm-conv.active-conv { background: rgba(37,211,102,0.08); }
.dcm-conv-info { flex: 1; min-width: 0; }
.dcm-conv-name { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); }
.dcm-conv-last { font-size: 0.65rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dcm-conv-badge {
    background: var(--wa-color); color: white;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 800; flex-shrink: 0;
}

.dcm-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.dcm-chat-header {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.02);
}
.dcm-tags { display: flex; gap: 6px; margin-left: auto; }
.dcm-tag {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; border-radius: 10px; font-size: 0.65rem; font-weight: 700;
    background: rgba(255,255,255,0.06); color: var(--text-secondary);
}
.dcm-tag.dcm-tag-blue { background: rgba(47,128,237,0.15); color: var(--primary-color); }

.dcm-messages {
    flex: 1; overflow-y: auto;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 6px;
    background: #f0ebe3;
}
.dcm-msg {
    max-width: 75%; padding: 7px 11px;
    border-radius: 10px; font-size: 0.75rem; line-height: 1.4; color: #111;
}
.dcm-received { background: white; align-self: flex-start; border-radius: 0 10px 10px 10px; }
.dcm-sent { background: #DCF8C6; align-self: flex-end; border-radius: 10px 0 10px 10px; }
.dcm-input-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid var(--border-glass);
}
.dcm-input-field {
    flex: 1; background: rgba(255,255,255,0.06);
    border-radius: 20px; padding: 8px 14px;
    font-size: 0.75rem; color: var(--text-secondary);
}
.dcm-send-btn {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--wa-color); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; cursor: pointer; flex-shrink: 0;
}

/* ── AUTOMATION TIMELINE ── */
.automation-timeline {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 18px; padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.timeline-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px; flex-wrap: wrap;
    font-size: 0.85rem; font-weight: 700; color: var(--text-primary);
}
.timeline-header i { color: var(--green-color); }
.tl-badge {
    padding: 3px 12px; border-radius: 20px;
    font-size: 0.68rem; font-weight: 700; margin-left: auto;
}
.confirmed-badge { background: rgba(16,185,129,0.15); color: var(--green-color); }
.timeline-steps { display: flex; flex-direction: column; }

.tl-step { display: flex; gap: 14px; }
.tl-icon {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; flex-shrink: 0;
}
.done-step .tl-icon { background: rgba(16,185,129,0.15); color: var(--green-color); border: 1.5px solid rgba(16,185,129,0.4); }
.pending-step .tl-icon { background: rgba(245,166,35,0.12); color: var(--gold-color); border: 1.5px solid rgba(245,166,35,0.3); }
.future-step .tl-icon { background: rgba(255,255,255,0.04); color: var(--text-secondary); border: 1.5px solid rgba(255,255,255,0.08); }
.tl-content { flex: 1; padding-bottom: 20px; }
.tl-title { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.tl-desc { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 6px; }
.tl-preview {
    font-size: 0.72rem; color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    border-left: 2px solid rgba(37,211,102,0.4);
    padding: 6px 10px; border-radius: 0 6px 6px 0;
    font-style: italic; line-height: 1.5;
}
.tl-connector {
    width: 1px; min-height: 16px; margin-left: 17px;
    background: linear-gradient(to bottom, var(--green-color), rgba(255,255,255,0.08));
    margin-bottom: 4px;
}

/* ── POST SALE VISUAL ── */
.postsale-visual {
    display: flex; align-items: center; gap: 32px;
    justify-content: center;
}
.phone-sm { position: relative; }
.sm-frame {
    width: 200px !important;
    border-radius: 32px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(37,211,102,0.08) !important;
}
.sm-notch {
    width: 60px !important; height: 16px !important;
}
.sm-screen { min-height: 360px !important; }
.sm-bar { padding: 7px 10px !important; }

.funnel-steps { display: flex; flex-direction: column; gap: 0; }
.fs-item { display: flex; align-items: center; gap: 14px; }
.fs-dot {
    width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
    position: relative; z-index: 1;
}
.dot-teal { background: var(--accent-color); box-shadow: 0 0 10px rgba(0,228,177,0.5); }
.dot-blue { background: var(--primary-color); }
.dot-gold { background: var(--gold-color); box-shadow: 0 0 10px rgba(245,166,35,0.5); }
.fs-body { padding: 8px 0; }
.fs-label { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.fs-desc { font-size: 0.72rem; color: var(--text-secondary); }
.fs-line {
    width: 1px; height: 28px; background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
    margin-left: 7px;
}

/* ── FULL JOURNEY ── */
.journey-section { padding: 80px 0 100px; }
.journey-title { text-align: center; margin-bottom: 60px; }
.journey-title h2 { font-size: 2.6rem; }
.journey-title h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.full-journey {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0; flex-wrap: wrap; margin-bottom: 70px;
}
.fj-step {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-align: center; max-width: 130px;
}
.fj-icon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white;
}
.wa-fj    { background: var(--gradient-wa);     box-shadow: 0 10px 25px rgba(37,211,102,0.3); }
.ai-fj    { background: var(--gradient-purple);  box-shadow: 0 10px 25px rgba(139,92,246,0.3); }
.cal-fj   { background: var(--gradient-primary); box-shadow: 0 10px 25px rgba(47,128,237,0.3); }
.bell-fj  { background: var(--gradient-gold);    box-shadow: 0 10px 25px rgba(245,166,35,0.3); }
.kanban-fj{ background: var(--gradient-teal);    box-shadow: 0 10px 25px rgba(0,228,177,0.25); }
.nps-fj   { background: linear-gradient(135deg,#10B981,#059669); box-shadow: 0 10px 25px rgba(16,185,129,0.3); }

.fj-line {
    width: 3px; height: 6px; border-radius: 2px;
}
.wa-line    { background: var(--wa-color); }
.ai-line    { background: var(--purple-color); }
.cal-line   { background: var(--primary-color); }
.bell-line  { background: var(--gold-color); }
.kanban-line{ background: var(--accent-color); }
.nps-line   { background: var(--green-color); }

.fj-label { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.fj-tag { font-size: 0.65rem; color: var(--text-secondary); }
.fj-connector {
    color: rgba(255,255,255,0.2); font-size: 0.9rem;
    padding: 0 12px; margin-top: 20px; flex-shrink: 0;
}

/* ── RESULT NUMBERS ── */
.result-numbers {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.result-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 18px; padding: 28px 20px;
    text-align: center; transition: var(--transition);
}
.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47,128,237,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.rn-icon { font-size: 1.4rem; color: var(--primary-color); margin-bottom: 12px; }
.rn-number {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: block; margin-bottom: 8px;
}
.rn-label { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4; }

/* ── CTA ── */
.cta-section { padding: 80px 0 100px; }
.cta-box {
    text-align: center; padding: 80px 40px; border-radius: 28px;
    position: relative; overflow: hidden;
}
.cta-glow {
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(ellipse at 50% 0%, rgba(37,211,102,0.12) 0%, transparent 70%),
                radial-gradient(ellipse at 50% 100%, rgba(47,128,237,0.1) 0%, transparent 70%);
}
.cta-badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(47,128,237,0.12); color: var(--primary-color);
    border: 1px solid rgba(47,128,237,0.25);
    border-radius: 30px; padding: 6px 18px;
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 24px;
}
.cta-box h2 { font-size: 2.8rem; margin-bottom: 18px; }
.cta-box p { max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { padding: 40px 0; border-top: 1px solid var(--border-glass); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-content p { margin-bottom: 0; font-size: 0.88rem; }

/* ── PHONE FLOAT ── */
.phone-frame {
    animation: phone-float 4s ease-in-out infinite;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50%       { transform: translateY(-14px) rotate(1deg); }
}

/* ── CHAT BUBBLE ENTRY ── */
.bubble-anim {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.bubble-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* ── TYPING INDICATOR ── */
.typing-indicator {
    display: none;
    align-items: center; gap: 4px;
    padding: 10px 14px;
    border-radius: 18px;
    width: fit-content;
    margin-bottom: 4px;
}
.typing-received { background: white; align-self: flex-start; border-radius: 0 18px 18px 18px; }
.typing-sent     { background: #DCF8C6; align-self: flex-end; border-radius: 18px 0 18px 18px; }
.typing-indicator span {
    width: 7px; height: 7px; border-radius: 50%; background: #aaa;
    display: inline-block;
    animation: typing-dot 1.2s ease-in-out infinite;
}
.typing-sent span { background: #666; }
.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30%            { transform: translateY(-5px); opacity: 1; }
}

/* ── ANIMATIONS ── */
.fade-in-up, .slide-in-left, .slide-in-right {
    opacity: 0; transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-in-up    { transform: translateY(40px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right{ transform: translateX(50px); }
.in-view { opacity: 1 !important; transform: translate(0,0) !important; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .result-numbers { grid-template-columns: repeat(2, 1fr); }
    .kanban-board { gap: 8px; }
}
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; gap: 50px; }
    .hero-text { max-width: 100%; }
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2.2rem; }
    .feature-row, .feature-row.row-reverse { flex-direction: column; gap: 50px; text-align: center; }
    .feature-text { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .check-list li { text-align: left; }
    .phone-frame { width: 260px; }
    .badge-top-right { right: -30px; }
    .badge-bottom-left { left: -30px; }
    .postsale-visual { flex-direction: column; align-items: center; }
    .full-journey { gap: 0; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .result-numbers { grid-template-columns: 1fr 1fr; }
    .desktop-chat-mockup { height: auto; }
    .dcm-sidebar { display: none; }
    .footer-content { flex-direction: column; gap: 20px; }
    .journey-mini { gap: 4px; }
    .jm-step { padding: 6px 10px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .cta-box { padding: 50px 24px; }
    .cta-box h2 { font-size: 1.8rem; }
    .badge-top-right, .badge-bottom-left { display: none; }
}
