/* ElbaBot — landing pública (externa ao painel) */

:root {
    --lp-bg: #f0f4f8;
    --lp-surface: #ffffff;
    --lp-text: #0f172a;
    --lp-muted: #64748b;
    --lp-border: #e2e8f0;
    --lp-blue: #0056e0;
    --lp-blue-dark: #0028a0;
    --lp-purple: #7c3aed;
    --lp-purple-light: #6366f1;
    --lp-violet-bg: #f5f3ff;
    --lp-radius: 16px;
    --lp-radius-lg: 24px;
    --lp-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    --lp-shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
    --lp-max: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body.lp {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--lp-bg);
    color: var(--lp-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.lp-container {
    width: min(100% - 40px, var(--lp-max));
    margin-inline: auto;
}

/* Header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-header.is-scrolled {
    border-color: var(--lp-border);
    box-shadow: var(--lp-shadow-sm);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--lp-text);
}

.lp-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 86, 224, 0.2);
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lp-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
    transition: color 0.2s;
}

.lp-nav a:hover {
    color: var(--lp-text);
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.lp-btn:hover {
    transform: translateY(-1px);
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-blue-dark) 0%, var(--lp-blue) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 86, 224, 0.35);
}

.lp-btn-primary:hover {
    box-shadow: 0 6px 18px rgba(0, 86, 224, 0.45);
}

.lp-btn-ghost {
    background: transparent;
    color: var(--lp-muted);
    border: 1px solid var(--lp-border);
}

.lp-btn-ghost:hover {
    background: #fff;
    color: var(--lp-text);
}

.lp-btn-purple {
    background: linear-gradient(135deg, var(--lp-purple) 0%, var(--lp-purple-light) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.lp-btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 12px;
}

.lp-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.lp-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--lp-text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.lp-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.lp-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.lp-hero {
    padding: 56px 0 72px;
    overflow: hidden;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--lp-violet-bg);
    color: var(--lp-purple);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #ddd6fe;
}

.lp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-purple);
}

.lp-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.lp-hero h1 span {
    background: linear-gradient(135deg, var(--lp-purple) 0%, var(--lp-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-lead {
    font-size: 17px;
    color: var(--lp-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

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

.lp-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-stat span {
    font-size: 13px;
    color: var(--lp-muted);
}

/* Mockup: phone / inbox */
.lp-mock-phone {
    position: relative;
    max-width: 320px;
    margin-inline: auto;
}

.lp-mock-phone-frame {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--lp-shadow), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.lp-mock-phone-screen {
    background: #111b21;
    border-radius: 28px;
    overflow: hidden;
    min-height: 520px;
}

.lp-mock-inbox-header {
    background: #202c33;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #2a3942;
}

.lp-mock-inbox-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-blue));
}

.lp-mock-inbox-title {
    flex: 1;
}

.lp-mock-inbox-title strong {
    display: block;
    font-size: 14px;
    color: #e9edef;
}

.lp-mock-inbox-title span {
    font-size: 11px;
    color: #8696a0;
}

.lp-mock-chat {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-mock-bubble {
    max-width: 82%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.45;
}

.lp-mock-bubble-in {
    align-self: flex-start;
    background: #202c33;
    color: #e9edef;
    border-top-left-radius: 2px;
}

.lp-mock-bubble-out {
    align-self: flex-end;
    background: #005c4b;
    color: #e9edef;
    border-top-right-radius: 2px;
}

.lp-mock-bubble-auto {
    align-self: flex-end;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: #fff;
    border-top-right-radius: 2px;
    font-size: 11px;
}

.lp-mock-bubble-auto::before {
    content: '⚡ Fluxo automático · ';
    opacity: 0.85;
}

.lp-mock-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Sections */
.lp-section {
    padding: 72px 0;
}

.lp-section-alt {
    background: var(--lp-surface);
}

.lp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.lp-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-purple);
    margin-bottom: 12px;
}

.lp-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.lp-section-head p {
    color: var(--lp-muted);
    font-size: 16px;
}

/* Pillars */
.lp-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-pillar {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    box-shadow: var(--lp-shadow-sm);
}

.lp-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-violet-bg);
    color: var(--lp-purple);
    margin-bottom: 18px;
}

.lp-pillar h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-pillar p {
    font-size: 14px;
    color: var(--lp-muted);
}

/* Feature grid */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-feature {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-section-alt .lp-feature {
    background: var(--lp-bg);
}

.lp-feature:hover {
    border-color: #c4b5fd;
    box-shadow: var(--lp-shadow-sm);
}

.lp-feature h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-feature p {
    font-size: 14px;
    color: var(--lp-muted);
}

/* Showcase split */
.lp-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lp-showcase.reverse .lp-showcase-visual {
    order: -1;
}

.lp-showcase-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.lp-showcase-text > p {
    color: var(--lp-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.lp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
}

.lp-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--lp-violet-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Mockup: flow builder */
.lp-mock-flow {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow);
    overflow: hidden;
}

.lp-mock-flow-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--lp-border);
    font-size: 12px;
    color: var(--lp-muted);
}

.lp-mock-flow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-mock-flow-dot:nth-child(1) { background: #f87171; }
.lp-mock-flow-dot:nth-child(2) { background: #fbbf24; }
.lp-mock-flow-dot:nth-child(3) { background: #34d399; }

.lp-mock-flow-canvas {
    position: relative;
    height: 300px;
    background:
        radial-gradient(circle at 1px 1px, #e2e8f0 1px, transparent 0);
    background-size: 20px 20px;
    background-color: #fafbfc;
}

.lp-mock-node {
    position: absolute;
    min-width: 110px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--lp-shadow-sm);
    border: 2px solid transparent;
}

.lp-mock-node-start {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}

.lp-mock-node-msg {
    top: 120px;
    left: 28%;
    background: #ede9fe;
    color: #5b21b6;
    border-color: #c4b5fd;
}

.lp-mock-node-menu {
    top: 120px;
    right: 18%;
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #93c5fd;
}

.lp-mock-node-end {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
}

.lp-mock-flow-line {
    position: absolute;
    background: #a78bfa;
    border-radius: 2px;
}

.lp-mock-flow-line-v1 {
    width: 2px;
    height: 36px;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
}

.lp-mock-flow-line-h1 {
    width: 80px;
    height: 2px;
    top: 114px;
    left: 38%;
}

.lp-mock-flow-line-h2 {
    width: 60px;
    height: 2px;
    top: 114px;
    right: 28%;
}

.lp-mock-flow-line-v2 {
    width: 2px;
    height: 100px;
    bottom: 78px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mockup: kanban */
.lp-mock-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow);
}

.lp-mock-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-muted);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--lp-border);
}

.lp-mock-col:nth-child(1) h4 { border-color: #93c5fd; color: #1d4ed8; }
.lp-mock-col:nth-child(2) h4 { border-color: #fcd34d; color: #b45309; }
.lp-mock-col:nth-child(3) h4 { border-color: #86efac; color: #166534; }

.lp-mock-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    font-size: 11px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lp-mock-card strong {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}

.lp-mock-card span {
    color: var(--lp-muted);
    line-height: 1.4;
}

.lp-mock-tag {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

.lp-mock-tag-blue { background: #dbeafe; color: #1d4ed8; }
.lp-mock-tag-amber { background: #fef3c7; color: #b45309; }
.lp-mock-tag-green { background: #dcfce7; color: #166534; }

/* Compare */
.lp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.lp-compare-card {
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    border: 1px solid var(--lp-border);
}

.lp-compare-bad {
    background: #fef2f2;
    border-color: #fecaca;
}

.lp-compare-good {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-color: #c4b5fd;
    box-shadow: var(--lp-shadow-sm);
}

.lp-compare-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.lp-compare-bad h3 { color: #b91c1c; }
.lp-compare-good h3 { color: var(--lp-purple); }

.lp-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.lp-compare-bad li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 700;
    flex-shrink: 0;
}

.lp-compare-good li::before {
    content: '✓';
    color: var(--lp-purple);
    font-weight: 700;
    flex-shrink: 0;
}

/* Pricing */
.lp-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.lp-price-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.lp-price-card.featured {
    border-color: var(--lp-purple);
    box-shadow: 0 0 0 1px var(--lp-purple), var(--lp-shadow);
}

.lp-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-purple-light));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-price-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.lp-price-plan {
    font-size: 13px;
    color: var(--lp-muted);
    margin-bottom: 20px;
}

.lp-price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.lp-price-value .currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-price-value .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.lp-price-value .period {
    font-size: 14px;
    color: var(--lp-muted);
}

.lp-price-note {
    font-size: 13px;
    color: var(--lp-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-price-features {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.lp-price-features li {
    font-size: 14px;
    color: #334155;
    padding-left: 22px;
    position: relative;
}

.lp-price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain;
}

.lp-guarantee {
    text-align: center;
    max-width: 560px;
    margin: 40px auto 0;
    padding: 24px;
    background: var(--lp-violet-bg);
    border: 1px solid #ddd6fe;
    border-radius: var(--lp-radius);
}

.lp-guarantee h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-purple);
    margin-bottom: 8px;
}

.lp-guarantee p {
    font-size: 14px;
    color: var(--lp-muted);
}

/* Testimonials */
.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-testimonial {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 24px;
    box-shadow: var(--lp-shadow-sm);
}

.lp-testimonial p {
    font-size: 14px;
    color: #334155;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.55;
}

.lp-testimonial-author strong {
    display: block;
    font-size: 14px;
}

.lp-testimonial-author span {
    font-size: 12px;
    color: var(--lp-muted);
}

.lp-testimonial-placeholder {
    opacity: 0.75;
    border-style: dashed;
}

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

.lp-faq-item {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
}

.lp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-text);
    cursor: pointer;
    text-align: left;
}

.lp-faq-q svg {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: var(--lp-muted);
}

.lp-faq-item.is-open .lp-faq-q svg {
    transform: rotate(180deg);
}

.lp-faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-faq-item.is-open .lp-faq-a {
    display: block;
}

/* CTA final */
.lp-cta-final {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(135deg, var(--lp-purple) 0%, var(--lp-blue) 100%);
    border-radius: var(--lp-radius-lg);
    color: #fff;
}

.lp-cta-final h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.lp-cta-final p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 480px;
    margin-inline: auto;
}

.lp-cta-final .lp-btn {
    background: #fff;
    color: var(--lp-purple);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.lp-footer {
    padding: 40px 0 32px;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-surface);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.lp-footer-brand p {
    font-size: 14px;
    color: var(--lp-muted);
    margin-top: 12px;
    max-width: 280px;
}

.lp-footer h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-muted);
    margin-bottom: 14px;
}

.lp-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-footer-links a {
    font-size: 14px;
    color: #334155;
}

.lp-footer-links a:hover {
    color: var(--lp-purple);
}

.lp-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--lp-muted);
}

/* Logos strip */
.lp-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 0;
    opacity: 0.7;
}

.lp-logo-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-muted);
    padding: 8px 16px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
}

/* Flow steps */
.lp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.lp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.lp-step-arrow {
    color: var(--lp-purple);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 960px) {
    .lp-hero-grid,
    .lp-showcase,
    .lp-pillars,
    .lp-features,
    .lp-compare,
    .lp-pricing,
    .lp-testimonials,
    .lp-footer-grid {
        grid-template-columns: 1fr;
    }

    .lp-showcase.reverse .lp-showcase-visual {
        order: 0;
    }

    .lp-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--lp-border);
        padding: 12px 20px 20px;
        box-shadow: var(--lp-shadow-sm);
    }

    .lp-nav.is-open {
        display: flex;
    }

    .lp-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--lp-border);
    }

    .lp-header-inner {
        position: relative;
        flex-wrap: wrap;
    }

    .lp-header-actions .lp-btn-ghost {
        display: none;
    }

    .lp-menu-toggle {
        display: flex;
    }

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

    .lp-hero {
        padding-top: 32px;
    }

    .lp-mock-phone {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .lp-container {
        width: min(100% - 24px, var(--lp-max));
    }

    .lp-section {
        padding: 48px 0;
    }

    .lp-cta-final {
        padding: 48px 24px;
    }

    .lp-price-value .amount {
        font-size: 40px;
    }
}
