/* ═══════════════════════════════════════════════════════════════
   ATHENA — Landing & Public Pages CSS
   Páginas: landing.html, pricing.html
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --lp-bg:        #020817;
    --lp-bg-card:   rgba(11, 17, 32, 0.80);
    --lp-bg-card2:  rgba(15, 23, 42, 0.60);
    --lp-border:    rgba(255,255,255,0.08);
    --lp-sky:       #38bdf8;
    --lp-sky-dark:  #0ea5e9;
    --lp-violet:    #a78bfa;
    --lp-gold:      #fbbf24;
    --lp-green:     #34d399;
    --lp-text:      #f1f5f9;
    --lp-muted:     #94a3b8;
    --lp-subtle:    #475569;
    --lp-radius:    12px;
    --lp-radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

/* ── Utilities ─────────────────────────────────────────────── */

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

.hidden { display: none !important; }

.lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-sky) 0%, var(--lp-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────── */

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.lp-btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.lp-btn-full { width: 100%; justify-content: center; }

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-sky-dark), #0284c7);
    color: #fff;
    border-color: rgba(56,189,248,0.4);
    box-shadow: 0 4px 20px rgba(14,165,233,0.25);
}
.lp-btn-primary:hover {
    background: linear-gradient(135deg, var(--lp-sky), var(--lp-sky-dark));
    box-shadow: 0 6px 28px rgba(14,165,233,0.40);
    transform: translateY(-1px);
}

.lp-btn-ghost {
    background: transparent;
    color: var(--lp-text);
    border-color: var(--lp-border);
}
.lp-btn-ghost:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

/* ── Nav ───────────────────────────────────────────────────── */

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.2s ease;
}
.lp-nav.lp-nav-scrolled {
    background: rgba(2, 8, 23, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-border);
}

.lp-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--lp-text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;
    flex-shrink: 0;
}
.lp-logo i { color: var(--lp-sky); font-size: 22px; }

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}
.lp-nav-links a {
    text-decoration: none;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}
.lp-nav-links a:hover { color: var(--lp-text); }

.lp-nav-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; }

.lp-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--lp-text);
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
}

.lp-mobile-menu {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--lp-border);
    margin-top: 12px;
}
.lp-mobile-menu a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.lp-mobile-menu a:hover { color: var(--lp-text); }

/* ── Hero ──────────────────────────────────────────────────── */

.lp-hero {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.lp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.lp-glow-1 {
    width: 600px; height: 600px;
    background: var(--lp-sky);
    top: -200px; left: -100px;
}
.lp-glow-2 {
    width: 500px; height: 500px;
    background: var(--lp-violet);
    top: -100px; right: -100px;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.3);
    color: var(--lp-gold);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.lp-hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.lp-hero-sub {
    font-size: 18px;
    color: var(--lp-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.lp-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-sky);
    line-height: 1;
}
.lp-stat-label {
    font-size: 12px;
    color: var(--lp-muted);
    font-weight: 500;
}
.lp-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--lp-border);
}

/* App preview mockup */
.lp-hero-preview { padding-bottom: 0; }
.lp-app-preview {
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--lp-border);
    border-bottom: none;
    overflow: hidden;
    background: rgba(11,17,32,0.9);
    box-shadow: 0 -20px 80px rgba(56,189,248,0.08);
    max-width: 900px;
    margin: 0 auto;
}
.lp-app-preview-bar {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--lp-border);
}
.lp-app-preview-bar span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.lp-app-preview-body { display: flex; height: 260px; }
.lp-preview-sidebar {
    width: 180px;
    flex-shrink: 0;
    padding: 16px 12px;
    border-right: 1px solid var(--lp-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-preview-logo { font-size: 11px; font-weight: 800; letter-spacing: 3px; color: var(--lp-sky); margin-bottom: 8px; }
.lp-preview-item {
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
}
.lp-preview-item.active { background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.2); }
.lp-preview-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.lp-preview-topbar { display: flex; align-items: center; justify-content: space-between; }
.lp-preview-title { height: 20px; width: 160px; border-radius: 4px; background: rgba(255,255,255,0.07); }
.lp-preview-badges { display: flex; gap: 6px; }
.lp-preview-badge { height: 20px; width: 50px; border-radius: 10px; }
.lp-preview-badge.sky  { background: rgba(56,189,248,0.15); border: 1px solid rgba(56,189,248,0.25); }
.lp-preview-badge.green{ background: rgba(34,197,94,0.15);  border: 1px solid rgba(34,197,94,0.25); }
.lp-preview-kpis { display: flex; gap: 8px; }
.lp-preview-kpi { flex: 1; height: 52px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--lp-border); }
.lp-preview-kpi.accent { background: rgba(56,189,248,0.07); border-color: rgba(56,189,248,0.15); }
.lp-preview-panels { display: flex; gap: 8px; flex: 1; }
.lp-preview-panel { flex: 1; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--lp-border); padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.lp-preview-panel.tall { flex: 1.5; }
.lp-preview-row { height: 10px; border-radius: 4px; background: rgba(255,255,255,0.06); }
.lp-preview-row.short { width: 60%; }

/* ── Rich app preview (replaces placeholder boxes) ─────────── */

.lp-app-preview-body { height: 370px; }

.lp-bar-dot   { width: 10px; height: 10px; border-radius: 50%; }
.lp-dot-red   { background: #ef4444; }
.lp-dot-amber { background: #f59e0b; }
.lp-dot-lime  { background: #22c55e; }
.lp-bar-url {
    flex: 1;
    margin-left: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 5px;
    padding: 2px 10px;
    font-size: 10px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 200px;
}

/* Sidebar companies */
.lp-preview-company {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    border-radius: 6px;
    gap: 6px;
    cursor: default;
}
.lp-preview-company.active {
    background: rgba(56,189,248,0.10);
    border: 1px solid rgba(56,189,248,0.18);
}
.lp-preview-ticker {
    font-size: 10px;
    font-weight: 700;
    color: var(--lp-text);
    letter-spacing: 0.5px;
}
.lp-preview-cscore {
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    border: 1px solid;
    line-height: 1.4;
}

/* Preview topbar */
.lp-preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.lp-preview-company-name {
    display: flex;
    align-items: center;
    gap: 7px;
}
.lp-preview-company-ticker {
    font-size: 13px;
    font-weight: 800;
    color: var(--lp-text);
}
.lp-preview-company-full {
    font-size: 11px;
    color: var(--lp-muted);
}
.lp-preview-exchange-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(167,139,250,0.12);
    border: 1px solid rgba(167,139,250,0.25);
    color: #a78bfa;
    letter-spacing: 0.5px;
}
.lp-preview-score-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(34,197,94,0.10);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
}

/* KPI cards */
.lp-preview-kpis {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.lp-preview-kpi-card {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp-border);
}
.lp-kpi-accent {
    background: rgba(56,189,248,0.06);
    border-color: rgba(56,189,248,0.18);
}
.lp-kpi-green {
    background: rgba(34,197,94,0.06);
    border-color: rgba(34,197,94,0.18);
}
.lp-preview-kpi-label {
    font-size: 9px;
    color: var(--lp-muted);
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lp-preview-kpi-value {
    font-size: 13px;
    font-weight: 800;
    color: var(--lp-text);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Panels */
.lp-preview-panels { display: flex; gap: 8px; flex: 1; min-height: 0; }
.lp-preview-panel {
    flex: 1;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lp-border);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: hidden;
}
.lp-panel-scores { flex: 1.4; }
.lp-panel-metrics { flex: 1; }
.lp-panel-signal { flex: 0.9; }
.lp-preview-panel-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    flex-shrink: 0;
}

/* Score bars */
.lp-preview-score-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.lp-preview-score-name {
    font-size: 9px;
    color: var(--lp-muted);
    width: 58px;
    flex-shrink: 0;
}
.lp-preview-score-bar {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}
.lp-preview-score-fill {
    height: 100%;
    border-radius: 2px;
}
.lp-preview-score-val {
    font-size: 10px;
    font-weight: 700;
    color: var(--lp-text);
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

/* Metrics */
.lp-preview-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.lp-preview-metric-name {
    font-size: 9px;
    color: var(--lp-muted);
}
.lp-preview-metric-val {
    font-size: 10px;
    font-weight: 700;
    color: var(--lp-text);
    font-variant-numeric: tabular-nums;
}
.lp-metric-green { color: #22c55e; }
.lp-metric-sky   { color: var(--lp-sky); }

/* Execution signal mini card */
.lp-preview-signal-card {
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.20);
    border-radius: 7px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.lp-preview-signal-type {
    font-size: 10px;
    font-weight: 700;
    color: #22c55e;
}
.lp-preview-signal-desc {
    font-size: 9px;
    color: var(--lp-muted);
    line-height: 1.4;
}
.lp-preview-signal-actions {
    display: flex;
    gap: 5px;
    margin-top: auto;
}
.lp-preview-signal-approve,
.lp-preview-signal-reject {
    flex: 1;
    border: none;
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 9px;
    font-weight: 700;
    cursor: default;
    pointer-events: none;
}
.lp-preview-signal-approve {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
}
.lp-preview-signal-reject {
    background: rgba(255,255,255,0.04);
    color: var(--lp-muted);
    border: 1px solid var(--lp-border);
}

/* ── Trust strip ────────────────────────────────────────────── */

.lp-trust-strip {
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 20px 0;
    background: rgba(255,255,255,0.01);
}
.lp-trust-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--lp-muted);
    font-weight: 500;
    white-space: nowrap;
}
.lp-trust-item i {
    color: var(--lp-sky);
    font-size: 14px;
}

/* ── Personas / "Built for" section ────────────────────────── */

.lp-personas {
    padding: 100px 0;
    background: rgba(255,255,255,0.01);
    border-bottom: 1px solid var(--lp-border);
}
.lp-personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lp-persona-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}
.lp-persona-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}
.lp-persona-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.lp-persona-avatar.sky    { background: rgba(56,189,248,0.12);  border: 1px solid rgba(56,189,248,0.2);  }
.lp-persona-avatar.violet { background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.2); }
.lp-persona-avatar.gold   { background: rgba(251,191,36,0.12);  border: 1px solid rgba(251,191,36,0.2);  }
.lp-persona-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lp-persona-card > p {
    font-size: 13px;
    color: var(--lp-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}
.lp-persona-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.lp-persona-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--lp-muted);
}

/* ── Numbers strip ──────────────────────────────────────────── */

.lp-numbers {
    padding: 60px 0;
}
.lp-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
}
.lp-number-item {
    padding: 32px 24px;
    text-align: center;
    background: var(--lp-bg-card);
    border-right: 1px solid var(--lp-border);
}
.lp-number-item:last-child { border-right: none; }
.lp-number-val {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lp-sky), var(--lp-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.lp-number-label {
    font-size: 13px;
    color: var(--lp-muted);
    font-weight: 500;
}

/* ── How it works — enhanced steps ─────────────────────────── */

.lp-step {
    position: relative;
}
.lp-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
    border: 1px solid;
}
.lp-step-icon.sky    { background: rgba(56,189,248,0.10); border-color: rgba(56,189,248,0.25); color: var(--lp-sky); }
.lp-step-icon.violet { background: rgba(167,139,250,0.10); border-color: rgba(167,139,250,0.25); color: var(--lp-violet); }
.lp-step-icon.green  { background: rgba(52,211,153,0.10); border-color: rgba(52,211,153,0.25); color: var(--lp-green); }
.lp-step-detail {
    margin-top: 10px;
    font-size: 11px;
    color: var(--lp-subtle);
    line-height: 1.5;
    font-style: italic;
}

/* ── Section headers ───────────────────────────────────────── */

.lp-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.lp-section-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    background: rgba(56,189,248,0.1);
    border: 1px solid rgba(56,189,248,0.25);
    color: var(--lp-sky);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.lp-section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.lp-section-header p { color: var(--lp-muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ── Features ──────────────────────────────────────────────── */

.lp-features { padding: 100px 0; }

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

.lp-feature-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    backdrop-filter: blur(12px);
    transition: border-color 0.2s, transform 0.2s;
}
.lp-feature-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}
.lp-feature-card.lp-feature-primary {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(167,139,250,0.06));
    border-color: rgba(56,189,248,0.2);
}

.lp-feature-icon { font-size: 28px; margin-bottom: 16px; }
.lp-feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.lp-feature-card p  { color: var(--lp-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.lp-feature-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.lp-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--lp-muted);
}
.lp-feature-list li i { color: var(--lp-green); font-size: 11px; flex-shrink: 0; }

/* ── How it works ──────────────────────────────────────────── */

.lp-how { padding: 80px 0; background: rgba(255,255,255,0.01); border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); }

.lp-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.lp-step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
}
.lp-step-num {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lp-sky), var(--lp-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.lp-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.lp-step p  { font-size: 14px; color: var(--lp-muted); line-height: 1.6; }
.lp-step-arrow { color: var(--lp-subtle); font-size: 20px; flex-shrink: 0; }

/* ── Pricing preview ───────────────────────────────────────── */

.lp-pricing-preview { padding: 100px 0; }

.lp-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.lp-plan {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.2s;
}
.lp-plan:hover { border-color: rgba(255,255,255,0.14); }
.lp-plan-featured {
    border-color: rgba(56,189,248,0.35);
    background: linear-gradient(160deg, rgba(14,165,233,0.09), rgba(167,139,250,0.06));
    box-shadow: 0 0 40px rgba(14,165,233,0.08);
}

.lp-plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-sky-dark), #0284c7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.lp-plan-soon {
    opacity: 0.6;
    pointer-events: none;
}
.lp-plan-badge-soon {
    background: linear-gradient(135deg, #475569, #334155);
}

.lp-plan-header { margin-bottom: 24px; }
.lp-plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--lp-muted); display: block; margin-bottom: 8px; }
.lp-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.lp-plan-amount { font-size: 40px; font-weight: 900; color: var(--lp-text); }
.lp-plan-period { font-size: 14px; color: var(--lp-muted); }
.lp-plan-desc { font-size: 13px; color: var(--lp-muted); }

.lp-plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.lp-plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.lp-plan-features li i.fa-check  { color: var(--lp-green); font-size: 12px; }
.lp-plan-features li.lp-plan-no  { color: var(--lp-subtle); }
.lp-plan-features li.lp-plan-no i.fa-xmark { color: var(--lp-subtle); font-size: 12px; }

.lp-pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--lp-muted);
}
.lp-pricing-note a { color: var(--lp-sky); text-decoration: none; }
.lp-pricing-note a:hover { text-decoration: underline; }

/* ── CTA final ─────────────────────────────────────────────── */

.lp-cta { padding: 80px 0; }
.lp-cta-card {
    position: relative;
    text-align: center;
    padding: 72px 40px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(14,165,233,0.10), rgba(167,139,250,0.07));
    border: 1px solid rgba(56,189,248,0.2);
    overflow: hidden;
}
.lp-cta-glow {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--lp-sky);
    filter: blur(100px);
    opacity: 0.06;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.lp-cta-icon { font-size: 48px; color: var(--lp-sky); margin-bottom: 20px; display: block; filter: drop-shadow(0 0 20px rgba(56,189,248,0.3)); }
.lp-cta-card h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 12px; }
.lp-cta-card p  { color: var(--lp-muted); font-size: 16px; margin-bottom: 32px; }

/* ── Footer ────────────────────────────────────────────────── */

.lp-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--lp-border);
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.lp-footer-brand p { font-size: 14px; color: var(--lp-muted); line-height: 1.7; }
.lp-footer-links h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--lp-subtle); margin-bottom: 14px; }
.lp-footer-links { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-links a { color: var(--lp-muted); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.lp-footer-links a:hover { color: var(--lp-text); }
.lp-footer-bottom {
    border-top: 1px solid var(--lp-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--lp-subtle);
}
.lp-footer-disclaimer { max-width: 480px; text-align: right; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════════ */

.lp-pricing-hero { padding: 80px 0 60px; text-align: center; }
.lp-pricing-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.lp-pricing-hero p  { font-size: 18px; color: var(--lp-muted); }

/* Toggle mensual/anual */
.lp-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 52px;
}
.lp-toggle-label { font-size: 14px; color: var(--lp-muted); font-weight: 500; }
.lp-toggle-label.active { color: var(--lp-text); }
.lp-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: rgba(56,189,248,0.2);
    border: 1px solid rgba(56,189,248,0.3);
    cursor: pointer;
    transition: background 0.2s;
}
.lp-toggle-switch.annual { background: rgba(56,189,248,0.35); }
.lp-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lp-sky);
    transition: left 0.2s;
}
.lp-toggle-switch.annual::after { left: 23px; }
.lp-annual-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--lp-green);
    font-size: 11px;
    font-weight: 700;
}

/* Comparison table */
.lp-comparison { padding: 60px 0 100px; }
.lp-comparison-wrap { overflow-x: auto; }
.lp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 640px;
}
.lp-comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    color: var(--lp-muted);
    border-bottom: 1px solid var(--lp-border);
    font-weight: 600;
}
.lp-comparison-table th.lp-col-plan {
    font-size: 15px;
    color: var(--lp-text);
    font-weight: 700;
}
.lp-comparison-table th.lp-col-featured { color: var(--lp-sky); }
.lp-comparison-table td {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--lp-muted);
}
.lp-comparison-table tr:hover td { background: rgba(255,255,255,0.015); }
.lp-comparison-table td:first-child { color: var(--lp-text); font-weight: 500; }
.lp-ct-check { color: var(--lp-green); }
.lp-ct-cross { color: var(--lp-subtle); }
.lp-ct-cat td { background: rgba(255,255,255,0.03); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lp-subtle) !important; padding: 8px 20px; }

/* FAQ */
.lp-faq { padding: 0 0 100px; }
.lp-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
}
.lp-faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--lp-text);
    text-align: left;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.15s;
}
.lp-faq-q:hover { color: var(--lp-sky); }
.lp-faq-q i { flex-shrink: 0; color: var(--lp-muted); font-size: 13px; transition: transform 0.2s; }
.lp-faq-item.open .lp-faq-q i { transform: rotate(180deg); color: var(--lp-sky); }
.lp-faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.7;
}
.lp-faq-item.open .lp-faq-a { display: block; }

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 900px) {
    .lp-nav-links { display: none; }
    .lp-nav-actions { display: none; }
    .lp-mobile-menu-btn { display: block; }
    .lp-features-grid { grid-template-columns: 1fr 1fr; }
    .lp-plans-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
    .lp-preview-sidebar { width: 130px; }
    .lp-personas-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .lp-numbers-grid { grid-template-columns: 1fr 1fr; }
    .lp-number-item:nth-child(2) { border-right: none; }
    .lp-number-item:nth-child(3) { border-top: 1px solid var(--lp-border); }
    .lp-panel-signal { display: none; }
    .lp-trust-inner { gap: 20px; }
}

@media (max-width: 600px) {
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-steps { flex-direction: column; }
    .lp-step-arrow { transform: rotate(90deg); }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-hero-title { letter-spacing: -0.5px; }
    .lp-footer-bottom { flex-direction: column; }
    .lp-footer-disclaimer { text-align: left; }
    .lp-app-preview-body { height: 200px; }
    .lp-preview-sidebar { display: none; }
    .lp-preview-kpi-card:nth-child(3),
    .lp-preview-kpi-card:nth-child(4) { display: none; }
    .lp-numbers-grid { grid-template-columns: 1fr 1fr; }
    .lp-number-val { font-size: 28px; }
    .lp-trust-item { font-size: 12px; }
}
