﻿
/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #080b14;
    --bg-2: #0d1120;
    --bg-card: #111827;
    --bg-card-2: #161d2e;
    --border: rgba(255,255,255,0.07);
    --accent: #4f7fff;
    --accent-2: #7c3aed;
    --accent-glow: rgba(79,127,255,0.18);
    --green: #22c55e;
    --text: #f0f4ff;
    --text-2: #94a3b8;
    --text-3: #475569;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 32px rgba(0,0,0,0.45);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── UTILITY ──────────────────────────────────────────────────── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

section[id] {
    scroll-margin-top: 110px;
}

.section-sm {
    padding: 72px 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,127,255,0.12);
    border: 1px solid rgba(79,127,255,0.25);
    color: #7da8ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

    .badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
}

    .section-title span {
        color: var(--accent);
    }

.section-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-2);
    max-width: 560px;
    margin-top: 14px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text-2);
}

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px rgba(79,127,255,0.35);
}

    .btn-primary:hover {
        background: #6390ff;
        transform: translateY(-2px);
        box-shadow: 0 0 36px rgba(79,127,255,0.5);
    }

.btn-ghost {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.05);
        color: var(--text);
    }

.btn-lg {
    padding: 17px 36px;
    font-size: 16px;
}

.btn-white {
    background: #fff;
    color: #0d1120;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

    .btn-white:hover {
        background: #e8eeff;
        transform: translateY(-2px);
    }

/* ─── NAV ──────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(8,11,20,0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-2);
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--text);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    padding: 10px 22px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-ghost {
        display: none;
    }
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(79,127,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 22px;
    color: var(--text);
}

    .hero-title .hl {
        background: linear-gradient(135deg, var(--accent), #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 18px;
    color: var(--text-2);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-social-proof {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .avatar:first-child {
        margin-left: 0;
    }

.a1 {
    background: #4f7fff;
}

.a2 {
    background: #7c3aed;
}

.a3 {
    background: #22c55e;
}

.a4 {
    background: #f59e0b;
}

.proof-text {
    font-size: 13px;
    color: var(--text-2);
}

    .proof-text strong {
        color: var(--text);
    }

.stars {
    color: #f59e0b;
    font-size: 12px;
}

/* Hero mockup */
.hero-visual {
    position: relative;
}

.mockup-wrapper {
    position: relative;
    isolation: isolate;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.mockup-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.md-red {
    background: #ff5f57;
}

.md-yellow {
    background: #ffbd2e;
}

.md-green {
    background: #28c840;
}

.mockup-title-bar {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    height: 22px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 11px;
    color: var(--text-3);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.dash-greeting {
    font-size: 15px;
    font-weight: 700;
}

.dash-date {
    font-size: 11px;
    color: var(--text-2);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.stat-box {
    background: rgba(79,127,255,0.08);
    border: 1px solid rgba(79,127,255,0.15);
    border-radius: 10px;
    padding: 12px;
}

.stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.stat-lbl {
    font-size: 10px;
    color: var(--text-2);
    margin-top: 2px;
}

.stat-up {
    font-size: 10px;
    color: var(--green);
    font-weight: 600;
}

.agenda-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 8px;
}

.agenda-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ag-blue {
    background: var(--accent);
}

.ag-purple {
    background: var(--accent-2);
}

.ag-green {
    background: var(--green);
}

.agenda-info {
    flex: 1;
}

.agenda-name {
    font-size: 12px;
    font-weight: 600;
}

.agenda-time {
    font-size: 10px;
    color: var(--text-2);
}

.agenda-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
}

.ab-confirm {
    background: rgba(34,197,94,0.15);
    color: var(--green);
}

.ab-wait {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}

/* Floating WA bubble */
.wa-bubble {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    width: 220px;
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;
    animation-delay: .8s;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.wa-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.wa-name {
    font-size: 11px;
    font-weight: 700;
}

.wa-sub {
    font-size: 9px;
    color: var(--text-2);
}

.wa-msg {
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 11px;
    color: var(--text-2);
    line-height: 1.4;
    margin-bottom: 6px;
}

.wa-reply {
    background: rgba(79,127,255,0.15);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 11px;
    color: #7da8ff;
    line-height: 1.4;
    text-align: right;
}

.wa-ts {
    font-size: 9px;
    color: var(--text-3);
    text-align: right;
    margin-top: 3px;
}

.ai-tag {
    position: absolute;
    top: -16px;
    left: -16px;
    z-index: 5;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(79,127,255,0.4);
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .wa-bubble {
        bottom: -10px;
        right: -10px;
    }
}

/* ─── MARQUEE / LOGOS ──────────────────────────────────────────── */
.logos-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.logos-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 28px;
}

.logos-track {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
}

/* ─── PROBLEM SECTION ──────────────────────────────────────────── */
.problem-section {
    background: var(--bg-2);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.problem-list {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.12);
}

.problem-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.problem-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.5;
}

    .problem-text strong {
        color: var(--text);
        font-size: 15px;
        display: block;
        margin-bottom: 3px;
    }

.solution-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solution-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: rgba(79,127,255,0.07);
    border: 1px solid rgba(79,127,255,0.15);
    transition: all .2s;
}

    .solution-card:hover {
        background: rgba(79,127,255,0.12);
        transform: translateX(4px);
    }

.sol-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sol-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.sol-text p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ─── FEATURES ─────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(79,127,255,0.06), transparent);
        opacity: 0;
        transition: opacity .25s;
    }

    .feature-card:hover {
        border-color: rgba(79,127,255,0.3);
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.fi-blue {
    background: rgba(79,127,255,0.15);
}

.fi-purple {
    background: rgba(124,58,237,0.15);
}

.fi-green {
    background: rgba(34,197,94,0.15);
}

.fi-orange {
    background: rgba(251,146,60,0.15);
}

.fi-pink {
    background: rgba(236,72,153,0.15);
}

.fi-teal {
    background: rgba(20,184,166,0.15);
}

.feat-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}

.feat-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(79,127,255,0.12);
    color: var(--accent);
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── HOW IT WORKS ─────────────────────────────────────────────── */
.how-section {
    background: var(--bg-2);
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
    position: relative;
}

    .steps-wrapper::before {
        content: '';
        position: absolute;
        top: 40px;
        left: calc(16.6% + 20px);
        right: calc(16.6% + 20px);
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--accent-2));
        opacity: .3;
    }

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all .25s;
}

    .step-card:hover {
        border-color: rgba(79,127,255,0.3);
        transform: translateY(-4px);
    }

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(79,127,255,0.4);
}

.step-emoji {
    font-size: 28px;
    margin-bottom: 14px;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
}

@media (max-width: 700px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .steps-wrapper::before {
            display: none;
        }
}

/* ─── PRODUCT PREVIEW ──────────────────────────────────────────── */
.preview-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.ptab {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-2);
}

    .ptab.active, .ptab:hover {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
    }

.preview-screen {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.screen-topbar {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.screen-body {
    padding: 28px;
}

/* Dashboard screen */
.db-sidebar {
    width: 200px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid var(--border);
    padding: 20px;
}

.db-layout {
    display: flex;
    min-height: 420px;
}

.db-main {
    flex: 1;
    padding: 24px;
}

.db-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 4px;
    cursor: pointer;
    transition: all .15s;
}

    .db-nav-item:hover {
        background: rgba(255,255,255,0.05);
        color: var(--text);
    }

    .db-nav-item.active {
        background: rgba(79,127,255,0.15);
        color: var(--accent);
        font-weight: 600;
    }

.db-kpi-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.kpi-card {
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.kpi-label {
    font-size: 11px;
    color: var(--text-2);
    margin-bottom: 6px;
}

.kpi-value {
    font-size: 24px;
    font-weight: 800;
}

.kpi-change {
    font-size: 11px;
    margin-top: 4px;
}

.up {
    color: var(--green);
}

.down {
    color: #ef4444;
}

.db-section-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.bk-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.bk-name {
    font-size: 13px;
    font-weight: 600;
}

.bk-srv {
    font-size: 11px;
    color: var(--text-2);
}

.bk-time {
    font-size: 12px;
    color: var(--text-2);
    margin-left: auto;
    white-space: nowrap;
}

.bk-status {
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.st-confirmed {
    background: rgba(34,197,94,0.12);
    color: var(--green);
}

.st-pending {
    background: rgba(245,158,11,0.12);
    color: #f59e0b;
}

.st-new {
    background: rgba(79,127,255,0.12);
    color: var(--accent);
}

.dash-preview-topbar {
    background: rgba(255,255,255,0.04);
}

.dash-preview-shell {
    padding: 24px;
    min-height: 430px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(17, 24, 39, 0.9)),
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 34%);
}

.dash-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.dash-preview-greeting {
    font-size: 28px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 6px;
}

.dash-preview-date {
    font-size: 13px;
    color: var(--text-2);
}

.dash-preview-tag {
    flex-shrink: 0;
}

.dash-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.dash-preview-stat-card {
    background: rgba(32, 47, 85, 0.56);
    border: 1px solid rgba(79,127,255,0.24);
    border-radius: 14px;
    padding: 18px;
}

.dash-preview-stat-number {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.dash-preview-stat-label {
    font-size: 12px;
    color: var(--text-2);
    margin-bottom: 6px;
}

.dash-preview-stat-meta {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
}

.dash-preview-list {
    display: grid;
    gap: 12px;
}

.dash-preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.dash-preview-row-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dash-preview-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.dash-preview-avatar.tone-blue {
    background: linear-gradient(135deg, #4f7fff, #60a5fa);
}

.dash-preview-avatar.tone-purple {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.dash-preview-avatar.tone-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.dash-preview-avatar.tone-orange {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
}

.dash-preview-name {
    font-size: 14px;
    font-weight: 700;
}

.dash-preview-meta {
    font-size: 12px;
    color: var(--text-2);
}

.dash-preview-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
}

.dash-preview-badge.is-confirmed {
    background: rgba(34,197,94,0.12);
    color: var(--green);
}

.dash-preview-badge.is-pending {
    background: rgba(245,158,11,0.12);
    color: #f59e0b;
}

.dash-preview-badge.is-new {
    background: rgba(79,127,255,0.12);
    color: var(--accent);
}

/* WA screen */
.wa-screen {
    background: #0d1520;
}

    .wa-screen .screen-body {
        padding: 0;
    }

.wa-chat-layout {
    display: flex;
    min-height: 420px;
}

.wa-contacts {
    width: 280px;
    border-right: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.wa-contact-header {
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background .15s;
}

    .wa-contact-item:hover {
        background: rgba(255,255,255,0.04);
    }

    .wa-contact-item.active {
        background: rgba(79,127,255,0.1);
    }

.wa-c-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.wa-c-name {
    font-size: 13px;
    font-weight: 600;
}

.wa-c-last {
    font-size: 11px;
    color: var(--text-2);
}

.wa-unread {
    margin-left: auto;
    background: var(--green);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-chat-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-chat-messages {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.chat-bubble {
    max-width: 72%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
}

.bubble-in {
    background: rgba(255,255,255,0.07);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bubble-out {
    background: rgba(79,127,255,0.25);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: #c7d8ff;
}

.bubble-ai {
    background: rgba(124,58,237,0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: #c4b5fd;
}

.bubble-ts {
    font-size: 10px;
    color: var(--text-3);
    margin-top: 4px;
}

.ai-label {
    font-size: 10px;
    color: var(--accent-2);
    font-weight: 700;
    margin-bottom: 4px;
}

.wa-input-bar {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    color: var(--text-2);
}

.wa-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .db-sidebar {
        display: none;
    }

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

    .dash-preview-header {
        flex-direction: column;
    }

    .dash-preview-stats {
        grid-template-columns: 1fr;
    }

    .dash-preview-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .wa-contacts {
        display: none;
    }
}

/* ─── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-section {
    background: var(--bg-2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 48px;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s;
}

    .testi-card:hover {
        border-color: rgba(79,127,255,0.25);
        transform: translateY(-3px);
    }

.testi-stars {
    color: #f59e0b;
    font-size: 15px;
    margin-bottom: 16px;
}

.testi-quote {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
}

.testi-role {
    font-size: 12px;
    color: var(--text-2);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 560px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── PRICING ──────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: all .25s;
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    .pricing-card.featured {
        background: linear-gradient(160deg, #111d3a 0%, #0e1628 100%);
        border: 2px solid var(--accent);
        box-shadow: 0 0 50px rgba(79,127,255,0.15);
    }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 5px 18px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.plan-period {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 28px;
}

.plan-price sub {
    font-size: 22px;
    font-weight: 700;
    vertical-align: super;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 700;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 32px;
}

    .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--text-2);
    }

.check {
    color: var(--green);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cross {
    color: var(--text-3);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-cta {
    margin-top: auto;
}

.plan-soft-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(79,127,255,0.16);
    background: rgba(79,127,255,0.08);
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.65;
}

.plan-soft-note strong {
    color: var(--text);
}

.pricing-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(79,127,255,0.2);
    background: rgba(79,127,255,0.08);
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.7;
}

.pricing-note strong {
    color: var(--text);
}

.btn-plan {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: none;
    text-align: center;
    display: block;
}

.btn-plan-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

    .btn-plan-outline:hover {
        background: rgba(255,255,255,0.05);
    }

.btn-plan-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px rgba(79,127,255,0.35);
}

    .btn-plan-primary:hover {
        background: #6390ff;
        transform: translateY(-1px);
    }

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ─── STATS BANNER ─────────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, #0b1a40, #0e1225);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.stat-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-big {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-caption {
    font-size: 14px;
    color: var(--text-2);
    margin-top: 6px;
}

@media (max-width: 700px) {
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* ─── FINAL CTA ────────────────────────────────────────────────── */
.cta-section {
    background: var(--bg-2);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0b1840 0%, #12102a 100%);
    border: 1px solid rgba(79,127,255,0.2);
    border-radius: 24px;
    padding: 72px 48px;
    box-shadow: 0 0 80px rgba(79,127,255,0.1);
    position: relative;
    overflow: hidden;
}

    .cta-inner::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(79,127,255,0.15), transparent 70%);
        pointer-events: none;
    }

.cta-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 17px;
    color: var(--text-2);
    margin-bottom: 36px;
    line-height: 1.65;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-3);
}

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer {
    background: #060810;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-2);
    margin: 14px 0 20px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-2);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: 14px;
        color: var(--text-3);
        transition: color .2s;
    }

        .footer-links a:hover {
            color: var(--text);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-3);
    flex-wrap: wrap;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .2s;
    cursor: pointer;
}

    .social-btn:hover {
        background: rgba(79,127,255,0.15);
        border-color: rgba(79,127,255,0.3);
    }

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 48px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s;
}

    .faq-item:hover {
        border-color: rgba(79,127,255,0.25);
    }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-card);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 12px;
}

.faq-icon {
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-card-2);
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 16px 24px 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ─── SCROLL ANIMATIONS ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

.reveal-delay-5 {
    transition-delay: .5s;
}

/* ─── INTEGRATION STRIP ────────────────────────────────────────── */
.integration-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.int-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    transition: all .2s;
}

    .int-badge:hover {
        border-color: rgba(79,127,255,0.3);
        color: var(--text);
    }

/* ─── MISC ─────────────────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.accent {
    color: var(--accent);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

